mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-18 13:30:23 +00:00
Merge pull request #30 from sankage/master
color-stop() not supported in mozilla gradients
This commit is contained in:
commit
5a2d1abfbf
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@
|
|||
background-repeat: no-repeat;
|
||||
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: -moz-linear-gradient(@startColor, @midColor @colorStop*100%, @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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue