<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 +846,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 +854,9 @@
</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,6 +871,7 @@
<h2>Fixed topbar</h2>
<divclass="topbar-wrapper"style="z-index: 5;">
<divclass="topbar">
<divclass="fill">
<divclass="container fixed">
<h3><ahref="#">Project Name</a></h3>
<ul>
...
...
@@ -902,6 +896,7 @@
</ul>
</div>
</div>
</div>
</div><!-- topbar-wrapper -->
<divclass="row">
<divclass="span5 columns">
...
...
@@ -1098,7 +1093,7 @@
<p>Modals—dialogs or lightboxes—are great for contextual actions in situations where it’s important that the background context be maintained.</p>