aboutsummaryrefslogtreecommitdiff
path: root/lib/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-09-14 08:58:20 -0700
committerMark Otto <[email protected]>2011-09-14 08:58:20 -0700
commitdcf6a051e71f73c6f53f36f4a3a9420535f70e42 (patch)
treed3b3d4661898b2ffe9d1917ac3edd763ac3ddf7e /lib/forms.less
parent32a690af985661f7d106984dc5ee1c211d0da2ed (diff)
downloadbootstrap-dcf6a051e71f73c6f53f36f4a3a9420535f70e42.tar.xz
bootstrap-dcf6a051e71f73c6f53f36f4a3a9420535f70e42.zip
allow multi-select lists in forms
Diffstat (limited to 'lib/forms.less')
-rw-r--r--lib/forms.less5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/forms.less b/lib/forms.less
index 4c307fe08..944d16af6 100644
--- a/lib/forms.less
+++ b/lib/forms.less
@@ -110,6 +110,11 @@ input[type=file] {
*margin-top: 4px; /* For IE7, add top margin to align select with labels */
}
+// Make multiple select elements height not fixed
+select[multiple] {
+ height: inherit;
+}
+
textarea {
height: auto;
}