Commit f7eba028 by clrux

Merge pull request #12411 from edx/clrux/ac-396

AC-396 updating courseware nav to display correctly on high contrast displays
parents c67ef7a8 0dcd3d2d
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
@extend %inner-wrapper; @extend %inner-wrapper;
} }
ol.course-tabs { .course-tabs {
@include border-top-radius(4px); @include border-top-radius(4px);
@include clearfix(); @include clearfix();
padding: ($baseline*0.75) 0 ($baseline*0.75) 0; padding: ($baseline*0.75) 0 ($baseline*0.75) 0;
...@@ -32,31 +32,30 @@ ...@@ -32,31 +32,30 @@
@include border-left(1px solid $gray-d3); @include border-left(1px solid $gray-d3);
} }
a { a,
a:visited {
@include padding(($baseline/2), ($baseline*0.75), 13px, ($baseline*0.75)); @include padding(($baseline/2), ($baseline*0.75), 13px, ($baseline*0.75));
@extend %t-title7; @extend %t-title7;
@extend %t-regular; @extend %t-regular;
border-bottom: 3px solid transparent;
color: $gray-d1; color: $gray-d1;
display: block; display: block;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
// text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
&:hover, &:hover,
&:focus { &:focus {
color: $blue; color: $blue;
border-bottom: 3px solid $blue; border-bottom: 4px solid $blue;
} }
&.active { &.active {
border-bottom: 3px solid $gray-d4; border-bottom: 4px solid $blue;
background-color: transparent; background-color: transparent;
color: $gray-d4; color: $blue;
&:hover, &:hover,
&:focus { &:focus {
color: $gray-d4; color: $blue;
} }
} }
} }
......
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