diff --git a/lms/static/sass/course/_textbook.scss b/lms/static/sass/course/_textbook.scss index 50986f5dd5..8e88f8befd 100644 --- a/lms/static/sass/course/_textbook.scss +++ b/lms/static/sass/course/_textbook.scss @@ -9,6 +9,27 @@ div.book-wrapper { ul#booknav { font-size: em(14); + .chapter-number { + + } + + .chapter { + float: left; + width: 87%; + line-height: 1.4em; + } + + .page-number { + float: right; + width: 12%; + font-size: .8em; + line-height: 2.1em; + text-align: right; + color: #9a9a9a; + opacity: 0; + @include transition(opacity .15s); + } + li { background: none; border-bottom: 0; @@ -16,9 +37,14 @@ div.book-wrapper { a { padding: 0; + @include clearfix; &:hover { background-color: transparent; + + .page-number { + opacity: 1; + } } } diff --git a/lms/static/sass/course/base/_extends.scss b/lms/static/sass/course/base/_extends.scss index 72e2f56bbb..62a6b25393 100644 --- a/lms/static/sass/course/base/_extends.scss +++ b/lms/static/sass/course/base/_extends.scss @@ -185,3 +185,21 @@ h1.top-header { .tran { @include transition( all, .2s, $ease-in-out-quad); } + +.global { + h2 { + float: left; + font-size: 0.9em; + font-weight: 600; + line-height: 40px; + letter-spacing: 0; + text-transform: none; + text-shadow: 0 1px 0 #fff; + + .provider { + font: inherit; + font-weight: bold; + color: #6d6d6d; + } + } +} \ No newline at end of file diff --git a/lms/templates/navigation.html b/lms/templates/navigation.html index f628e346f2..f0242f995b 100644 --- a/lms/templates/navigation.html +++ b/lms/templates/navigation.html @@ -7,11 +7,16 @@