From: Jacob Thornton Date: Sun, 4 Mar 2012 22:11:51 +0000 (-0800) Subject: when > 0 rather than when not 0 X-Git-Tag: v2.0.2~56^2~3^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f598e35a0954532388960c5cf0e2855a076d48c;p=thirdparty%2Fbootstrap.git when > 0 rather than when not 0 --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 84c5698f65..e84dd00cc8 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/less/mixins.less b/less/mixins.less index d58a43685d..b1274847d4 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); }