aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-08-03 21:39:57 -0700
committerChris Rebert <[email protected]>2013-08-03 21:39:57 -0700
commit23ef8c0c209844dd8b92d2a5ac82daffa7bd2914 (patch)
treecc888bd30f8c753c45c122ea8e7ececbc55bde37 /less/forms.less
parent30a01e0a3321426d581e63c97e21c2141357b631 (diff)
downloadbootstrap-23ef8c0c209844dd8b92d2a5ac82daffa7bd2914.tar.xz
bootstrap-23ef8c0c209844dd8b92d2a5ac82daffa7bd2914.zip
Greater standardization of sizing terminology
In class names: * large => lg * small => sm * mini => xs ("Extra small") In screen size categories: * Tiny => Extra small
Diffstat (limited to 'less/forms.less')
-rw-r--r--less/forms.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/forms.less b/less/forms.less
index 41d50a5e0..127f6a67a 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -218,14 +218,14 @@ input[type="number"] {
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
// element gets special love because it's special, and that's a fact!
-.input-large {
+.input-lg {
height: @input-height-large;
padding: @padding-large-vertical @padding-large-horizontal;
font-size: @font-size-large;
line-height: @line-height-large;
border-radius: @border-radius-large;
}
-.input-small {
+.input-sm {
height: @input-height-small;
padding: @padding-small-vertical @padding-small-horizontal;
font-size: @font-size-small;
@@ -234,18 +234,18 @@ input[type="number"] {
}
select {
- &.input-large {
+ &.input-lg {
height: @input-height-large;
line-height: @input-height-large;
}
- &.input-small {
+ &.input-sm {
height: @input-height-small;
line-height: @input-height-small;
}
}
textarea {
- &.input-large,
- &.input-small {
+ &.input-lg,
+ &.input-sm {
height: auto;
}
}