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

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
3 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.,!3348Patch 2
Showing with 2 additions and 2 deletions
+2 -2
...@@ -169,7 +169,7 @@ ...@@ -169,7 +169,7 @@
} }
[class*="span"], [class*="span"],
.row-fluid [class*="span"] { .row-fluid [class*="span"] {
display: block; display: inline-block;
float: none; float: none;
width: auto; width: auto;
margin-left: 0; margin-left: 0;
......
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
[class*="span"], [class*="span"],
.row-fluid [class*="span"] { .row-fluid [class*="span"] {
float: none; float: none;
display: block; display: inline-block;
width: auto; width: auto;
margin-left: 0; margin-left: 0;
} }
......
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