diff options
| author | Corné Dorrestijn <[email protected]> | 2015-08-21 22:21:20 +0200 |
|---|---|---|
| committer | Corné Dorrestijn <[email protected]> | 2015-08-21 22:21:20 +0200 |
| commit | ac3fbdad3626c4c43303c168f3109c09da688b8d (patch) | |
| tree | 1ae90816adae49d22a4dc31340cc3fde2fda53f9 | |
| parent | 69f92408630707fe704eae309a71867adefa3d39 (diff) | |
| download | bootstrap-ac3fbdad3626c4c43303c168f3109c09da688b8d.tar.xz bootstrap-ac3fbdad3626c4c43303c168f3109c09da688b8d.zip | |
Removed mixin from focus ouline box-shadow fixes #17066
| -rw-r--r-- | scss/_custom-forms.scss | 8 |
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; |
