Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ihmig <simon.ihmig@kaliber5.de>2021-05-28 10:20:31 +0300
committerGitHub <noreply@github.com>2021-05-28 10:20:31 +0300
commit649c2bb0bf326db36cbbf7e72c0541b19749a70e (patch)
tree1987a6a297d2eb53ee61c703c5d59bbb1378edc3 /scss/forms
parentf9e3d01f30b553e751b6c4d33c1648397d37cc04 (diff)
Add missing transition to `.form-select` (#34034)
A selectbox is styled in a very similar way as an input (`.form-control`), including border-color and box-shadow. So it can be assumed it should apply the same CSS transition for these properties when focused, but this was missing. Co-authored-by: alpadev <2838324+alpadev@users.noreply.github.com>
Diffstat (limited to 'scss/forms')
-rw-r--r--scss/forms/_form-select.scss1
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/forms/_form-select.scss b/scss/forms/_form-select.scss
index 70256255a7..4506a979ad 100644
--- a/scss/forms/_form-select.scss
+++ b/scss/forms/_form-select.scss
@@ -22,6 +22,7 @@
border: $form-select-border-width solid $form-select-border-color;
@include border-radius($form-select-border-radius, 0);
@include box-shadow($form-select-box-shadow);
+ @include transition($form-select-transition);
appearance: none;
&:focus {