Commit 5a2d1abf authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #30 from sankage/master

color-stop() not supported in mozilla gradients
parents 2fcb6777 f824009e
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment