Commit 59ec4c71 authored by Mark Otto's avatar Mark Otto

make responsive input fields not wrap for fluid input prepend/append by...

make responsive input fields not wrap for fluid input prepend/append by setting block back to inline-block (oversight of 2.0.3)
parent c204bc66
......@@ -169,7 +169,7 @@
}
[class*="span"],
.row-fluid [class*="span"] {
display: block;
display: inline-block;
float: none;
width: auto;
margin-left: 0;
......
......@@ -120,7 +120,7 @@
[class*="span"],
.row-fluid [class*="span"] {
float: none;
display: block;
display: inline-block;
width: auto;
margin-left: 0;
}
......
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