Skip to content

Commit

Permalink
(less) Merge pull request twbs#10893 from Shaun-Dychko/patch--webkit-…
Browse files Browse the repository at this point in the history
…linear-gradient

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 7c8ef7e + dc21459 commit 08b6311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 08b6311

Please sign in to comment.