Commit 7f6c50ea by Galen Frechette

changes the border and box-shadow of headings in courseware content so bottom border is not hidden

parent fb67d8ce
...@@ -124,10 +124,10 @@ h1.top-header { ...@@ -124,10 +124,10 @@ h1.top-header {
} }
h3 { h3 {
@extend .bottom-border; @include box-shadow(inset 0 1px 0 0 #eee);
background: none; background: none;
border: none; border: none;
border-bottom: 1px solid #d3d3d3; border-top: 1px solid #d3d3d3;
color: #000; color: #000;
font-weight: normal; font-weight: normal;
margin: 0; margin: 0;
...@@ -153,9 +153,9 @@ h1.top-header { ...@@ -153,9 +153,9 @@ h1.top-header {
&.active { &.active {
background: none; background: none;
border: 0; //border: 0;
border-bottom: 1px solid #bbb; //border-bottom: 1px solid #bbb;
@include box-shadow(none); //@include box-shadow(none);
color: #000; color: #000;
font-weight: bold; font-weight: bold;
......
...@@ -8,8 +8,8 @@ section.course-index { ...@@ -8,8 +8,8 @@ section.course-index {
overflow: hidden; overflow: hidden;
margin: 0; margin: 0;
&:last-child { &:first-child {
@include box-shadow(none); border: none;
} }
&.ui-accordion-header { &.ui-accordion-header {
...@@ -20,14 +20,10 @@ section.course-index { ...@@ -20,14 +20,10 @@ section.course-index {
color: lighten($text-color, 10%); color: lighten($text-color, 10%);
} }
&.ui-state-hover {
border: none;
border-bottom: 1px solid #d3d3d3;
}
&.ui-state-active { &.ui-state-active {
@include background-image(linear-gradient(-90deg, rgb(245,245,245), rgb(225,225,225))); @include background-image(linear-gradient(-90deg, rgb(245,245,245), rgb(225,225,225)));
@extend .active; @extend .active;
border-bottom: 1px solid #d3d3d3;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment