diff options
| author | Mark Otto <[email protected]> | 2013-02-28 23:20:25 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-28 23:20:58 -0800 |
| commit | 5a30e52aac451369bf9a6abfc34c3c5d10b304d3 (patch) | |
| tree | a670e98960be0455056f4ef033a556bf37fca5e3 /docs/components.html | |
| parent | 4418c82888745139d4adf0b5ecf8c5b1b3d3c39c (diff) | |
| download | bootstrap-5a30e52aac451369bf9a6abfc34c3c5d10b304d3.tar.xz bootstrap-5a30e52aac451369bf9a6abfc34c3c5d10b304d3.zip | |
Fixes #6995: Add disabled navbar nav link support
Diffstat (limited to 'docs/components.html')
| -rw-r--r-- | docs/components.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components.html b/docs/components.html index b60dd1621..5727a1759 100644 --- a/docs/components.html +++ b/docs/components.html @@ -805,7 +805,7 @@ title: Components <ul class="nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#">Link</a></li> - <li><a href="#">Link</a></li> + <li class="disabled"><a href="#">Disabled</a></li> </ul> </div> </div><!-- /example --> @@ -813,7 +813,7 @@ title: Components <ul class="nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#">Link</a></li> - <li><a href="#">Link</a></li> + <li class="disabled"><a href="#">Disabled</a></li> </ul> {% endhighlight %} <p>You can easily add dividers to your nav links with an empty list item and a simple class. Just add the appropriate class to <code><li></code> elements between links. Dividers will be horizontal to start, but at resolutions above 768px they become vertical with the navigation.</p> |
