diff --git a/lms/static/sass/course/_textbook.scss b/lms/static/sass/course/_textbook.scss index 50986f5dd5..2698393ebe 100644 --- a/lms/static/sass/course/_textbook.scss +++ b/lms/static/sass/course/_textbook.scss @@ -9,6 +9,12 @@ div.book-wrapper { ul#booknav { font-size: em(14); + .page-number { + float: right; + font-size: .8em; + color: #9a9a9a; + } + li { background: none; border-bottom: 0; diff --git a/lms/static/sass/multicourse/_jobs.scss b/lms/static/sass/multicourse/_jobs.scss index 306851e602..d2f86e93a6 100644 --- a/lms/static/sass/multicourse/_jobs.scss +++ b/lms/static/sass/multicourse/_jobs.scss @@ -135,6 +135,18 @@ font-weight: 700; margin-bottom: 15px; } + + ul { + padding-left: 50px; + } + + li { + font-family: $serif; + font-size: 1em; + line-height: 1.6em; + color: #3c3c3c; + margin-bottom: 0.2em; + } } } } diff --git a/lms/templates/staticbook.html b/lms/templates/staticbook.html index 804676de97..693dea44e9 100644 --- a/lms/templates/staticbook.html +++ b/lms/templates/staticbook.html @@ -75,7 +75,11 @@ $("#open_close_accordion a").click(function(){ <%def name="print_entry(entry)">
  • - ${' '.join(entry.get(attribute, '') for attribute in ['chapter', 'name', 'page_label'])} + + %if entry.get('chapter'): + ${entry.get('chapter')} + %endif + ${entry.get('name')} ${entry.get('page_label')} % if len(entry) > 0: