Skip to content

Commit

Permalink
Merge pull request #10893 from Shaun-Dychko/patch--webkit-linear-grad…
Browse files Browse the repository at this point in the history
…ient

remove comma separating the color and the color-stop in -webkit-linear-gradient in the #gradient .vertical mixin.
  • Loading branch information
mdo committed Oct 21, 2013
2 parents 976866d + 355525b commit eef9d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion less/mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit eef9d5a

Please sign in to comment.