diff options
| author | Martijn Cuppens <[email protected]> | 2020-04-11 13:46:31 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-04-13 21:12:29 +0300 |
| commit | abc17a4858566a60fc9834e0be2a484dd44988ff (patch) | |
| tree | a9118f0e947855884546f3a179dd427f8f0d178b | |
| parent | 4d863effdbd6a57f3a5eda7ce4cb94e3c1f62da2 (diff) | |
| download | bootstrap-abc17a4858566a60fc9834e0be2a484dd44988ff.tar.xz bootstrap-abc17a4858566a60fc9834e0be2a484dd44988ff.zip | |
Backport #30555
Use `box-shadow` mixin for `.form-select`
| -rw-r--r-- | scss/_custom-forms.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index 21e72da7d..0804c63cf 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; } |
