diff options
| author | Mark Otto <[email protected]> | 2012-04-18 09:47:30 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-04-18 09:47:30 -0700 |
| commit | 47b6e6bd80040cdaa50c27cb7eb11881df679eee (patch) | |
| tree | b13b92f512bf27e1ed17d13bf03d7b6adc327d9d /less/tests/css-tests.html | |
| parent | 62a0f5fdcb147df8ec1084af3feba1555bed5669 (diff) | |
| download | bootstrap-47b6e6bd80040cdaa50c27cb7eb11881df679eee.tar.xz bootstrap-47b6e6bd80040cdaa50c27cb7eb11881df679eee.zip | |
fix #3111, badge and label alignment with surrounding text
Diffstat (limited to 'less/tests/css-tests.html')
| -rw-r--r-- | less/tests/css-tests.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html index 58e25be61..a39dde53d 100644 --- a/less/tests/css-tests.html +++ b/less/tests/css-tests.html @@ -462,6 +462,10 @@ <!-- Tabs ================================================== --> +<div class="page-header"> + <h1>Tabs</h1> +</div> + <div class="tabbable tabs-left" style="margin-bottom: 18px;"> <ul class="nav nav-tabs"> <li class="active"><a href="#tab1" data-toggle="tab">Section 1</a></li> @@ -502,6 +506,30 @@ +<!-- Labels +================================================== --> + +<div class="page-header"> + <h1>Labels</h1> +</div> + +<div class="row"> + <div class="span4"> + <h4>Inline label</h4> + <p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Maecenas sed diam <span class="label label-warning">Label name</span> eget risus varius blandit sit amet non magna. Fusce <code>.class-name</code> dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p> + </div><!--/span--> + <div class="span4"> + <form class="form-horizontal"> + <label>Example label</label> + <input type="text" placeholder="Input"> <span class="help-inline"><span class="label">Hey!</span> Read this.</span> + </form> + </div><!--/span--> + <div class="span4"> + + </div><!--/span--> +</div><!--/row--> + + |
