From: Andres Galante Date: Fri, 17 Nov 2017 04:57:49 +0000 (-0300) Subject: Change the text color to dark on bg color warning examples (#24805) X-Git-Tag: v4.0.0-beta.3~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8df34b075a1ffffcc90d37fc44fac07c4c5d5791;p=thirdparty%2Fbootstrap.git Change the text color to dark on bg color warning examples (#24805) --- diff --git a/docs/4.0/utilities/colors.md b/docs/4.0/utilities/colors.md index 10d6e5ae34..7543aa0bfc 100644 --- a/docs/4.0/utilities/colors.md +++ b/docs/4.0/utilities/colors.md @@ -30,7 +30,7 @@ Similar to the contextual text color classes, easily set the background of an el {% example html %} {% for color in site.data.theme-colors %} -
.bg-{{ color.name }}
{% endfor %} +
.bg-{{ color.name }}
{% endfor %}
.bg-white
{% endexample %} @@ -40,7 +40,7 @@ When `$enable-gradients` is set to true, you'll be able to use `.bg-gradient-` u {% example html %} {% for color in site.data.theme-colors %} -
.bg-gradient-{{ color.name }}
{% endfor %} +
.bg-gradient-{{ color.name }}
{% endfor %} {% endexample %} {% callout info %}