diff options
| author | Heinrich Fenkart <[email protected]> | 2014-11-05 01:54:13 +0100 |
|---|---|---|
| committer | Heinrich Fenkart <[email protected]> | 2014-11-05 01:54:13 +0100 |
| commit | 00fa64650a604639dfd7ffc747a126a06c88e031 (patch) | |
| tree | db6f12d3b28e1dba17723549c8ed98e7d356f2cf | |
| parent | 21644321e4cc8d1aa2aec99e8b5f35bfbd27ee4f (diff) | |
| parent | b8dbb545ac7e467ad1e1b95e0e0c647ccd129c4a (diff) | |
| download | bootstrap-00fa64650a604639dfd7ffc747a126a06c88e031.tar.xz bootstrap-00fa64650a604639dfd7ffc747a126a06c88e031.zip | |
Merge pull request #14921 from bassjobsen/patch-3
Update grid-framework.less
| -rw-r--r-- | less/mixins/grid-framework.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/mixins/grid-framework.less b/less/mixins/grid-framework.less index 631785465..f3b3929d6 100644 --- a/less/mixins/grid-framework.less +++ b/less/mixins/grid-framework.less @@ -5,7 +5,7 @@ .make-grid-columns() { // Common styles for all sizes of grid columns, widths 1-12 - .col(@index) when (@index = 1) { // initial + .col(@index) { // initial @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}"; .col((@index + 1), @item); } @@ -27,7 +27,7 @@ } .float-grid-columns(@class) { - .col(@index) when (@index = 1) { // initial + .col(@index) { // initial @item: ~".col-@{class}-@{index}"; .col((@index + 1), @item); } |
