Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2018-04-01 00:45:23 +0300
committerMark Otto <markd.otto@gmail.com>2018-04-01 08:02:47 +0300
commitb72bd051ab605c5de9ed21764d8e696d3aba2e5c (patch)
tree9312100f225c4a0460448dc3cc8571a9def97259 /docs
parent3417c54ad757294e9ff5ca68e99585f87803a089 (diff)
document new text color utils
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/utilities/colors.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/4.0/utilities/colors.md b/docs/4.0/utilities/colors.md
index 6eccb597da..acfcf2475a 100644
--- a/docs/4.0/utilities/colors.md
+++ b/docs/4.0/utilities/colors.md
@@ -11,8 +11,11 @@ toc: true
{% capture example %}
{% for color in site.data.theme-colors %}
<p class="text-{{ color.name }}{% if color.name == "light" %} bg-dark{% endif %}">.text-{{ color.name }}</p>{% endfor %}
+<p class="text-body">.text-body</p>
<p class="text-muted">.text-muted</p>
<p class="text-white bg-dark">.text-white</p>
+<p class="text-black-50">.text-black-50</p>
+<p class="text-white-50 bg-dark">.text-white-50</p>
{% endcapture %}
{% include example.html content=example %}