diff options
| author | Mark Otto <[email protected]> | 2012-03-11 22:45:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-11 22:45:10 -0700 |
| commit | 0630cd62b3e66cdc6c27cabc6bccae87df132391 (patch) | |
| tree | d9aec24d42396e9be250e409e36d0d7580f09340 | |
| parent | 0090fa1a6ec429958fad8f74974bd03e99bbf55e (diff) | |
| download | bootstrap-0630cd62b3e66cdc6c27cabc6bccae87df132391.tar.xz bootstrap-0630cd62b3e66cdc6c27cabc6bccae87df132391.zip | |
rewrite the fluid grid mixin to be simpler, per #2370
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 55418 -> 55418 bytes | |||
| -rw-r--r-- | less/mixins.less | 3 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex 5a1c83132..7401928d9 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/less/mixins.less b/less/mixins.less index 4114bccfe..323e534d1 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 { |
