0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

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
This commit is contained in:
Mark Otto 2017-07-16 12:15:21 -07:00 committed by Mark Otto
parent 7c452ac607
commit 11299fe47c

View File

@ -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">
{% 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>
</div>
{% highlight html %}
<button class="btn">
Profile <span class="badge badge-secondary">9</span>
<span class="sr-only">unread messages</span>
</button>
{% endhighlight %}
{% endexample %}
## Contextual variations