]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update linear-gradient standard 3937/head
authorHan Lin Yap <codler@gmail.com>
Tue, 26 Jun 2012 09:30:43 +0000 (12:30 +0300)
committerHan Lin Yap <codler@gmail.com>
Tue, 26 Jun 2012 09:30:43 +0000 (12:30 +0300)
less/mixins.less

index e1e06bd2a619154d93e9027d3a4258ed444232ad..b6c0709163c1d5bdad248a14b0cbe421503d2d1d 100644 (file)
     background-image: -webkit-gradient(linear, 0 0, 100% 0, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
     background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
     background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
-    background-image: linear-gradient(left, @startColor, @endColor); // Le standard, IE10
+    background-image: linear-gradient(to right, @startColor, @endColor); // Le standard, IE10
     background-repeat: repeat-x;
     filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down
   }
     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); // The standard, IE10
+    background-image: linear-gradient(to bottom, @startColor, @endColor); // The 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
   }