mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
fixes #4828: make fluid grid inputs size the same as fixed grid inputs
This commit is contained in:
parent
2137cd65fb
commit
2da2169a56
2 changed files with 6 additions and 2 deletions
5
docs/assets/css/bootstrap-responsive.css
vendored
5
docs/assets/css/bootstrap-responsive.css
vendored
|
@ -817,8 +817,11 @@
|
|||
.row-fluid [class*="span"] {
|
||||
display: block;
|
||||
float: none;
|
||||
width: auto;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.span12,
|
||||
.row-fluid .span12 {
|
||||
|
|
|
@ -61,8 +61,9 @@
|
|||
.row-fluid [class*="span"] {
|
||||
float: none;
|
||||
display: block;
|
||||
width: auto;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
.box-sizing(border-box);
|
||||
}
|
||||
.span12,
|
||||
.row-fluid .span12 {
|
||||
|
|
Loading…
Reference in a new issue