Update to Bootstrap 3.0.2

This commit is contained in:
Ben Word
2013-11-06 19:16:58 -06:00
parent 8b5e7fa27a
commit 5fe6c44dab
56 changed files with 49 additions and 51 deletions

4
assets/less/bootstrap/mixins.less Normal file → Executable file
View File

@@ -750,7 +750,7 @@
.col(1); // kickstart it
}
.calc-grid(@index, @class, @type) when (@type = width) {
.calc-grid(@index, @class, @type) when (@type = width) and (@index > 0) {
.col-@{class}-@{index} {
width: percentage((@index / @grid-columns));
}
@@ -772,7 +772,7 @@
}
// Basic looping in LESS
.make-grid(@index, @class, @type) when (@index > 0) {
.make-grid(@index, @class, @type) when (@index >= 0) {
.calc-grid(@index, @class, @type);
// next iteration
.make-grid(@index - 1, @class, @type);