diff options
| author | Mark Otto <[email protected]> | 2013-10-20 23:27:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-20 23:27:48 -0700 |
| commit | eef9d5ae7b21bebc34d7731aea8a41027299c54e (patch) | |
| tree | 50b6b8d8f2c805136af3e31417d65a674464c438 | |
| parent | 976866dcaacca2edd5a05c72134428a5d719e234 (diff) | |
| parent | 355525b2b7b1df9119068fb1de4c411c8315ced5 (diff) | |
| download | bootstrap-eef9d5ae7b21bebc34d7731aea8a41027299c54e.tar.xz bootstrap-eef9d5ae7b21bebc34d7731aea8a41027299c54e.zip | |
Merge pull request #10893 from Shaun-Dychko/patch--webkit-linear-gradient
remove comma separating the color and the color-stop in -webkit-linear-gradient in the #gradient .vertical mixin.
| -rw-r--r-- | less/mixins.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less index 61df50891..62b91f27b 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; |
