aboutsummaryrefslogtreecommitdiff
path: root/components.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-05 15:30:28 -0700
committerMark Otto <[email protected]>2013-08-05 15:30:28 -0700
commitc4281f39190b99ed543b046430e32ff488092ecd (patch)
tree5eab86ca1606061950675c2c01ad928c95a31899 /components.html
parent844df9e0011c0dff5900bcbed3f1146564c0103c (diff)
downloadbootstrap-c4281f39190b99ed543b046430e32ff488092ecd.tar.xz
bootstrap-c4281f39190b99ed543b046430e32ff488092ecd.zip
Update labels to include a base class
* Builds on the new button styles by requiring a `.btn-default` for the regular, gray labels * Updates components examples to show new stuff
Diffstat (limited to 'components.html')
-rw-r--r--components.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/components.html b/components.html
index bf8c45afe..8ce62ae3e 100644
--- a/components.html
+++ b/components.html
@@ -1629,28 +1629,28 @@ body { padding-bottom: 70px; }
<h3>Example</h3>
<div class="bs-example">
- <h1>Example heading <span class="label">New</span></h1>
- <h2>Example heading <span class="label">New</span></h2>
- <h3>Example heading <span class="label">New</span></h3>
- <h4>Example heading <span class="label">New</span></h4>
- <h5>Example heading <span class="label">New</span></h5>
- <h6>Example heading <span class="label">New</span></h6>
+ <h1>Example heading <span class="label label-default">New</span></h1>
+ <h2>Example heading <span class="label label-default">New</span></h2>
+ <h3>Example heading <span class="label label-default">New</span></h3>
+ <h4>Example heading <span class="label label-default">New</span></h4>
+ <h5>Example heading <span class="label label-default">New</span></h5>
+ <h6>Example heading <span class="label label-default">New</span></h6>
</div>
{% highlight html %}
-<h3>Example heading <span class="label">New</span></h3>
+<h3>Example heading <span class="label label-default">New</span></h3>
{% endhighlight %}
<h3>Available variations</h3>
<p>Add any of the below mentioned modifier classes to change the appearance of a label.</p>
<div class="bs-example">
- <span class="label">Default</span>
+ <span class="label label-default">Default</span>
<span class="label label-success">Success</span>
<span class="label label-warning">Warning</span>
<span class="label label-danger">Danger</span>
<span class="label label-info">Info</span>
</div>
{% highlight html %}
-<span class="label">Default</span>
+<span class="label label-default">Default</span>
<span class="label label-success">Success</span>
<span class="label label-warning">Warning</span>
<span class="label label-danger">Danger</span>