<p>Button styles can be applied to anything with the <code>.btn</code> applied. Typically you’ll want to apply these to only <code><a></code>, <code><button></code>, and select <code><input></code> elements. Here’s how it looks:</p>
<p>Fancy larger or smaller buttons? Have at it!</p>
...
...
@@ -855,6 +849,7 @@
</div>
<h3>Disabled state</h3>
<p>For buttons that are not active or are disabled by the app for one reason or another, use the disabled state. That’s <code>.disabled</code> for links and <code>:disabled</code> for <code><button></code> elements.</p>
<p><strong>Note:</strong> If you're developing for older browsers like IE8 or below -- you're going to want to use the <code>.disabled</code> class for <code><button></code> elements as well.
<h4>Links</h4>
<divclass="well">
<ahref="#"class="btn large primary disabled">Primary action</a>
...
...
@@ -862,8 +857,10 @@
</div>
<h4>Buttons</h4>
<divclass="well">
<buttonclass="btn large primary"disabled>Primary action</button>
<buttonclass="btn large"disabled>Action</button>
<form>
<buttonclass="btn large primary disabled"disabled>Primary action</button>
<buttonclass="btn large disabled"disabled>Action</button>
</form>
</div>
</div>
</div>
...
...
@@ -878,28 +875,30 @@
<h2>Fixed topbar</h2>
<divclass="topbar-wrapper"style="z-index: 5;">
<divclass="topbar">
<divclass="container fixed">
<h3><ahref="#">Project Name</a></h3>
<ul>
<liclass="active"><ahref="#">Home</a></li>
<li><ahref="#">Link</a></li>
<li><ahref="#">Link</a></li>
<li><ahref="#">Link</a></li>
</ul>
<formaction="">
<inputtype="text"placeholder="Search"/>
</form>
<ulclass="nav secondary-nav">
<liclass="menu">
<ahref="#"class="menu">Dropdown</a>
<ulclass="menu-dropdown">
<li><ahref="#">Secondary link</a></li>
<li><ahref="#">Something else here</a></li>
<liclass="divider"></li>
<li><ahref="#">Another link</a></li>
</ul>
</li>
</ul>
<divclass="fill">
<divclass="container fixed">
<h3><ahref="#">Project Name</a></h3>
<ul>
<liclass="active"><ahref="#">Home</a></li>
<li><ahref="#">Link</a></li>
<li><ahref="#">Link</a></li>
<li><ahref="#">Link</a></li>
</ul>
<formaction="">
<inputtype="text"placeholder="Search"/>
</form>
<ulclass="nav secondary-nav">
<liclass="menu">
<ahref="#"class="menu">Dropdown</a>
<ulclass="menu-dropdown">
<li><ahref="#">Secondary link</a></li>
<li><ahref="#">Something else here</a></li>
<liclass="divider"></li>
<li><ahref="#">Another link</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div><!-- topbar-wrapper -->
...
...
@@ -1098,7 +1097,7 @@
<p>Modals—dialogs or lightboxes—are great for contextual actions in situations where it’s important that the background context be maintained.</p>