diff --git a/cms/static/sass/views/_textbooks.scss b/cms/static/sass/views/_textbooks.scss index c9d604eb14..30f907753b 100644 --- a/cms/static/sass/views/_textbooks.scss +++ b/cms/static/sass/views/_textbooks.scss @@ -3,6 +3,13 @@ body.course.textbooks { + .no-textbook-content { + margin: $baseline*2; + padding: $baseline*2; + background-color: #ddd; + text-align: center; + } + form { @include box-sizing(border-box); @include box-shadow(0 1px 2px $shadow-l1); @@ -17,14 +24,22 @@ body.course.textbooks { .action-add-chapter { @extend .t-action2; - @include grey-button; + //@include grey-button; @include transition(all .15s); display: block; width: 100%; margin-bottom: ($baseline*1.5); - border: 1px solid #B3C4DA; - padding: ($baseline/5) $baseline; + border-radius: 5px; + border: none; + padding: $baseline; + background-color: #DFE5EF; + color: #8EABBE; font-weight: 600; + + &:hover { + background: #5597DD; + color: #fff; + } } .action-primary { @@ -214,5 +229,16 @@ body.course.textbooks { } } + .wrapper-prompt-assetupload .prompt { + width: $baseline*20; + + h2 { + color: $gray; + font-weight: bold; + } + + + } + } diff --git a/cms/templates/js/chapter.underscore b/cms/templates/js/chapter.underscore index af3398154a..2f63c1c072 100644 --- a/cms/templates/js/chapter.underscore +++ b/cms/templates/js/chapter.underscore @@ -10,5 +10,5 @@ <%= gettext("provide the path to a file added to this course or upload a new one") %> - delete chapter + <%= gettext("delete chapter") %> diff --git a/cms/templates/js/textbook.underscore b/cms/templates/js/textbook.underscore index d28c034359..02b37a0121 100644 --- a/cms/templates/js/textbook.underscore +++ b/cms/templates/js/textbook.underscore @@ -1,7 +1,7 @@