From: Mark Otto Date: Sun, 25 Dec 2016 23:17:31 +0000 (-0800) Subject: Fixes #20586 X-Git-Tag: v4.0.0-alpha.6~165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c90008098fe91d6045b34afd83f1da0378f34ce;p=thirdparty%2Fbootstrap.git 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 --- diff --git a/scss/_variables.scss b/scss/_variables.scss index f1132999a0..0bf1604bda 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;