aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-07-16 12:15:21 -0700
committerMark Otto <[email protected]>2017-08-10 23:00:37 -0700
commit11299fe47c6af9bda33f1259393b3f86769d7517 (patch)
tree617018a2f08d03cb997c90f69c76e33905341d1e /docs
parent7c452ac60784031facc2872142c92fe1001d95ba (diff)
downloadbootstrap-11299fe47c6af9bda33f1259393b3f86769d7517.tar.xz
bootstrap-11299fe47c6af9bda33f1259393b3f86769d7517.zip
Update badges in buttons examples
- Given buttons a required modifier (.btn alone is incomplete) - Given the primary button, use a .badge-light for better contrast - Consolidate example and highlight code with a `{% example %}` block
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/badge.md26
1 files changed, 7 insertions, 19 deletions
diff --git a/docs/4.0/components/badge.md b/docs/4.0/components/badge.md
index 4e80828a4..0a4c2427e 100644
--- a/docs/4.0/components/badge.md
+++ b/docs/4.0/components/badge.md
@@ -30,33 +30,21 @@ Badges scale to match the size of the immediate parent element by using relative
Badges can be used as part of links or buttons to provide a counter.
-<div class="bd-example">
-<button class="btn">
- Notifications <span class="badge badge-secondary">4</span>
+{% example html %}
+<button class="btn btn-primary">
+ Notifications <span class="badge badge-light">4</span>
</button>
-</div>
+{% endexample %}
-{% highlight html %}
-<button class="btn">
- Notifications <span class="badge badge-secondary">4</span>
-</button>
-{% endhighlight %}
Note that depending on how they are used, badges may be confusing for users of screen readers and similar assistive technologies. While the styling of badges provides a visual cue as to their purpose, these users will simply be presented with the content of the badge. Depending on the specific situation, these badges may seem like random additional words or numbers at the end of a sentence, link or button. Unless the context is clear (as with the "Notifications" example, where it is arguably understandable that the "4" gives a count of the number of notifications), consider including additional context – for instance using a visually hidden piece of additional text.
-<div class="bd-example">
-<button class="btn">
- Profile <span class="badge badge-secondary">9</span>
- <span class="sr-only">unread messages</span>
-</button>
-</div>
-
-{% highlight html %}
+{% example html %}
<button class="btn">
- Profile <span class="badge badge-secondary">9</span>
+ Profile <span class="badge badge-light">9</span>
<span class="sr-only">unread messages</span>
</button>
-{% endhighlight %}
+{% endexample %}
## Contextual variations