Commit 517977fc authored by Mark Otto's avatar Mark Otto

fix validation, run grunt dist

parent c16fee5e
This diff is collapsed.
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff was suppressed by a .gitattributes entry.
...@@ -152,6 +152,7 @@ output { ...@@ -152,6 +152,7 @@ output {
fieldset[disabled] & { fieldset[disabled] & {
cursor: $cursor-disabled; cursor: $cursor-disabled;
} }
}
// Reset height for `textarea`s // Reset height for `textarea`s
textarea.form-control { textarea.form-control {
...@@ -206,7 +207,7 @@ input[type="search"] { ...@@ -206,7 +207,7 @@ input[type="search"] {
// horizontal forms, use the predefined grid classes. // horizontal forms, use the predefined grid classes.
.form-group { .form-group {
margin-bottom: @form-group-margin-bottom; margin-bottom: $form-group-margin-bottom;
} }
...@@ -298,12 +299,12 @@ input[type="checkbox"] { ...@@ -298,12 +299,12 @@ input[type="checkbox"] {
// a horizontal form layout. // a horizontal form layout.
.form-control-static { .form-control-static {
min-height: ($line-height-computed + $font-size-base);
// Size it appropriately next to real form controls // Size it appropriately next to real form controls
padding-top: ($padding-base-vertical + 1); padding-top: ($padding-base-vertical + 1);
padding-bottom: ($padding-base-vertical + 1); padding-bottom: ($padding-base-vertical + 1);
// Remove default margin from `p` // Remove default margin from `p`
margin-bottom: 0; margin-bottom: 0;
min-height: (@line-height-computed + @font-size-base);
&.input-lg, &.input-lg,
&.input-sm { &.input-sm {
...@@ -328,10 +329,10 @@ input[type="checkbox"] { ...@@ -328,10 +329,10 @@ input[type="checkbox"] {
.form-control-static { .form-control-static {
height: $input-height-sm; height: $input-height-sm;
min-height: ($line-height-computed + $font-size-sm);
padding: $padding-sm-vertical $padding-sm-horizontal; padding: $padding-sm-vertical $padding-sm-horizontal;
font-size: $font-size-sm; font-size: $font-size-sm;
line-height: $line-height-sm; line-height: $line-height-sm;
min-height: ($line-height-computed + $font-size-sm);
} }
} }
...@@ -342,10 +343,10 @@ input[type="checkbox"] { ...@@ -342,10 +343,10 @@ input[type="checkbox"] {
.form-control-static { .form-control-static {
height: $input-height-lg; height: $input-height-lg;
min-height: ($line-height-computed + $font-size-lg);
padding: $padding-lg-vertical $padding-lg-horizontal; padding: $padding-lg-vertical $padding-lg-horizontal;
font-size: $font-size-lg; font-size: $font-size-lg;
line-height: $line-height-lg; line-height: $line-height-lg;
min-height: ($line-height-computed + $font-size-lg);
} }
} }
......
...@@ -162,7 +162,7 @@ abbr[data-original-title] { ...@@ -162,7 +162,7 @@ abbr[data-original-title] {
} }
.initialism { .initialism {
font-size: 90%; font-size: 90%;
@include text-uppercase; text-transform: uppercase;
} }
// Blockquotes // Blockquotes
......
...@@ -213,6 +213,8 @@ $input-height-lg: (($font-size-lg * $line-height-lg) + ($padding- ...@@ -213,6 +213,8 @@ $input-height-lg: (($font-size-lg * $line-height-lg) + ($padding-
//** Small `.form-control` height //** Small `.form-control` height
$input-height-sm: (($font-size-sm * $line-height-sm) + ($padding-sm-vertical * 2) + ($border-width * 2)) !default; $input-height-sm: (($font-size-sm * $line-height-sm) + ($padding-sm-vertical * 2) + ($border-width * 2)) !default;
$form-group-margin-bottom: 15px;
$legend-color: $gray-dark !default; $legend-color: $gray-dark !default;
$legend-border-color: #e5e5e5 !default; $legend-border-color: #e5e5e5 !default;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment