diff options
| author | Mark Otto <[email protected]> | 2013-03-15 23:21:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-15 23:21:10 -0700 |
| commit | bb38fa52865397e933db95885eb6347ea6d54109 (patch) | |
| tree | e5960ec404067ee40400d530741f5ddc5e7c486c /less/grid.less | |
| parent | 145eb054d9aac82977a339c0253e7bec6ad111d5 (diff) | |
| download | bootstrap-bb38fa52865397e933db95885eb6347ea6d54109.tar.xz bootstrap-bb38fa52865397e933db95885eb6347ea6d54109.zip | |
Overhaul the grid system and its docs
* Add new grid mixins adapted from Preboot (http://github.com/mdo/preboot)
* Drop the @grid-row-width and @grid-column-width variables
* Add the @grid-float-breakpoint variable, as used in Preboot
* Add support for .push* and .pull* classes for column ordering manipulation
* Document all the things
Diffstat (limited to 'less/grid.less')
| -rw-r--r-- | less/grid.less | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/less/grid.less b/less/grid.less index 1774d90b2..e9eb52ef2 100644 --- a/less/grid.less +++ b/less/grid.less @@ -10,11 +10,10 @@ // Mobile-first defaults .row { - margin-left: (@grid-gutter-width / -2); - margin-right: (@grid-gutter-width / -2); - .clear_float(); + .make-row(); } [class^="span"] { + position: relative; min-height: 1px; padding-left: (@grid-gutter-width / 2); padding-right: (@grid-gutter-width / 2); @@ -26,10 +25,8 @@ max-width: 728px; } // Generate the grid columns and offsets - [class^="span"] { - float: left; - } - #grid > .core(@grid-column-width, @grid-gutter-width); + [class^="span"] { float: left; } + .generate-grid-columns(@grid-columns); } // Responsive: Desktops and up @@ -44,14 +41,6 @@ .container { max-width: 1170px; } - .row { - margin-left: -15px; - margin-right: -15px; - } - [class^="span"] { - padding-left: 15px; - padding-right: 15px; - } } // Reset utility classes due to specificity |
