From: Martijn Cuppens Date: Sat, 11 Apr 2020 11:46:31 +0000 (+0200) Subject: Backport #30555 X-Git-Tag: v4.5.0~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abc17a4858566a60fc9834e0be2a484dd44988ff;p=thirdparty%2Fbootstrap.git Backport #30555 Use `box-shadow` mixin for `.form-select` --- diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index 21e72da7dd..0804c63cf9 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -237,8 +237,9 @@ border-color: $custom-select-focus-border-color; outline: 0; @if $enable-shadows { - box-shadow: $custom-select-box-shadow, $custom-select-focus-box-shadow; + @include box-shadow($custom-select-box-shadow, $custom-select-focus-box-shadow); } @else { + // Avoid using mixin so we can pass custom focus shadow properly box-shadow: $custom-select-focus-box-shadow; }