diff --git a/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_base.scssc b/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_base.scssc index c9b948a6b2..963b67bde5 100644 Binary files a/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_base.scssc and b/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_base.scssc differ diff --git a/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_courseware.scssc b/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_courseware.scssc index b5d1069c89..bd1fcd33fa 100644 Binary files a/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_courseware.scssc and b/.sass-cache/d71392d31c3b10df78042d13a0384e71b83fa11e/_courseware.scssc differ diff --git a/sass/_base.scss b/sass/_base.scss index 95f3c30136..bcf1785319 100644 --- a/sass/_base.scss +++ b/sass/_base.scss @@ -28,6 +28,6 @@ p { } input[type="submit"], input[type="button"], button { - // @extend .button; + @extend .button; } diff --git a/sass/_courseware.scss b/sass/_courseware.scss index 6950690489..3ad4062eb5 100644 --- a/sass/_courseware.scss +++ b/sass/_courseware.scss @@ -11,8 +11,13 @@ div.course-wrapper { text-shadow: 0 1px 0 #f6f6f6; vertical-align: top; width: grid-width(3); + overflow: hidden; h3 { + &:last-child { + @include box-shadow(none); + } + &.ui-accordion-header { color: #000; @@ -22,11 +27,11 @@ div.course-wrapper { } &.ui-state-default { + @include box-shadow(0 1px 0 #eee); background: none; - font-weight: normal; border: none; border-bottom: 1px solid #d3d3d3; - @include box-shadow(0 1px 0 #eee); + font-weight: normal; } &.ui-state-hover { diff --git a/sass/reademe.md b/sass/reademe.md index 04d0dd1df9..4550d0c9c5 100644 --- a/sass/reademe.md +++ b/sass/reademe.md @@ -1,11 +1,11 @@ -This project is using Sass to generate it's CSS. Sass is a CSS preprocessor that allows for faster developmnet of CSS. For more information about sass: http://sass-lang.com +This project is using Sass to generate it's CSS. Sass is a CSS preprocessor that allows for faster development of CSS. For more information about sass: http://sass-lang.com To use sass all you need to do is enter: $ gem install sass -We are also using Bourbon with sass. They are a genaric set of mixins, and functions that allow for more rpid development of CSS3. Find out more about bourbon here: https://github.com/thoughtbot/bourbon +We are also using Bourbon with sass. They are a generic set of mixins, and functions that allow for more rapid development of CSS3. Find out more about bourbon here: https://github.com/thoughtbot/bourbon Then to generate Sass files cd to templates directory and watch the sass files with: $ sass --watch sass:../static/css/ -r ./sass/bourbon/lib/bourbon.rb -This will automatically generate the CSS files on save. +This will automatically generate the CSS files on save.