]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
remove comma separating the color and the color-stop in -webkit-linear-gradient in... 10893/head
authorShaun Dychko <shaun@checkmarkmedia.com>
Mon, 30 Sep 2013 20:21:54 +0000 (13:21 -0700)
committerShaun Dychko <shaun@checkmarkmedia.com>
Mon, 30 Sep 2013 20:21:54 +0000 (13:21 -0700)
less/mixins.less

index 6e0e399afb7974d089241d62286cc9866dcba144..7438deacdb88aa01f74648249c8fa60c1a6089e6 100644 (file)
   // 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;