diff options
| author | Mark Otto <[email protected]> | 2016-12-25 15:17:31 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-12-25 15:48:44 -0800 |
| commit | 8c90008098fe91d6045b34afd83f1da0378f34ce (patch) | |
| tree | 9b6029c5c2c5c1a1f5977b7eef4f2fd306489019 | |
| parent | 308114f65c090bb64687911bea393a1ffc4b85fc (diff) | |
| download | bootstrap-8c90008098fe91d6045b34afd83f1da0378f34ce.tar.xz bootstrap-8c90008098fe91d6045b34afd83f1da0378f34ce.zip | |
Fixes #20586
Use pixels instead of rem units for focus box-shadow on custom controls so that IE11, Edge, and Win FF screw it up less
| -rw-r--r-- | scss/_variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index f1132999a..0bf1604bd 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -473,7 +473,7 @@ $custom-control-checked-indicator-color: $white !default; $custom-control-checked-indicator-bg: $brand-primary !default; $custom-control-checked-indicator-box-shadow: none !default; -$custom-control-focus-indicator-box-shadow: 0 0 0 .075rem $body-bg, 0 0 0 .2rem $brand-primary !default; +$custom-control-focus-indicator-box-shadow: 0 0 0 1px $body-bg, 0 0 0 3px $brand-primary !default; $custom-control-active-indicator-color: $white !default; $custom-control-active-indicator-bg: lighten($brand-primary, 35%) !default; |
