Merge pull request #9440 from OmarIthawi/omarithawi/nav-seq-module-rtl

Flipped the direction of the seq_module arrows
This commit is contained in:
clrux
2015-08-25 11:39:57 -04:00
2 changed files with 33 additions and 4 deletions

View File

@@ -199,3 +199,24 @@ h1.top-header {
@include transition( all .2s $ease-in-out-quad 0s);
}
// FontAwesome rtl chevron next
.fa-chevron-next {
&:before {
@if $bi-app-direction == ltr {
content: "\f054"; // .fa-chevron-right
} @else if $bi-app-direction == rtl {
content: "\f053"; // .fa-chevron-left
}
}
}
// FontAwesome rtl chevron prev
.fa-chevron-prev {
&:before {
@if $bi-app-direction == ltr {
content: "\f053"; // .fa-chevron-left
} @else if $bi-app-direction == rtl {
content: "\f054"; // .fa-chevron-right
}
}
}