Commit 60e6d80c by Chris Rodriguez

PR feedback for styles

parent 566c0f57
...@@ -6,9 +6,10 @@ ...@@ -6,9 +6,10 @@
// reseting bolded fonts for the course index // reseting bolded fonts for the course index
h3 { h3 {
font-weight: normal; @extend %t-regular;
} }
// we're targetting the .class now, instead of the #id
.accordion { .accordion {
@extend %t-copy-sub1; @extend %t-copy-sub1;
...@@ -19,9 +20,9 @@ ...@@ -19,9 +20,9 @@
@include linear-gradient(top, $sidebar-chapter-bg-top, $sidebar-chapter-bg-bottom); @include linear-gradient(top, $sidebar-chapter-bg-top, $sidebar-chapter-bg-bottom);
@include transition(background-color .1s linear 0s); @include transition(background-color .1s linear 0s);
width: 100% !important; width: 100% !important;
padding: 0;
border: 0; border: 0;
border-radius: 0; border-radius: 0;
padding: 0;
box-shadow: 0 1px 0 $white inset, 0 -1px 0 $shadow-l1 inset; box-shadow: 0 1px 0 $white inset, 0 -1px 0 $shadow-l1 inset;
background-color: $sidebar-chapter-bg; background-color: $sidebar-chapter-bg;
color: $link-color; color: $link-color;
...@@ -43,37 +44,26 @@ ...@@ -43,37 +44,26 @@
@extend %t-title6; @extend %t-title6;
position: relative; position: relative;
padding: ($baseline*.75) $baseline ($baseline*.75) ($baseline*2); padding: ($baseline*.75) $baseline ($baseline*.75) ($baseline*2);
margin: 0;
border-radius: 0;
box-shadow: none;
color: $link-color; color: $link-color;
&:first-child {
border: none;
}
.icon { .icon {
position: absolute; position: absolute;
@include left($baseline); @include left($baseline);
top: 18px; top: $baseline;
font-size: 90%;
color: $gray-d1; color: $gray-d1;
} }
} }
} }
.chapter-content-container { .chapter-content-container {
display: none; display: none; // programmatically shown when the section is open; closed at the start
padding: 0 14px ($baseline/2) 14px; padding: 0 14px ($baseline/2) 14px;
border-bottom: 1px solid $shadow-l1; border-bottom: 1px solid $shadow-l1;
background: $white; background: $white;
.chapter-menu { .chapter-menu {
margin: 0;
padding: 0 ($baseline*.75); padding: 0 ($baseline*.75);
border: none; background: inherit;
border-radius: 0;
background: transparent;
overflow: hidden; overflow: hidden;
.menu-item { .menu-item {
...@@ -81,9 +71,7 @@ ...@@ -81,9 +71,7 @@
@include padding(($baseline/4) ($baseline/2)); @include padding(($baseline/4) ($baseline/2));
margin: ($baseline/5) 0; margin: ($baseline/5) 0;
border-radius: ($baseline/5); border-radius: ($baseline/5);
border-bottom: 0; background: inherit;
background: transparent;
text-decoration: none;
a { a {
position: relative; position: relative;
...@@ -93,7 +81,6 @@ ...@@ -93,7 +81,6 @@
p { p {
@extend %t-action3; @extend %t-action3;
@extend %t-strong; @extend %t-strong;
margin-bottom: 0;
font-family: $sans-serif; font-family: $sans-serif;
&.subtitle { &.subtitle {
...@@ -104,6 +91,7 @@ ...@@ -104,6 +91,7 @@
color: $gray-d1; color: $gray-d1;
&:empty { &:empty {
// hide empty subtitles
display: none; display: none;
} }
...@@ -135,10 +123,9 @@ ...@@ -135,10 +123,9 @@
&.graded { &.graded {
.menu-icon { .menu-icon {
@include right($baseline/4); @include right(0);
position: absolute; position: absolute;
bottom: 0; bottom: 0;
margin: auto;
} }
} }
...@@ -146,6 +133,7 @@ ...@@ -146,6 +133,7 @@
@extend %t-strong; @extend %t-strong;
background: linear-gradient(to bottom, $gray-l4, #d6d6d6); background: linear-gradient(to bottom, $gray-l4, #d6d6d6);
// pre-existing; but not sure where it appears
&:after { &:after {
@extend %t-regular; @extend %t-regular;
@include transition(none); @include transition(none);
......
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