aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-03-04 14:11:51 -0800
committerJacob Thornton <[email protected]>2012-03-04 14:11:51 -0800
commit2f598e35a0954532388960c5cf0e2855a076d48c (patch)
treeadb31630809e553e63460e2f73055e934bc0368e
parent1aeca545c8708dce6d05e7698589a20b98b39a76 (diff)
downloadbootstrap-2f598e35a0954532388960c5cf0e2855a076d48c.tar.xz
bootstrap-2f598e35a0954532388960c5cf0e2855a076d48c.zip
when > 0 rather than when not 0
-rw-r--r--docs/assets/bootstrap.zipbin54463 -> 54463 bytes
-rw-r--r--less/mixins.less6
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index 84c5698f6..e84dd00cc 100644
--- a/docs/assets/bootstrap.zip
+++ b/docs/assets/bootstrap.zip
Binary files differ
diff --git a/less/mixins.less b/less/mixins.less
index d58a43685..b1274847d 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -485,17 +485,17 @@
// Recursive mixins! <3
// Requires not yet released LESS ;)
- .spanX (@index) when not (@index = 0) {
+ .spanX (@index) when (@index > 0) {
~".span@{index}" { .span(@index); }
#grid .spanX(@index - 1);
}
- .spanX (@index, @child) when not (@index = 0) and (@child) {
+ .spanX (@index, @child) when (@index > 0) and (@child) {
~"> .span@{index}" { .span(@index); }
#grid .spanX(@index - 1);
}
.spanX (0) {}
- .offsetX (@index) when not (@index = 0) {
+ .offsetX (@index) when (@index > 0) {
~".offset@{index}" { .offset(@index); }
#grid .offsetX(@index - 1);
}