Commit 5bb03b79 authored by Mark Otto's avatar Mark Otto

Merge pull request #17220 from cornedor/fix-17066

Removed mixin from focus outline box-shadow fixes #17066
parents 16075cc0 c4950316
...@@ -19,16 +19,17 @@ ...@@ -19,16 +19,17 @@
z-index: -1; // Put the input behind the label so it doesn't overlay text z-index: -1; // Put the input behind the label so it doesn't overlay text
opacity: 0; opacity: 0;
&:focus ~ .c-indicator {
@include box-shadow(0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9);
}
&:checked ~ .c-indicator { &:checked ~ .c-indicator {
color: #fff; color: #fff;
background-color: #0074d9; background-color: #0074d9;
@include box-shadow(none); @include box-shadow(none);
} }
&:focus ~ .c-indicator {
// the mixin is not used here to make sure there is feedback
box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
}
&:active ~ .c-indicator { &:active ~ .c-indicator {
color: #fff; color: #fff;
background-color: #84c6ff; background-color: #84c6ff;
......
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