diff options
| author | Jacob Thornton <[email protected]> | 2011-08-21 18:07:47 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-08-21 18:07:47 -0700 |
| commit | e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e (patch) | |
| tree | e1d6e737b7f9351dbee9b6921004c8f1bfbe3015 /docs | |
| parent | 22dbf9d8e4fc5568d9d49b40d1c1020fbab064c9 (diff) | |
| download | bootstrap-e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e.tar.xz bootstrap-e1e4ceee3f72d0892bf84aa7a1c7f1bdb719032e.zip | |
fix disabled button for ie 8 and below
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html index 135483a83..a9351d861 100644 --- a/docs/index.html +++ b/docs/index.html @@ -857,6 +857,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> <div class="well"> <a href="#" class="btn large primary disabled">Primary action</a> @@ -864,8 +865,8 @@ </div> <h4>Buttons</h4> <div class="well"> - <button class="btn large primary" disabled>Primary action</button> - <button class="btn large" disabled>Action</button> + <button class="btn large primary disabled" disabled>Primary action</button> + <button class="btn large disabled" disabled>Action</button> </div> </div> </div> |
