diff options
| author | Mark Otto <[email protected]> | 2014-03-06 21:40:22 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-06 21:40:22 -0800 |
| commit | 0c9308a3b29be6d56c582dce33092164be7997b4 (patch) | |
| tree | 25736e079084e5e3b0220fec92739c81448d1f54 /docs/components.html | |
| parent | c8614c0f15f0ce78426c6403e57aff22c3ce2beb (diff) | |
| download | bootstrap-0c9308a3b29be6d56c582dce33092164be7997b4.tar.xz bootstrap-0c9308a3b29be6d56c582dce33092164be7997b4.zip | |
Rewrite the disabled list group items to simplify styles
Diffstat (limited to 'docs/components.html')
| -rw-r--r-- | docs/components.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/components.html b/docs/components.html index 5780c4a31..cb3ca9f14 100644 --- a/docs/components.html +++ b/docs/components.html @@ -2650,6 +2650,31 @@ body { padding-bottom: 70px; } </div> {% endhighlight %} + <h3 id="list-group-disabled">Disabled items</h3> + <p>Add <code>.disabled</code> to a <code>.list-group-item</code> to gray it out to appear disabled.</p> + <div class="bs-example"> + <div class="list-group"> + <a href="#" class="list-group-item disabled"> + Cras justo odio + </a> + <a href="#" class="list-group-item">Dapibus ac facilisis in</a> + <a href="#" class="list-group-item">Morbi leo risus</a> + <a href="#" class="list-group-item">Porta ac consectetur ac</a> + <a href="#" class="list-group-item">Vestibulum at eros</a> + </div> + </div> +{% highlight html %} +<div class="list-group"> + <a href="#" class="list-group-item disabled"> + Cras justo odio + </a> + <a href="#" class="list-group-item">Dapibus ac facilisis in</a> + <a href="#" class="list-group-item">Morbi leo risus</a> + <a href="#" class="list-group-item">Porta ac consectetur ac</a> + <a href="#" class="list-group-item">Vestibulum at eros</a> +</div> +{% endhighlight %} + <h3 id="list-group-contextual-classes">Contextual classes</h3> <p>Use contextual classes to style list items, default or linked. Also includes <code>.active</code> state.</p> <div class="bs-example"> |
