diff options
| author | Mark Otto <[email protected]> | 2013-07-18 15:36:41 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-18 15:36:41 -0700 |
| commit | 820558916f6b8d7d333de6d4d21404b75fd40fc2 (patch) | |
| tree | d478b169b0551d453fcf5eed83996b20098d147c /less/forms.less | |
| parent | 7d9fb1dda7a3009e986364b714313037bfb67d0c (diff) | |
| download | bootstrap-820558916f6b8d7d333de6d4d21404b75fd40fc2.tar.xz bootstrap-820558916f6b8d7d333de6d4d21404b75fd40fc2.zip | |
Fixes #8516: correct input-small and input-large on select elements
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less index eaa7c11d2..dd75bee8b 100644 --- a/less/forms.less +++ b/less/forms.less @@ -231,7 +231,6 @@ textarea { // INPUT SIZES // ----------- -select, textarea, input[type="text"], input[type="password"], @@ -260,6 +259,16 @@ input[type="color"] { border-radius: @border-radius-small; } } +select { + &.input-large { + height: @input-height-large; + line-height: @input-height-large; + } + &.input-small { + height: @input-height-small; + line-height: @input-height-small; + } +} |
