Makes default button the tiniest bit of gray for IE<=9

This commit is contained in:
Pete Hopkins 2012-01-26 13:26:14 -05:00
parent 2c2f8ebe3a
commit 7117db499f
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@
background-image: linear-gradient(@deg, @startColor, @endColor); // The standard
}
.vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
background-color: @midColor;
background-color: mix(@midColor, @endColor, 80%);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor);
background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);