From 355525b2b7b1df9119068fb1de4c411c8315ced5 Mon Sep 17 00:00:00 2001 From: Shaun Dychko Date: Mon, 30 Sep 2013 13:21:54 -0700 Subject: [PATCH] remove comma separating the color and the color-stop in -webkit-linear-gradient in the #gradient .vertical mixin. --- less/mixins.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/mixins.less b/less/mixins.less index 6e0e399afb79..7438deacdb88 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -287,7 +287,7 @@ // Color stops are not available in IE9 and below. .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) { background-image: -webkit-gradient(linear, left @start-percent, left @end-percent, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+ - background-image: -webkit-linear-gradient(top, @start-color, @start-percent, @end-color, @end-percent); // Safari 5.1+, Chrome 10+ + background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1+, Chrome 10+ background-image: -moz-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // FF 3.6+ background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10 background-repeat: repeat-x;