aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBardi Harborow <[email protected]>2016-12-23 08:41:31 +1100
committerMark Otto <[email protected]>2016-12-22 13:41:31 -0800
commit855a67b1d6364be9bf730871dd4914d8d760589d (patch)
treeb84b6fb490c894cb45110d69ae2bfe8f295496c5 /docs
parentb01f5a1a385bbb224cea68a9a5d73fdb586c33f3 (diff)
downloadbootstrap-855a67b1d6364be9bf730871dd4914d8d760589d.tar.xz
bootstrap-855a67b1d6364be9bf730871dd4914d8d760589d.zip
Remove IE9 browser hacks. (#21393)
Diffstat (limited to 'docs')
-rw-r--r--docs/components/buttons.md4
-rw-r--r--docs/components/forms.md2
-rw-r--r--docs/content/reboot.md2
3 files changed, 1 insertions, 7 deletions
diff --git a/docs/components/buttons.md b/docs/components/buttons.md
index 02b14f913..fdec395de 100644
--- a/docs/components/buttons.md
+++ b/docs/components/buttons.md
@@ -105,10 +105,6 @@ Buttons will appear pressed (with a darker background, darker border, and inset
Make buttons look inactive by adding the `disabled` boolean attribute to any `<button>` element.
-{% callout info %}
-**Heads up!** IE9 and below render disabled buttons with gray, shadowed text that we can't override.
-{% endcallout %}
-
{% example html %}
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 4d2282d3f..f40d79fce 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -933,8 +933,6 @@ Custom `<select>` menus need only a custom class, `.custom-select` to trigger th
</select>
{% endexample %}
-Custom selects degrade nicely in IE9, receiving only a handful of overrides to remove the custom `background-image`. **Multiple selects (e.g., `<select multiple>`) are not currently supported.**
-
### File browser
The file input is the most gnarly of the bunch and require additional JavaScript if you'd like to hook them up with functional *Choose file...* and selected file name text.
diff --git a/docs/content/reboot.md b/docs/content/reboot.md
index e37f23d7d..08ad15a6a 100644
--- a/docs/content/reboot.md
+++ b/docs/content/reboot.md
@@ -311,7 +311,7 @@ The `<abbr>` element receives basic styling to make it stand out amongst paragra
## HTML5 `[hidden]` attribute
-HTML5 adds [a new global attribute named `[hidden]`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/hidden), which is styled as `display: none` by default. Borrowing an idea from [PureCSS](http://purecss.io), we improve upon this default by making `[hidden] { display: none !important; }` to help prevent its `display` from getting accidentally overridden. While `[hidden]` isn't natively supported by IE9-10, the explicit declaration in our CSS gets around that problem.
+HTML5 adds [a new global attribute named `[hidden]`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/hidden), which is styled as `display: none` by default. Borrowing an idea from [PureCSS](http://purecss.io), we improve upon this default by making `[hidden] { display: none !important; }` to help prevent its `display` from getting accidentally overridden. While `[hidden]` isn't natively supported by IE10, the explicit declaration in our CSS gets around that problem.
{% highlight html %}
<input type="text" hidden>