diff options
| author | sankage <[email protected]> | 2011-08-21 02:16:04 -0300 |
|---|---|---|
| committer | sankage <[email protected]> | 2011-08-21 02:16:04 -0300 |
| commit | f824009e20870596d4b75a933e5e827a41e6e7cf (patch) | |
| tree | 5ac0b5a6701d301329d7ccc2208fa377d350b872 /lib | |
| parent | ee6f3077c0f395c18b7a99ff46980162a097d35b (diff) | |
| download | bootstrap-f824009e20870596d4b75a933e5e827a41e6e7cf.tar.xz bootstrap-f824009e20870596d4b75a933e5e827a41e6e7cf.zip | |
mozilla doesn't support color-stop() function in gradients
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/preboot.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/preboot.less b/lib/preboot.less index 3e53dcf9b..9aad126d3 100644 --- a/lib/preboot.less +++ b/lib/preboot.less @@ -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); |
