1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 15:50:01 +02:00

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>
This commit is contained in:
Simon Ihmig
2021-05-28 09:20:31 +02:00
committed by GitHub
parent f9e3d01f30
commit 649c2bb0bf
2 changed files with 3 additions and 0 deletions

View File

@@ -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 {