From 2f598e35a0954532388960c5cf0e2855a076d48c Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Sun, 4 Mar 2012 14:11:51 -0800 Subject: [PATCH] when > 0 rather than when not 0 --- docs/assets/bootstrap.zip | Bin 54463 -> 54463 bytes less/mixins.less | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 84c5698f6590c3e046cefcc7df2df52af1cb0eba..e84dd00cc827b647873cb9de3c526bad8fcd0aa8 100644 GIT binary patch delta 469 zcmdnLl6n71W}X0VW)?065Qr(9$fL-X|03AG;Kk&?OTt`85&^165)=D4n1G6B*n-9K zUu?Xc&j}Qm?8D^<71=zQ>oGe>s6xmHCbU7Q#26%`=4J*pYjcv@2?LNx0W$oVx#{|$ zA)E}%2>T({OfD&Rh8eN9yix#UghdC;>dn<1)nK6?GgP3af}9T3YCqEeW>x9T5JiyI z)4NRA3V>eBf3cZ$x3VZmNb7<=Q$EPYvLIf;C7H?7E{H=!#3$=rW&??yyWou`Vs+6U zO=Q(Y2Q(4xOD+%*sL94?@<%QOqKTMYhS~$xvFNf9n*7(xc4#6YSDct2@ilq%6%hbc C|GuFB delta 469 zcmdnLl6n71W}X0VW)?065Qxa1$fL+M<7u$}%%_tBF9~xYNd%}ONlfhHU;-+hVG9;BP=>#R&TEEs0IuDn4tnS736fNR{NO-Fsn*uhA1*c z=1)Go%Yw-Sh43LjyLA-)XGLxrW5Qm6}Pu9E41`<7Y!5dA) z>Y_iI$f}DDXd>K~Tp%J)la0~jk6a2w6EV9CwFj(Y(Pbkv`LCDlkVSwV3c2FM1c|T7 ItFMRv043SOYXATM 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); }