0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Merge pull request #1 from nimbupani/patch-2

adding o/ms gradient and unprefixed one
This commit is contained in:
Mark Otto 2011-08-19 11:56:31 -07:00
commit a3b09530fb

View File

@ -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);
}
}