]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix resizing issues from incorrectly changing <767px grid classes to inline-block...
authorMark Otto <markotto@twitter.com>
Fri, 18 May 2012 05:00:49 +0000 (22:00 -0700)
committerMark Otto <markotto@twitter.com>
Fri, 18 May 2012 05:00:49 +0000 (22:00 -0700)
docs/assets/css/bootstrap-responsive.css
docs/assets/css/bootstrap.css
less/forms.less
less/responsive-767px-max.less

index 9f32f0808511423990ea0ddc281de43c46f0cd19..a5d9ff4267f65c13b46dbe2988061118f7acb6ba 100644 (file)
   }
   [class*="span"],
   .row-fluid [class*="span"] {
-    display: inline-block;
+    display: block;
     float: none;
     width: auto;
     margin-left: 0;
   }
+  .row-fluid .input-prepend [class*="span"],
+  .row-fluid .input-append [class*="span"] {
+    display: inline-block;
+  }
   .input-large,
   .input-xlarge,
   .input-xxlarge,
index 42d1907d6958d822deb0492a01c0a6f7c5bb1217..549c4d37e1f5ff6e3958dfacdfff917865abb0c3 100644 (file)
@@ -802,6 +802,10 @@ textarea {
   width: 210px;
 }
 
+textarea {
+  height: auto;
+}
+
 textarea,
 input[type="text"],
 input[type="password"],
index 606446638e4dce62bd6be80fb85a2a6c132da6ca..582bb413ba0714216c03dfb2cf5d9e586a3e940e 100644 (file)
@@ -94,6 +94,10 @@ input,
 textarea {
   width: 210px;
 }
+// Reset height since textareas have rows
+textarea {
+  height: auto;
+}
 // Everything else
 textarea,
 input[type="text"],
index e35e45d892a9b2cf116c0ad59a196d8cd396668f..fc422d3a251d5e36174f65876b9942e1a659423c 100644 (file)
   [class*="span"],
   .row-fluid [class*="span"] {
     float: none;
-    display: inline-block;
+    display: block;
     width: auto;
     margin-left: 0;
   }
+  .row-fluid .input-prepend [class*="span"],
+  .row-fluid .input-append [class*="span"] {
+    display: inline-block;
+  }
 
   // FORM FIELDS
   // -----------