aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-04-30 17:26:37 -0700
committerMark Otto <[email protected]>2014-04-30 17:26:37 -0700
commitabc797696d9f0b7ad5768092aedcc4620171bfe9 (patch)
treee473560de773e81128c7e49d2bb0ca428f4a9b41 /docs/_includes
parent2c1fe5374e227a4a50cc90ee4de98fc57fda9172 (diff)
parent43b6d6c2f879b08c682433adfd6a8a78622500b3 (diff)
downloadbootstrap-abc797696d9f0b7ad5768092aedcc4620171bfe9.tar.xz
bootstrap-abc797696d9f0b7ad5768092aedcc4620171bfe9.zip
Merge pull request #13437 from saas786/master
fixes #13367
Diffstat (limited to 'docs/_includes')
-rw-r--r--docs/_includes/css/less.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/_includes/css/less.html b/docs/_includes/css/less.html
index c07153318..eadbda775 100644
--- a/docs/_includes/css/less.html
+++ b/docs/_includes/css/less.html
@@ -378,10 +378,10 @@ a {
{% highlight scss %}
#gradient > .striped(#333; 45deg);
{% endhighlight %}
- <p>Up the ante and use three colors instead. Set the first color, the second color, the second color's color stop (a decimal value like 0.25), and the third color with these mixins:</p>
+ <p>Up the ante and use three colors instead. Set the first color, the second color, the second color's color stop (a percentage value like 25%), and the third color with these mixins:</p>
{% highlight scss %}
-#gradient > .vertical-three-colors(#777; #333; .25; #000);
-#gradient > .horizontal-three-colors(#777; #333; .25; #000);
+#gradient > .vertical-three-colors(#777; #333; 25%; #000);
+#gradient > .horizontal-three-colors(#777; #333; 25%; #000);
{% endhighlight %}
<p><strong>Heads up!</strong> Should you ever need to remove a gradient, be sure to remove any IE-specific <code>filter</code> you may have added. You can do that by using the <code>.reset-filter()</code> mixin alongside <code>background-image: none;</code>.</p>