diff --git a/cms/static/sass/elements/_header.scss b/cms/static/sass/elements/_header.scss index d0231422d4..450cca5455 100644 --- a/cms/static/sass/elements/_header.scss +++ b/cms/static/sass/elements/_header.scss @@ -386,7 +386,9 @@ body.course.view-import .nav-course-tools-import, body.course.view-export .nav-course-tools-export, body.course.view-export-git .nav-course-tools-export-git, body.course.view-team .nav-library-settings .title, -body.course.view-team .nav-library-settings-team { +body.course.view-team .nav-library-settings-team, +body.course.view-checklists .nav-course-tools .title, +body.course.view-checklists .nav-course-tools-checklists { color: theme-color("primary"); a { diff --git a/cms/templates/checklists.html b/cms/templates/checklists.html index 87102f58fc..87b09ffd44 100644 --- a/cms/templates/checklists.html +++ b/cms/templates/checklists.html @@ -9,7 +9,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string, dump_js_escaped_json %> <%block name="title">${_("Checklists")} -<%block name="bodyclass">is-signedin course +<%block name="bodyclass">is-signedin course view-checklists <%namespace name='static' file='static_content.html'/> diff --git a/cms/templates/widgets/header.html b/cms/templates/widgets/header.html index 8fcf07ceb5..94e695bb0f 100644 --- a/cms/templates/widgets/header.html +++ b/cms/templates/widgets/header.html @@ -5,6 +5,7 @@ from django.urls import reverse from django.utils.translation import ugettext as _ from openedx.core.djangoapps.lang_pref.api import header_language_selector_is_enabled, released_languages + from cms.djangoapps.contentstore.config.waffle_utils import should_show_checklists_page %>