aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-03 22:44:44 -0700
committerMark Otto <[email protected]>2013-08-03 22:44:44 -0700
commitc45edbe6b515daad00905d351c310e7d3fa2926f (patch)
tree2e6600473043335611ebce3195337a74c294c716 /less/forms.less
parent30a01e0a3321426d581e63c97e21c2141357b631 (diff)
parentcabcd36019cb7000c537bcd8292d4905239685f7 (diff)
downloadbootstrap-c45edbe6b515daad00905d351c310e7d3fa2926f.tar.xz
bootstrap-c45edbe6b515daad00905d351c310e7d3fa2926f.zip
Merge pull request #9056 from twbs/large-to-lg-etc
Greater standardization of sizing terminology
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;
}
}