From: Mark Otto Date: Thu, 14 May 2020 17:48:42 +0000 (-0700) Subject: v5: Update color on custom switch focus state X-Git-Tag: v5.0.0-alpha1~109 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbeda10e372f33e80fbc2095a71d5a1fc86f8e30;p=thirdparty%2Fbootstrap.git v5: Update color on custom switch focus state Replaces a custom hsla() value (dunno what I was thinking when I added this) with a reassigned existing variable. This variable goes up the stack and attaches to the component-active-bg variable, derived from our primary color out of the box. Fixes #30646. --- diff --git a/scss/_variables.scss b/scss/_variables.scss index 2d8aa51cb4..6bbcc066bb 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -683,7 +683,7 @@ $form-switch-padding-left: $form-switch-width + .5em !default; $form-switch-bg-image: url("data:image/svg+xml,") !default; $form-switch-border-radius: $form-switch-width !default; -$form-switch-focus-color: hsla(211, 100%, 75%, 1) !default; +$form-switch-focus-color: $input-focus-border-color !default; $form-switch-focus-bg-image: url("data:image/svg+xml,") !default; $form-switch-checked-color: $component-active-color !default;