2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

make responsive input fields not wrap for fluid input prepend/append by setting block back to inline-block (oversight of 2.0.3)

This commit is contained in:
Mark Otto
2012-04-30 15:40:49 -07:00
parent c204bc66d6
commit 59ec4c7154
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -169,7 +169,7 @@
}
[class*="span"],
.row-fluid [class*="span"] {
display: block;
display: inline-block;
float: none;
width: auto;
margin-left: 0;
+1 -1
View File
@@ -120,7 +120,7 @@
[class*="span"],
.row-fluid [class*="span"] {
float: none;
display: block;
display: inline-block;
width: auto;
margin-left: 0;
}