diff options
| author | Mark Otto <[email protected]> | 2013-04-09 10:43:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-04-09 10:43:37 -0700 |
| commit | 24f8d9e1374d88f852402f71de0f728d1e8d62ed (patch) | |
| tree | 46db9478d4ac2cc92aed2fc25b2db89e827723ef /docs/docs.html | |
| parent | 1a546278b93a08817152736247469c1155ae3ae2 (diff) | |
| download | bootstrap-24f8d9e1374d88f852402f71de0f728d1e8d62ed.tar.xz bootstrap-24f8d9e1374d88f852402f71de0f728d1e8d62ed.zip | |
don't use table for label variatons
Diffstat (limited to 'docs/docs.html')
| -rw-r--r-- | docs/docs.html | 64 |
1 files changed, 14 insertions, 50 deletions
diff --git a/docs/docs.html b/docs/docs.html index 0ae2198ad..e7d7efb58 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -3894,56 +3894,20 @@ For example, <code><section></code> should be wrapped as inline. <h3>Available variations</h3> <p>Add any of the below mentioned modifier classes to change the appearance of a label.</p> - <table class="table table-bordered table-striped"> - <thead> - <tr> - <th>Labels</th> - <th>Markup</th> - </tr> - </thead> - <tbody> - <tr> - <td> - <span class="label">Default</span> - </td> - <td> - <code><span class="label">Default</span></code> - </td> - </tr> - <tr> - <td> - <span class="label label-success">Success</span> - </td> - <td> - <code><span class="label label-success">Success</span></code> - </td> - </tr> - <tr> - <td> - <span class="label label-warning">Warning</span> - </td> - <td> - <code><span class="label label-warning">Warning</span></code> - </td> - </tr> - <tr> - <td> - <span class="label label-danger">Danger</span> - </td> - <td> - <code><span class="label label-danger">Danger</span></code> - </td> - </tr> - <tr> - <td> - <span class="label label-info">Info</span> - </td> - <td> - <code><span class="label label-info">Info</span></code> - </td> - </tr> - </tbody> - </table> + <div class="bs-docs-example"> + <span class="label">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 linenos %} +<span class="label">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> +{% endhighlight %} </div> |
