diff options
| author | Mark Otto <[email protected]> | 2016-05-08 17:31:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-05-08 17:31:02 -0700 |
| commit | 546149f004a7a98782dd26e5accd8fd197dfbc35 (patch) | |
| tree | 1fd1f3cfb686addc7078709decb5a3bfbb687dae | |
| parent | d8c898b17295ca275bc247f5d0e69de85b95d6a4 (diff) | |
| download | bootstrap-546149f004a7a98782dd26e5accd8fd197dfbc35.tar.xz bootstrap-546149f004a7a98782dd26e5accd8fd197dfbc35.zip | |
Fixes #19771: Enable .form-control-sm/lg on select.form-control
| -rw-r--r-- | scss/_forms.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index b6a963e6c..32836182c 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -153,12 +153,24 @@ select.form-control { @include border-radius($input-border-radius-sm); } +select.form-control-sm { + &:not([size]):not([multiple]) { + height: $input-height-sm; + } +} + .form-control-lg { padding: $input-padding-y-lg $input-padding-x-lg; font-size: $font-size-lg; @include border-radius($input-border-radius-lg); } +select.form-control-lg { + &:not([size]):not([multiple]) { + height: $input-height-lg; + } +} + // Form groups // |
