Skip to content

Commit

Permalink
fixes #4828: make fluid grid inputs size the same as fixed grid inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Aug 29, 2012
1 parent 2137cd6 commit 2da2169
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/assets/css/bootstrap-responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 2 additions & 1 deletion less/responsive-767px-max.less
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2da2169

Please sign in to comment.