Badges
The notification indicator consists of a circle with a number inside. We call this a pill or a badge. The notification should only be displayed if there is one or more items. Read more about notifications/badges in the UX Guidelines.
Use when
- You need to attract the user's attention to something that needs to be addressed.
Design
+99
+99
+99
+99
+99
More example
Adapts to active nav states
<!-- Badges - .badge -->
<span class="badge">+99</span>
<!-- Color versions -->
<span class="badge badge-info">3</span>
<span class="badge badge-success">42</span>
<span class="badge badge-warning">24</span>
<span class="badge badge-danger">3</span>
<!-- More example section -->
<button type="button" class="btn">
Button <span class="badge">3</span>
</button>
<div class="nav nav-pills nav-pills-primary">
<a class="active" href="" role="button" aria-pressed="true">
Active <span class="badge">3</span>
</a>
<a href="" role="button">
Normal <span class="badge">42</span>
</a>
...
<a class="disabled" href="" role="button" aria-disabled="true">
Disabled <span class="badge">3</span>
</a>
</div>