diff options
| author | Mark Otto <[email protected]> | 2012-02-21 15:21:18 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-21 15:21:18 -0800 |
| commit | e3ae517555fb9500493fde8efeef4a9788cd3264 (patch) | |
| tree | 22363547984c560b2e66df5a3b3519fa65f19cc2 /less | |
| parent | 8665fa8c50bf93844f692e954fd9669ba4b8bd3b (diff) | |
| download | bootstrap-e3ae517555fb9500493fde8efeef4a9788cd3264.tar.xz bootstrap-e3ae517555fb9500493fde8efeef4a9788cd3264.zip | |
move container up in default grid mixin
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less index 0e33591f7..4561e98cb 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -172,6 +172,10 @@ [class*="span"] { #gridSystem > .gridColumn(@gridGutterWidth); } + + // Fixed container + .container { #gridSystem > .columns(@gridGutterWidth, @gridColumnWidth, @gridRowWidth, @gridColumns); } + // Default columns .span1 { #gridSystem > .columns(@gridGutterWidth, @gridColumnWidth, @gridRowWidth, 1); } .span2 { #gridSystem > .columns(@gridGutterWidth, @gridColumnWidth, @gridRowWidth, 2); } @@ -198,8 +202,6 @@ .span23 { #gridSystem > .columns(@gridGutterWidth, @gridColumnWidth, @gridRowWidth, 23); } .span24 { #gridSystem > .columns(@gridGutterWidth, @gridColumnWidth, @gridRowWidth, 24); } - .container { #gridSystem > .columns(@gridGutterWidth, @gridColumnWidth, @gridRowWidth, @gridColumns); } - // Offset column options .offset1 { #gridSystem > .offset(@gridColumnWidth, @gridGutterWidth, 1); } .offset2 { #gridSystem > .offset(@gridColumnWidth, @gridGutterWidth, 2); } |
