1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

rewrite the fluid grid mixin to be simpler, per #2370

This commit is contained in:
Mark Otto 2012-03-11 22:45:10 -07:00
parent 0090fa1a6e
commit 0630cd62b3
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View file

@ -568,7 +568,8 @@
.spanX (0) {} .spanX (0) {}
.span (@columns) { .span (@columns) {
width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)); //width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
} }
.row-fluid { .row-fluid {