diff --git a/lms/static/sass/features/_course-experience.scss b/lms/static/sass/features/_course-experience.scss index 5205cdc282..7aeade2f8c 100644 --- a/lms/static/sass/features/_course-experience.scss +++ b/lms/static/sass/features/_course-experience.scss @@ -412,6 +412,16 @@ } } } + + .fa-chevron-right { + transform: rotateY(0deg) #{"/*rtl: rotateY(180deg)*/"}; + font-size: inherit; + + &.fa-rotate-90 { + transform: rotate(90deg) #{"/*rtl: rotate(90deg)*/"}; + font-size: inherit; + } + } } #expand-collapse-outline-all-button { diff --git a/openedx/features/course_experience/views/course_outline.py b/openedx/features/course_experience/views/course_outline.py index 8005a74f25..355fb72cf5 100644 --- a/openedx/features/course_experience/views/course_outline.py +++ b/openedx/features/course_experience/views/course_outline.py @@ -45,6 +45,7 @@ class CourseOutlineFragmentView(EdxFragmentView): """ Course outline fragment to be shown in the unified course view. """ + _uses_pattern_library = False def render_to_fragment(self, request, course_id, user_is_enrolled=True, **kwargs): # pylint: disable=arguments-differ """