]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
disabled links part of the examples now
authorMark Otto <otto@github.com>
Wed, 9 Jul 2014 17:52:48 +0000 (10:52 -0700)
committerMark Otto <otto@github.com>
Wed, 9 Jul 2014 17:52:48 +0000 (10:52 -0700)
docs/_includes/components/navs.html

index 055418d50f48222a710346288b3793807351060e..5fc151b1e4a1e42ec01f1292c7daffdf9640fe9b 100644 (file)
 {% endhighlight %}
 
 
-  <h2 id="nav-disabled-links">Disabled links</h2>
-  <p>For any nav component (tabs or pills), add <code>.disabled</code> for <strong>gray links and no hover effects</strong>.</p>
-
-  <div class="bs-callout bs-callout-warning">
-    <h4>Link functionality not impacted</h4>
-    <p>This class will only change the <code>&lt;a&gt;</code>'s appearance, not its functionality. Use custom JavaScript to disable links here.</p>
-  </div>
-
-  <div class="bs-example">
-    <ul class="nav nav-pills" role="tablist">
-      <li><a href="#">Clickable link</a></li>
-      <li><a href="#">Clickable link</a></li>
-      <li class="disabled"><a href="#">Disabled link</a></li>
-    </ul>
-  </div>
-{% highlight html %}
-<ul class="nav nav-pills" role="tablist">
-  ...
-  <li class="disabled"><a href="#">Disabled link</a></li>
-  ...
-</ul>
-{% endhighlight %}
-
-
   <h2 id="nav-dropdowns">Using dropdowns</h2>
   <p>Add dropdown menus with a little extra HTML and the <a href="../javascript/#dropdowns">dropdowns JavaScript plugin</a>.</p>