aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsankage <[email protected]>2011-08-21 02:16:04 -0300
committersankage <[email protected]>2011-08-21 02:16:04 -0300
commitf824009e20870596d4b75a933e5e827a41e6e7cf (patch)
tree5ac0b5a6701d301329d7ccc2208fa377d350b872 /lib
parentee6f3077c0f395c18b7a99ff46980162a097d35b (diff)
downloadbootstrap-f824009e20870596d4b75a933e5e827a41e6e7cf.tar.xz
bootstrap-f824009e20870596d4b75a933e5e827a41e6e7cf.zip
mozilla doesn't support color-stop() function in gradients
Diffstat (limited to 'lib')
-rw-r--r--lib/preboot.less2
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);