aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Dychko <[email protected]>2013-09-30 13:21:54 -0700
committerShaun Dychko <[email protected]>2013-09-30 13:21:54 -0700
commit355525b2b7b1df9119068fb1de4c411c8315ced5 (patch)
tree5473aba46677b0abd1194895398b3aae28a71bc1
parent1809894e8a6e82e4871cbb399fc15c7dee306605 (diff)
downloadbootstrap-355525b2b7b1df9119068fb1de4c411c8315ced5.tar.xz
bootstrap-355525b2b7b1df9119068fb1de4c411c8315ced5.zip
remove comma separating the color and the color-stop in -webkit-linear-gradient in the #gradient .vertical mixin.
-rw-r--r--less/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 6e0e399af..7438deacd 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;