Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
208cffd6
Commit
208cffd6
authored
May 10, 2017
by
Diana Huang
Committed by
GitHub
May 10, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15075 from edx/diana/reverse-back-arrow-rtl
Swap direction of arrow for RTL.
parents
956207b9
9cd81980
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
common/static/common/templates/sequence-breadcrumbs.underscore
+1
-1
lms/static/sass/course/base/_extends.scss
+10
-0
No files found.
common/static/common/templates/sequence-breadcrumbs.underscore
View file @
208cffd6
<% if (unifiedCourseView) { %>
<a href="<%- '/courses/' + courseId + '/course/#' + blockId %>">
<span class="fa fa-arrow-circle-
left
" aria-hidden="true" aria-describedby="outline-description"></span>
<span class="fa fa-arrow-circle-
prev icon
" aria-hidden="true" aria-describedby="outline-description"></span>
<span class="sr-only" id="outline-description"><%- gettext('Return to course outline') %></span>
<b><%- gettext('Outline') %></b>
</a>
...
...
lms/static/sass/course/base/_extends.scss
View file @
208cffd6
...
...
@@ -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
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment