aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndres Galante <[email protected]>2017-10-02 18:58:33 -0700
committerMark Otto <[email protected]>2017-10-02 18:58:33 -0700
commit2f459afb979d893ac0d03d5d5550747589fa65bf (patch)
tree34c0b629eaa101f1716832a5b6c0cbc0a221186a /docs
parenta224387a21f40c1eb166a6f683f29feb437ded45 (diff)
downloadbootstrap-2f459afb979d893ac0d03d5d5550747589fa65bf.tar.xz
bootstrap-2f459afb979d893ac0d03d5d5550747589fa65bf.zip
Adds text-muted and text-white to the examples on color utilities (#23877)
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/utilities/colors.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/4.0/utilities/colors.md b/docs/4.0/utilities/colors.md
index ed4ba1066..57afcc6ea 100644
--- a/docs/4.0/utilities/colors.md
+++ b/docs/4.0/utilities/colors.md
@@ -9,6 +9,8 @@ toc: true
{% example html %}
{% for color in site.data.theme-colors %}
<p class="text-{{ color.name }}">.text-{{ color.name }}</p>{% endfor %}
+<p class="text-muted">.text-muted</p>
+<p class="text-white bg-dark p-2">.text-white</p>
{% endexample %}
Contextual text classes also work well on anchors with the provided hover and focus states. **Note that the `.text-white` class has no link styling.**
@@ -16,6 +18,8 @@ Contextual text classes also work well on anchors with the provided hover and fo
{% example html %}
{% for color in site.data.theme-colors %}
<p><a href="#" class="text-{{ color.name }}{% if color.name == "light" %} bg-gray{% endif %}">{{ color.name | capitalize }} link</a></p>{% endfor %}
+<p><a href="#" class="text-muted">Muted link</a></p>
+<p class="bg-dark p-2"><a href="#" class="text-white">White link</a></p>
{% endexample %}
Similar to the contextual text color classes, easily set the background of an element to any contextual class. Anchor components will darken on hover, just like the text classes. Background utilities **do not set `color`**, so in some cases you'll want to use `.text-*` utilities.