aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-30 13:17:45 -0700
committerMark Otto <[email protected]>2013-03-30 13:17:45 -0700
commit8d8f4e0cdda60172e2995cf2234ec1d272d14ae8 (patch)
treef542ef9eb34fca6001b00f0196f279069100d20f /less
parent62df38586a046064fcb93e26f7644801e8b4ca17 (diff)
parentf8b9e428f0bc2533dfb6e0bb56fbb54e731e1f24 (diff)
downloadbootstrap-8d8f4e0cdda60172e2995cf2234ec1d272d14ae8.tar.xz
bootstrap-8d8f4e0cdda60172e2995cf2234ec1d272d14ae8.zip
Merge pull request #7375 from thomas-mcdonald/fix-filter-gradient
Fix horizontal-three-colors to a horizontal filter gradient
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 7a993b1ae..4fc2bd235 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) {