diff options
| author | Mark Otto <[email protected]> | 2012-06-04 08:47:41 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-06-04 08:47:41 -0700 |
| commit | 9cceb0bba7927d481ffe7f6122f8db6863444d3d (patch) | |
| tree | 447d87f55aa875f3438e1df6e6441ea837b74e7e /less | |
| parent | 7875e4833cb7d00db2967078fd6f51adbfd4a351 (diff) | |
| parent | 452d8c1df0fe75acfc9431a0b0f349f85a6c1fd1 (diff) | |
| download | bootstrap-9cceb0bba7927d481ffe7f6122f8db6863444d3d.tar.xz bootstrap-9cceb0bba7927d481ffe7f6122f8db6863444d3d.zip | |
Merge branch '2.0.4-wip' of https://github.com/wachunga/bootstrap into wachunga-2.0.4-wip
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/mixins.less b/less/mixins.less index c3b57ed14..4f204d1af 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -367,7 +367,7 @@ background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10 background-image: linear-gradient(left, @startColor, @endColor); // Le standard background-repeat: repeat-x; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",@startColor,@endColor)); // IE9 and down + filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down } .vertical(@startColor: #555, @endColor: #333) { background-color: mix(@startColor, @endColor, 60%); @@ -378,7 +378,7 @@ background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10 background-image: linear-gradient(top, @startColor, @endColor); // The standard background-repeat: repeat-x; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down + filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down } .directional(@startColor: #555, @endColor: #333, @deg: 45deg) { background-color: @endColor; @@ -398,7 +398,7 @@ background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor); background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor); background-repeat: no-repeat; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down, gets no color-stop at all for proper fallback + 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 } .radial(@innerColor: #555, @outerColor: #333) { background-color: @outerColor; |
