aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-02-14 17:05:59 -0800
committerChris Rebert <[email protected]>2014-02-14 17:14:52 -0800
commitdabb5041a43dd2a50d126c5ab11ae34462ce58a8 (patch)
treeb476eabe1fc9225ce96c7609277f2107c0a9f909 /docs
parentaccc95ccd63f8aa903fa07bea55ef34794d84cc5 (diff)
downloadbootstrap-dabb5041a43dd2a50d126c5ab11ae34462ce58a8.tar.xz
bootstrap-dabb5041a43dd2a50d126c5ab11ae34462ce58a8.zip
Document caveats of `pointer-events: none` usage in btn.disabled
Refs #10049 Source for compatibility info: http://caniuse.com/#feat=pointer-events
Diffstat (limited to 'docs')
-rw-r--r--docs/css.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/css.html b/docs/css.html
index 6651215f5..750b84a35 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -1886,8 +1886,8 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<p>Add the <code>disabled</code> attribute to a <code>&lt;fieldset&gt;</code> to disable all the controls within the <code>&lt;fieldset&gt;</code> at once.</p>
<div class="bs-callout bs-callout-warning">
- <h4>Link functionality of <code>&lt;a&gt;</code> not impacted</h4>
- <p>This class will only change the appearance of <code>&lt;a class="btn btn-default"&gt;</code> buttons, not their functionality. Use custom JavaScript to disable links here.</p>
+ <h4>Caveat about link functionality of <code>&lt;a&gt;</code></h4>
+ <p>Our styles use <code>pointer-events: none</code> to try to disable the link functionality of <code>&lt;a class="btn btn-*"&gt;</code> buttons in this case, but that CSS property is not yet standardized and isn't fully supported in Opera 18 and below, or in Internet Explorer 11. So to be safe, use custom JavaScript to disable such links.</p>
</div>
<div class="bs-callout bs-callout-danger">
@@ -2292,8 +2292,8 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
We use <code>.disabled</code> as a utility class here, similar to the common <code>.active</code> class, so no prefix is required.
</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>
+ <h4>Link functionality caveat</h4>
+ <p>This class uses <code>pointer-events: none</code> to try to disable the link functionality of <code>&lt;a&gt;</code>s, but that CSS property is not yet standardized and isn't fully supported in Opera 18 and below, or in Internet Explorer 11. So to be safe, use custom JavaScript to disable such links.</p>
</div>
<div class="bs-callout bs-callout-warning">
<h4>Context-specific usage</h4>