From 9cd819808dc1a543238ed8c3a4998af40f5abd95 Mon Sep 17 00:00:00 2001 From: Diana Huang Date: Tue, 9 May 2017 14:40:34 -0400 Subject: [PATCH] Swap direction of arrow for RTL. --- .../common/templates/sequence-breadcrumbs.underscore | 2 +- lms/static/sass/course/base/_extends.scss | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/common/static/common/templates/sequence-breadcrumbs.underscore b/common/static/common/templates/sequence-breadcrumbs.underscore index da2bd4ba91..ec23d72839 100644 --- a/common/static/common/templates/sequence-breadcrumbs.underscore +++ b/common/static/common/templates/sequence-breadcrumbs.underscore @@ -1,6 +1,6 @@ <% if (unifiedCourseView) { %> - + <%- gettext('Return to course outline') %> <%- gettext('Outline') %> diff --git a/lms/static/sass/course/base/_extends.scss b/lms/static/sass/course/base/_extends.scss index 6f620f46bc..99eb26e3e5 100644 --- a/lms/static/sass/course/base/_extends.scss +++ b/lms/static/sass/course/base/_extends.scss @@ -203,3 +203,13 @@ h1.top-header { } } } + +.fa-arrow-circle-prev { + &:before { + @if $bi-app-direction == ltr { + content: "\f0a8"; // .fa-arrow-circle-left + } @else if $bi-app-direction == rtl { + content: "\f0a9"; // .fa-arrow-circle-right + } + } +}