3.0.1 -> 3.0.2
[bootswatch] / bower_components / bootstrap / less / mixins.less
old mode 100755 (executable)
new mode 100644 (file)
index 4718cb2..3d24e66
   .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));
   }
 }
 
 // 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);