diff options
| author | Thomas McDonald <[email protected]> | 2013-03-23 19:21:37 +0000 |
|---|---|---|
| committer | Thomas McDonald <[email protected]> | 2013-03-23 19:21:37 +0000 |
| commit | f8b9e428f0bc2533dfb6e0bb56fbb54e731e1f24 (patch) | |
| tree | 092c7c99d994ed1ee9e86af733adce35691b3b45 | |
| parent | 3aee2adb4b4802c2e16dfe5693db9e79de4e851a (diff) | |
| download | bootstrap-f8b9e428f0bc2533dfb6e0bb56fbb54e731e1f24.tar.xz bootstrap-f8b9e428f0bc2533dfb6e0bb56fbb54e731e1f24.zip | |
Give horizontal-three-colors a horizontal filter gradient
Previously the filter had GradientType=0, which would render a vertical
gradient rather than the horizontal one implied by name
| -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 458e58cc9..48bcd6e18 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -283,7 +283,7 @@ background-image: -o-linear-gradient(left, @startColor, @midColor @colorStop, @endColor); background-image: linear-gradient(to right, @startColor, @midColor @colorStop, @endColor); background-repeat: no-repeat; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback + filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback } .vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) { |
