diff --git a/lms/static/images/graded.png b/lms/static/images/graded.png new file mode 100644 index 0000000000..a1220159f8 Binary files /dev/null and b/lms/static/images/graded.png differ diff --git a/lms/static/sass/course/courseware/_sidebar.scss b/lms/static/sass/course/courseware/_sidebar.scss index 52a639d9a6..27040bece5 100644 --- a/lms/static/sass/course/courseware/_sidebar.scss +++ b/lms/static/sass/course/courseware/_sidebar.scss @@ -180,6 +180,18 @@ section.course-index { font-weight: normal; } } + + &.graded { + > a { + background-image: url('../images/graded.png'); + background-repeat: no-repeat; + background-position: 97% center; + } + + &.active > a { + @include background-image(url('../images/graded.png'), linear-gradient(top, #e6e6e6, #d6d6d6)); + } + } } } }