From: Mark Otto Date: Mon, 12 Mar 2012 05:45:10 +0000 (-0700) Subject: rewrite the fluid grid mixin to be simpler, per #2370 X-Git-Tag: v2.0.2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0630cd62b3e66cdc6c27cabc6bccae87df132391;p=thirdparty%2Fbootstrap.git rewrite the fluid grid mixin to be simpler, per #2370 --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 5a1c831325..7401928d94 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/less/mixins.less b/less/mixins.less index 4114bccfe8..323e534d19 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -568,7 +568,8 @@ .spanX (0) {} .span (@columns) { - width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)); + //width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)); + width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)); } .row-fluid {