From 94e256c0162748dcddd6401d57a186576254f884 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 1 Feb 2013 22:56:09 -0800 Subject: Refactor navbar dividers * Instead of .divider-vertical, use .divider * Makes use of .nav-divider mixin * Dividers are horizontal to start, matching the default state of navbar nav links * Dividers become vertical above 768px via media queries --- docs/components.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html index 4293e43bf..ade79e7b5 100644 --- a/docs/components.html +++ b/docs/components.html @@ -831,17 +831,17 @@ <li><a href="#">Link</a></li> </ul> -

You can easily add dividers to your nav links with an empty list item and a simple class. Just add this between links:

+

You can easily add dividers to your nav links with an empty list item and a simple class. Just add the appropriate class to <li> elements between links. Dividers will be horizontal to start, but at resolutions above 768px they become vertical with the navigation.

@@ -849,7 +849,7 @@
 <ul class="nav">
   ...
-  <li class="divider-vertical"></li>
+  <li class="divider"></li>
   ...
 </ul>
 
@@ -999,7 +999,7 @@