aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCornĂ© Dorrestijn <[email protected]>2015-08-21 22:21:20 +0200
committerCornĂ© Dorrestijn <[email protected]>2015-08-21 22:21:20 +0200
commitac3fbdad3626c4c43303c168f3109c09da688b8d (patch)
tree1ae90816adae49d22a4dc31340cc3fde2fda53f9
parent69f92408630707fe704eae309a71867adefa3d39 (diff)
downloadbootstrap-ac3fbdad3626c4c43303c168f3109c09da688b8d.tar.xz
bootstrap-ac3fbdad3626c4c43303c168f3109c09da688b8d.zip
Removed mixin from focus ouline box-shadow fixes #17066
-rw-r--r--scss/_custom-forms.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss
index ec211acaa..2326e01ca 100644
--- a/scss/_custom-forms.scss
+++ b/scss/_custom-forms.scss
@@ -19,16 +19,16 @@
z-index: -1; // Put the input behind the label so it doesn't overlay text
opacity: 0;
- &:focus ~ .c-indicator {
- @include box-shadow(0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9);
- }
-
&:checked ~ .c-indicator {
color: #fff;
background-color: #0074d9;
@include box-shadow(none);
}
+ &:focus ~ .c-indicator {
+ box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
+ }
+
&:active ~ .c-indicator {
color: #fff;
background-color: #84c6ff;