Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-03-12 09:45:10 +0400
committerMark Otto <markotto@twitter.com>2012-03-12 09:45:10 +0400
commit0630cd62b3e66cdc6c27cabc6bccae87df132391 (patch)
treed9aec24d42396e9be250e409e36d0d7580f09340 /less
parent0090fa1a6ec429958fad8f74974bd03e99bbf55e (diff)
rewrite the fluid grid mixin to be simpler, per #2370
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less3
1 files changed, 2 insertions, 1 deletions
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 {