1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-02 18:02:37 +02:00

fix #2856: make inputs using .span* classes responsive at <767px layout

This commit is contained in:
Mark Otto
2012-03-31 21:31:01 -07:00
parent 2355fd224d
commit f37d9aeaef
3 changed files with 11 additions and 5 deletions

Binary file not shown.

View File

@@ -148,8 +148,8 @@
.row {
margin-left: 0;
}
.row > [class*="span"],
.row-fluid > [class*="span"] {
[class*="span"],
.row-fluid [class*="span"] {
float: none;
display: block;
width: auto;
@@ -174,8 +174,11 @@
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.input-prepend input,
.input-append input,
.input-prepend input[class*="span"],
.input-append input[class*="span"] {
display: inline-block;
width: auto;
}
}