From 7ef7547a1421825cb73382ad6317aba8affe3dc8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 20 Feb 2012 12:38:49 -0800 Subject: add horizontal divider support to nav list, including documentation for it, per #2106 --- docs/components.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html index 895d62f75..046bd7280 100644 --- a/docs/components.html +++ b/docs/components.html @@ -542,8 +542,18 @@

Application-style navigation

Nav lists provide a simple and easy way to build groups of nav links with optional headers. They're best used in sidebars like the Finder in OS X.

Structurally, they're built on the same core nav styles as tabs and pills, so usage and customization are straightforward.

+

With icons

Nav lists are also easy to equip with icons. Add the proper <i> tag with class and you're set.

+

Horizontal dividers

+

Add a horizontal divider by creating an empty list item with the class .divider, like so:

+
+<ul class="nav nav-list">
+  ...
+  <li class="divider"></li>
+  ...
+</ul>
+

Example nav list

@@ -557,6 +567,7 @@
  • Profile
  • Settings
  • +
  • Help
  • @@ -587,6 +598,7 @@
  • Profile
  • Settings
  • +
  • Help
  • -- cgit v1.2.3