diff options
| author | Mark Otto <[email protected]> | 2012-12-02 20:40:24 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-02 20:40:24 -0800 |
| commit | 30d6a71ccd383c6b2498cf58d99db399c850a551 (patch) | |
| tree | b5bc981c1f3239acd7d1d89dd6db788fcf5c9ebd /less | |
| parent | 439ff097019024c73f141431f6eb0da035cd2f04 (diff) | |
| download | bootstrap-30d6a71ccd383c6b2498cf58d99db399c850a551.tar.xz bootstrap-30d6a71ccd383c6b2498cf58d99db399c850a551.zip | |
Revert vertical gradient spec to 'to bottom' as 'top' doesn't work in IE10
Diffstat (limited to 'less')
| -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 109aa61e6..b734bab2d 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -425,7 +425,7 @@ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+ background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+ background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10 - background-image: linear-gradient(top, @startColor, @endColor); // Standard, IE10 + background-image: linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10 background-repeat: repeat-x; filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down } |
