aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-26 11:10:16 -0800
committerMark Otto <[email protected]>2012-01-26 11:10:16 -0800
commit358e3a53f77398363ba53108e6d2b1cdfaebf2c6 (patch)
tree511a8da7d3a9f70cf10fdbc41fed1992d275b518 /docs/base-css.html
parentb8c1950cbfbb48d49f79b1e36f8c8294b19ed57d (diff)
parentedef89f30efd73e5fca9952eef48136f8264aa93 (diff)
downloadbootstrap-358e3a53f77398363ba53108e6d2b1cdfaebf2c6.tar.xz
bootstrap-358e3a53f77398363ba53108e6d2b1cdfaebf2c6.zip
Merge branch 'phopkins-ie_buttons' into 2.0-wip
Diffstat (limited to 'docs/base-css.html')
-rw-r--r--docs/base-css.html15
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/base-css.html b/docs/base-css.html
index bbe7ecd88..ebc6285dc 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -432,10 +432,10 @@
</tr>
<tr>
<td>
- <span class="label notice">Notice</span>
+ <span class="label info">Info</span>
</td>
<td>
- <code>&lt;span class="label notice"&gt;Notice&lt;/span&gt;</code>
+ <code>&lt;span class="label info"&gt;Info&lt;/span&gt;</code>
</td>
</tr>
</tbody>
@@ -1210,6 +1210,8 @@
+<!-- Buttons
+================================================== -->
<section id="buttons">
<div class="page-header">
<h1>Buttons</h1>
@@ -1278,9 +1280,9 @@
<a href="#" class="btn small">Action</a>
</p>
</div>
- <div class="span8">
+ <div class="span4">
<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>&lt;button&gt;</code> elements.</p>
+ <p>For disabled buttons, use <code>.disabled</code> for links and <code>:disabled</code> for <code>&lt;button&gt;</code> elements.</p>
<p>
<a href="#" class="btn large primary disabled">Primary action</a>
<a href="#" class="btn large disabled">Action</a>
@@ -1290,6 +1292,11 @@
<button class="btn large" disabled>Action</button>
</p>
</div>
+ <div class="span4">
+ <h3>Cross browser compatibility</h3>
+ <p>In IE9, we drop the gradient on all buttons in favor of rounded corners as IE9 doesn't crop background gradients to the corners.</p>
+ <p>Related, IE9 jankifies disabled <code>button</code> elements, rendering text gray with a nasty text-shadow&mdash;unfortunately we can't fix this.</p>
+ </div>
</div>
<br>