Unverified Commit ffc83825 by Michael Terry Committed by GitHub

Merge pull request #16605 from mikix/mikix/border-a11y

Show current tab even in high contrast mode
parents 20154a76 b2d534da
...@@ -102,12 +102,12 @@ ...@@ -102,12 +102,12 @@
font-weight: $font-weight-normal; font-weight: $font-weight-normal;
display: inline-block; display: inline-block;
margin-bottom: -1*$baseline/2; margin-bottom: -1*$baseline/2;
border-bottom: 4px solid transparent; border-bottom: 4px hidden theme-color("dark");
cursor: pointer; cursor: pointer;
&.active, &.active,
&:hover { &:hover {
border-bottom-color: theme-color("dark"); border-bottom-style: solid;
} }
&:hover { &:hover {
......
...@@ -52,13 +52,13 @@ ...@@ -52,13 +52,13 @@
display: block; display: block;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
border-bottom: 4px solid transparent; border-bottom: 4px hidden theme-color("primary");
&:hover, &:hover,
&:focus, &:focus,
&.active { &.active {
color: theme-color("primary"); color: theme-color("primary");
border-bottom-color: theme-color("primary"); border-bottom-style: solid;
background-color: transparent; background-color: transparent;
} }
} }
......
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