fixes #4828: make fluid grid inputs size the same as fixed grid inputs

This commit is contained in:
Mark Otto 2012-08-29 13:06:47 -07:00
parent 2137cd65fb
commit 2da2169a56
2 changed files with 6 additions and 2 deletions

View File

@ -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 {

View File

@ -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 {