From: Thomas McDonald Date: Sat, 23 Mar 2013 19:21:37 +0000 (+0000) Subject: Give horizontal-three-colors a horizontal filter gradient X-Git-Tag: v3.0.0-rc1~527^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F7375%2Fhead;p=thirdparty%2Fbootstrap.git 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 --- diff --git a/less/mixins.less b/less/mixins.less index 458e58cc98..48bcd6e184 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) {