]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Adds text-muted and text-white to the examples on color utilities (#23877)
authorAndres Galante <agalante@gmail.com>
Tue, 3 Oct 2017 01:58:33 +0000 (18:58 -0700)
committerMark Otto <markd.otto@gmail.com>
Tue, 3 Oct 2017 01:58:33 +0000 (18:58 -0700)
docs/4.0/utilities/colors.md

index ed4ba10664f00d9545264f5d16e5e9bd35ca6be8..57afcc6ea5cb45e8700f77fea13c9c3034dbf253 100644 (file)
@@ -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.