Skip to content

Commit

Permalink
mozilla doesn't support color-stop() function in gradients
Browse files Browse the repository at this point in the history
  • Loading branch information
sankage committed Aug 21, 2011
1 parent ee6f307 commit f824009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/preboot.less
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f824009

Please sign in to comment.