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/_variables.scss
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/_variables.scss')
-rw-r--r--scss/_variables.scss2
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 9a1f3daad9..11819f4400 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -826,6 +826,8 @@ $form-select-font-size-sm: $input-font-size-sm !default;
$form-select-padding-y-lg: $input-padding-y-lg !default;
$form-select-padding-x-lg: $input-padding-x-lg !default;
$form-select-font-size-lg: $input-font-size-lg !default;
+
+$form-select-transition: $input-transition !default;
// scss-docs-end form-select-variables
// scss-docs-start form-range-variables