diff options
| author | Mark Otto <[email protected]> | 2014-07-08 03:38:23 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-08 03:38:23 -0700 |
| commit | c3b0870ec00adf551a052828d7b0e129984f08c2 (patch) | |
| tree | 5515cd0d6121114418f84984549d80377c635a57 /less/grid.less | |
| parent | 9f53f9aea13acf7685888c2c748208c38cd89875 (diff) | |
| download | bootstrap-c3b0870ec00adf551a052828d7b0e129984f08c2.tar.xz bootstrap-c3b0870ec00adf551a052828d7b0e129984f08c2.zip | |
Overhaul semantic grid mixins
- Drops all the `.make-**-column` mixins for a single set to be used
within (or outside) media queries.
- Renames `.container-fixed` to `.make-container` for consistency.
- Updates built-in grid system to use new setup.
See http://jsbin.com/qiqet/2/ for an example of it in action.
Diffstat (limited to 'less/grid.less')
| -rw-r--r-- | less/grid.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/grid.less b/less/grid.less index e100655b7..9957a44af 100644 --- a/less/grid.less +++ b/less/grid.less @@ -8,7 +8,7 @@ // Set the container width, and override it for fixed navbars in media queries. .container { - .container-fixed(); + .make-container(); @media (min-width: @screen-sm-min) { width: @container-sm; @@ -28,7 +28,7 @@ // width for fluid, full width layouts. .container-fluid { - .container-fixed(); + .make-container(); } |
