]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update badges in buttons examples
authorMark Otto <markdotto@gmail.com>
Sun, 16 Jul 2017 19:15:21 +0000 (12:15 -0700)
committerMark Otto <markd.otto@gmail.com>
Fri, 11 Aug 2017 06:00:37 +0000 (23:00 -0700)
- 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

docs/4.0/components/badge.md

index 4e80828a440b68a26545eeb5dca507df060fc98f..0a4c2427e075bfea4948936741b2705bf248f065 100644 (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">
-<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