From a1728387156a635e3fff1968958613984d35a763 Mon Sep 17 00:00:00 2001 From: Kyle Fiedler Date: Mon, 7 May 2012 16:11:26 -0400 Subject: [PATCH] Fixed some of the minor css bugs --- static/css/application.css | 4 +++- templates/sass/courseware/_courseware.scss | 8 ++++++++ templates/sass/courseware/_sequence-nav.scss | 1 - 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/static/css/application.css b/static/css/application.css index ecf79f33ad..53d9477d98 100644 --- a/static/css/application.css +++ b/static/css/application.css @@ -2827,6 +2827,9 @@ div.course-wrapper section.course-content ol.vert-mod > li:last-child { div.course-wrapper section.course-content ol.vert-mod > li ul { list-style: disc outside none; padding-left: 1em; } +div.course-wrapper section.course-content ol.vert-mod > li nav.sequence-bottom ul { + list-style: none; + padding: 0; } div.course-wrapper section.course-content section.tutorials h2 { margin-bottom: 22.652px; } div.course-wrapper section.course-content section.tutorials ul { @@ -3761,7 +3764,6 @@ section.course-content nav.sequence-bottom { text-align: center; } section.course-content nav.sequence-bottom ul { background-color: #f2e7bf; - padding: 0 !important; background-color: #f2e7bf; border: 1px solid #e4d080; -webkit-border-radius: 3px; diff --git a/templates/sass/courseware/_courseware.scss b/templates/sass/courseware/_courseware.scss index 1e0995561a..39df9f955d 100644 --- a/templates/sass/courseware/_courseware.scss +++ b/templates/sass/courseware/_courseware.scss @@ -193,10 +193,18 @@ div.course-wrapper { padding-bottom: 0; } + ul { list-style: disc outside none; padding-left: 1em; } + + nav.sequence-bottom { + ul { + list-style: none; + padding: 0; + } + } } } diff --git a/templates/sass/courseware/_sequence-nav.scss b/templates/sass/courseware/_sequence-nav.scss index 9aa6b03e0d..788db0518f 100644 --- a/templates/sass/courseware/_sequence-nav.scss +++ b/templates/sass/courseware/_sequence-nav.scss @@ -244,7 +244,6 @@ section.course-content { ul { @extend .clearfix; background-color: darken(#F6EFD4, 5%); - padding: 0 !important; background-color: darken($cream, 5%); border: 1px solid darken(#f6efd4, 20%); @include border-radius(3px);