From f25129361be813af4c399da8e3041a43ccd2a943 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 3 Sep 2012 01:04:53 -0700 Subject: [PATCH] add comment to go with updated box-shadow mixin --- less/mixins.less | 1 + 1 file changed, 1 insertion(+) diff --git a/less/mixins.less b/less/mixins.less index 51ee3e336234..295f192287d6 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -249,6 +249,7 @@ // Drop shadows .box-shadow(@shadowA, @shadowB:X, ...){ + // Multiple shadow solution from http://toekneestuck.com/blog/2012/05/15/less-css-arguments-variable/ @props: ~`"@{arguments}".replace(/[\[\]]|\,\sX/g, '')`; -webkit-box-shadow: @props; -moz-box-shadow: @props;