From d8b1fbbe2a01d8715e5c253a2b6b73f14e6ffbec Mon Sep 17 00:00:00 2001 From: cainrus Date: Wed, 22 Aug 2012 23:20:23 +0400 Subject: [PATCH] Update lib/patterns.less Runtime of lessc utility. third parameter is not defined in mixin. Found that when used fbootstrapp(less variant) with my nodejs project. Parser error on line 1026 --- lib/patterns.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/patterns.less b/lib/patterns.less index 82fb32685bba..428c1d8e00a9 100644 --- a/lib/patterns.less +++ b/lib/patterns.less @@ -972,7 +972,7 @@ input[type=submit].btn { // POPOVERS // -------- #popoverdouble { - .above(@arrowWidth: 5px, @arrowColor: @black) { + .above(@arrowWidth: 5px, @arrowColor: @black, @offset: 0px) { bottom: 0; left: 50%; margin-left: -@arrowWidth; @@ -990,7 +990,7 @@ input[type=submit].btn { border-left: @arrowWidth solid @arrowColor; content: ' '; } - .below(@arrowWidth: 5px, @arrowColor: @black) { + .below(@arrowWidth: 5px, @arrowColor: @black, @offset: 0px) { top: 0; left: 50%; margin-left: -@arrowWidth; @@ -999,7 +999,7 @@ input[type=submit].btn { border-bottom: @arrowWidth solid @arrowColor; content: ' '; } - .right(@arrowWidth: 5px, @arrowColor: @black) { + .right(@arrowWidth: 5px, @arrowColor: @black, @offset: 0px) { top: 50%; left: 0; margin-top: -@arrowWidth;