Commit 712b9711 by Kyle Fiedler

Fixed topbar bug in discussion

parent 86e3f473
...@@ -109,18 +109,24 @@ ...@@ -109,18 +109,24 @@
@extend .clearfix; @extend .clearfix;
a { a {
@include box-shadow(inset 1px 0 0 lighten(#f6efd4, 5%));
background: darken(#F6EFD4, 5%);
border-left: 1px solid darken(#f6efd4, 20%);
color: darken(#F6EFD4, 80%); color: darken(#F6EFD4, 80%);
padding: lh(.75);
text-transform: uppercase;
display: block;
&:hover { &:hover {
color: darken(#F6EFD4, 60%); color: darken(#F6EFD4, 60%);
text-decoration: none; text-decoration: none;
background: none; }
&.block-link {
@include box-shadow(inset 1px 0 0 lighten(#f6efd4, 5%));
background: darken(#F6EFD4, 5%);
border-left: 1px solid darken(#f6efd4, 20%);
padding: lh(.75);
text-transform: uppercase;
display: block;
&:hover {
background: none;
}
} }
} }
} }
...@@ -65,6 +65,7 @@ div.course-wrapper { ...@@ -65,6 +65,7 @@ div.course-wrapper {
text-decoration: none; text-decoration: none;
margin-bottom: lh(.5); margin-bottom: lh(.5);
display: block; display: block;
color: #000;
&:hover { &:hover {
color: #666; color: #666;
...@@ -111,6 +112,10 @@ div.course-wrapper { ...@@ -111,6 +112,10 @@ div.course-wrapper {
margin-bottom: $body-line-height; margin-bottom: $body-line-height;
@extend .topbar; @extend .topbar;
a {
@extend .block-link;
}
li { li {
border: none; border: none;
cursor: pointer; cursor: pointer;
......
...@@ -46,6 +46,10 @@ div.book-wrapper { ...@@ -46,6 +46,10 @@ div.book-wrapper {
@extend .topbar; @extend .topbar;
@extend .clearfix; @extend .clearfix;
a {
@extend .block-link;
}
ul { ul {
@extend .clearfix; @extend .clearfix;
......
...@@ -78,6 +78,10 @@ div.wiki-wrapper { ...@@ -78,6 +78,10 @@ div.wiki-wrapper {
header { header {
@extend .topbar; @extend .topbar;
a {
@extend .block-link;
}
p { p {
float: left; float: left;
padding: 15px; padding: 15px;
......
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