aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-04-25 10:43:30 -0700
committerChris Rebert <[email protected]>2014-04-25 10:43:59 -0700
commitd42b1a2d2d0911de918bcd7ec37c7bd3568a18f3 (patch)
tree1e928b5396ac646911477a16d4c9ca11ab54371c /docs/_includes
parentcbb645323d6af70534faef50843fcb3902af66de (diff)
downloadbootstrap-d42b1a2d2d0911de918bcd7ec37c7bd3568a18f3.tar.xz
bootstrap-d42b1a2d2d0911de918bcd7ec37c7bd3568a18f3.zip
fix #13427
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 b6d46da29..c07153318 100644
--- a/docs/_includes/css/less.html
+++ b/docs/_includes/css/less.html
@@ -76,7 +76,7 @@
{% highlight scss %}
// Variables
@link-color: @brand-primary;
-@link-color-hover: darken(@link-color, 15%);
+@link-hover-color: darken(@link-color, 15%);
// Usage
a {
@@ -84,12 +84,12 @@ a {
text-decoration: none;
&:hover {
- color: @link-color-hover;
+ color: @link-hover-color;
text-decoration: underline;
}
}
{% endhighlight %}
- <p>Note that the <code>@link-color-hover</code> uses a function, another awesome tool from Less, to automagically create the right hover color. You can use <code>darken</code>, <code>lighten</code>, <code>saturate</code>, and <code>desaturate</code>.</p>
+ <p>Note that the <code>@link-hover-color</code> uses a function, another awesome tool from Less, to automagically create the right hover color. You can use <code>darken</code>, <code>lighten</code>, <code>saturate</code>, and <code>desaturate</code>.</p>
<h3 id="less-variables-typography">Typography</h3>
<p>Easily set your type face, text size, leading, and more with a few quick variables. Bootstrap makes use of these as well to provide easy typographic mixins.</p>