aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorThomas McDonald <[email protected]>2013-03-23 19:21:37 +0000
committerThomas McDonald <[email protected]>2013-03-23 19:21:37 +0000
commitf8b9e428f0bc2533dfb6e0bb56fbb54e731e1f24 (patch)
tree092c7c99d994ed1ee9e86af733adce35691b3b45 /less
parent3aee2adb4b4802c2e16dfe5693db9e79de4e851a (diff)
downloadbootstrap-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
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less2
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) {