aboutsummaryrefslogtreecommitdiff
path: root/less/input-groups.less
diff options
context:
space:
mode:
authorfat <[email protected]>2013-08-04 15:45:51 -0700
committerfat <[email protected]>2013-08-04 15:45:51 -0700
commitf22a077f6ea0e0d85d9899a1f44eab4733ca6af6 (patch)
tree95c0b4c0bedd3a2ac1aa61e03d0ead12c7827f4f /less/input-groups.less
parentb1d21731adfc04adb654133988f3c8e444d8b240 (diff)
parentb6390d298aa71e6dccb10e539097fbc7aaa45b8a (diff)
downloadbootstrap-f22a077f6ea0e0d85d9899a1f44eab4733ca6af6.tar.xz
bootstrap-f22a077f6ea0e0d85d9899a1f44eab4733ca6af6.zip
Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wip
Diffstat (limited to 'less/input-groups.less')
-rw-r--r--less/input-groups.less47
1 files changed, 4 insertions, 43 deletions
diff --git a/less/input-groups.less b/less/input-groups.less
index 3586beef7..79d1afcd4 100644
--- a/less/input-groups.less
+++ b/less/input-groups.less
@@ -55,15 +55,17 @@
border-radius: @border-radius-base;
// Sizing
- &.input-small {
+ &.input-sm {
padding: @padding-small-vertical @padding-small-horizontal;
font-size: @font-size-small;
border-radius: @border-radius-small;
+ line-height: @line-height-small;
}
- &.input-large {
+ &.input-lg {
padding: @padding-large-vertical @padding-large-horizontal;
font-size: @font-size-large;
border-radius: @border-radius-large;
+ line-height: @line-height-large;
}
// Nuke default margins from checkboxes and radios to vertically center within.
@@ -113,44 +115,3 @@
z-index: 2;
}
}
-
-
-// Inline forms
-// --------------------------------------------------
-
-.form-inline {
- .form-control,
- .radio,
- .checkbox {
- display: inline-block;
- }
- .radio,
- .checkbox {
- margin-top: 0;
- margin-bottom: 0;
- }
-}
-
-
-// Horizontal forms
-// --------------------------------------------------
-// Horizontal forms are built on grid classes.
-
-.form-horizontal .control-label,
-.form-horizontal .radio-inline,
-.form-horizontal .checkbox-inline {
- padding-top: 9px;
-}
-
-.form-horizontal {
- .form-group {
- .make-row();
- }
-}
-
-// Only right align form labels here when the columns stop stacking
-@media (min-width: @screen-tablet) {
- .form-horizontal .control-label {
- text-align: right;
- }
-}