From: Divya Manian Date: Fri, 19 Aug 2011 19:53:19 +0000 (-0700) Subject: adding o/ms gradient and unprefixed one X-Git-Tag: v1.1.0~29^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36b41f2e7a47bb2b7ffdf5bdb2d965ee73d35255;p=thirdparty%2Fbootstrap.git adding o/ms gradient and unprefixed one --- diff --git a/lib/preboot.less b/lib/preboot.less index e7d5cad685..38b81f7015 100644 --- a/lib/preboot.less +++ b/lib/preboot.less @@ -255,6 +255,9 @@ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor)); background-image: -webkit-linear-gradient(@startColor, color-stop(@colorStop, @midColor), @endColor); background-image: -moz-linear-gradient(@startColor, color-stop(@midColor, @colorStop), @endColor); + background-image: -ms-linear-gradient(@startColor, color-stop(@midColor, @colorStop), @endColor); + background-image: -o-linear-gradient(@startColor, color-stop(@midColor, @colorStop), @endColor); + background-image: linear-gradient(@startColor, color-stop(@midColor, @colorStop), @endColor); } }