Commit 78790da0 authored by Mark Otto's avatar Mark Otto
Browse files

fix resizing issues from incorrectly changing <767px grid classes to...

fix resizing issues from incorrectly changing <767px grid classes to inline-block, fix height issue on textareas
parent e5187e12
2 merge requests!36092.0.4 wip fix make docs,!3549Clear tooltips delayed show timer when leave event is triggered. ALSO when hide delay is 0.
Showing with 18 additions and 2 deletions
+18 -2
...@@ -169,11 +169,15 @@ ...@@ -169,11 +169,15 @@
} }
[class*="span"], [class*="span"],
.row-fluid [class*="span"] { .row-fluid [class*="span"] {
display: inline-block; display: block;
float: none; float: none;
width: auto; width: auto;
margin-left: 0; margin-left: 0;
} }
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
display: inline-block;
}
.input-large, .input-large,
.input-xlarge, .input-xlarge,
.input-xxlarge, .input-xxlarge,
......
...@@ -802,6 +802,10 @@ textarea { ...@@ -802,6 +802,10 @@ textarea {
width: 210px; width: 210px;
} }
textarea {
height: auto;
}
textarea, textarea,
input[type="text"], input[type="text"],
input[type="password"], input[type="password"],
......
...@@ -94,6 +94,10 @@ input, ...@@ -94,6 +94,10 @@ input,
textarea { textarea {
width: 210px; width: 210px;
} }
// Reset height since textareas have rows
textarea {
height: auto;
}
// Everything else // Everything else
textarea, textarea,
input[type="text"], input[type="text"],
......
...@@ -120,10 +120,14 @@ ...@@ -120,10 +120,14 @@
[class*="span"], [class*="span"],
.row-fluid [class*="span"] { .row-fluid [class*="span"] {
float: none; float: none;
display: inline-block; display: block;
width: auto; width: auto;
margin-left: 0; margin-left: 0;
} }
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
display: inline-block;
}
// FORM FIELDS // FORM FIELDS
// ----------- // -----------
......
Supports Markdown
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