aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorChad Smith <[email protected]>2013-05-21 16:29:35 -0400
committerChad Smith <[email protected]>2013-05-21 16:29:35 -0400
commitc47d9932cb8a9d8dedf900f62918e70f7a1f5a50 (patch)
treed3eda47a9e5e21477444a49a5dfaed8ba459abeb /less
parent230d6de88aac73077a01f3d66d2bd498d553cb7e (diff)
downloadbootstrap-c47d9932cb8a9d8dedf900f62918e70f7a1f5a50.tar.xz
bootstrap-c47d9932cb8a9d8dedf900f62918e70f7a1f5a50.zip
Found editor spacing issues with tabs instead of spaces, formatting to fit the entrance criteria
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 779e121a9..bdd787166 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -257,8 +257,8 @@
}
.vertical(@startColor: #555, @endColor: #333, @startPercent: 0%, @endPercent: 100%) {
background-color: @endColor;
- background-image: -webkit-gradient(linear, 0 @startPercent, 0 @endPercent, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
- background-image: -webkit-linear-gradient(top, @startColor, @startPercent, @endColor, @endPercent); // Safari 5.1+, Chrome 10+
+ background-image: -webkit-gradient(linear, 0 @startPercent, 0 @endPercent, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
+ background-image: -webkit-linear-gradient(top, @startColor, @startPercent, @endColor, @endPercent); // Safari 5.1+, Chrome 10+
background-image: -moz-linear-gradient(top, @startColor @startPercent, @endColor @endPercent); // FF 3.6+
background-image: linear-gradient(to bottom, @startColor @startPercent, @endColor @endPercent); // Standard, IE10
background-repeat: repeat-x;