diff --git a/lms/static/sass/course/base/_extends.scss b/lms/static/sass/course/base/_extends.scss index 19e065f31f..55b46fb604 100644 --- a/lms/static/sass/course/base/_extends.scss +++ b/lms/static/sass/course/base/_extends.scss @@ -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 + } + } +} diff --git a/lms/templates/seq_module.html b/lms/templates/seq_module.html index 420ba8458d..a5aee0c99f 100644 --- a/lms/templates/seq_module.html +++ b/lms/templates/seq_module.html @@ -2,7 +2,9 @@
- + - +
@@ -43,8 +47,12 @@