aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPete Hopkins <[email protected]>2012-01-26 13:26:14 -0500
committerPete Hopkins <[email protected]>2012-01-26 13:26:14 -0500
commit7117db499f0b02da32a8d08f6371cab1f6b53338 (patch)
treebc83f03d14ecf57ba3172dfed792476fd542562d /lib
parent2c2f8ebe3a090bff0254aba10b745dae10bf242d (diff)
downloadbootstrap-7117db499f0b02da32a8d08f6371cab1f6b53338.tar.xz
bootstrap-7117db499f0b02da32a8d08f6371cab1f6b53338.zip
Makes default button the tiniest bit of gray for IE<=9
Diffstat (limited to 'lib')
-rw-r--r--lib/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mixins.less b/lib/mixins.less
index b8c969ea8..dd331ebf2 100644
--- a/lib/mixins.less
+++ b/lib/mixins.less
@@ -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);