From 089e3334a710ae5fddea3ec5bb1a83a8f786196c Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 19 Feb 2019 16:44:55 +0200 Subject: [PATCH] Remove Internet Explorer leftovers. --- site/_includes/scripts.html | 1 - .../js/src/ie-emulation-modes-warning.js | 47 ------------------- site/docs/4.3/components/forms.md | 11 +---- site/docs/4.3/components/media-object.md | 9 ---- site/docs/4.3/content/images.md | 7 --- .../4.3/getting-started/browsers-devices.md | 7 ++- site/docs/4.3/layout/grid.md | 2 +- 7 files changed, 6 insertions(+), 78 deletions(-) delete mode 100644 site/docs/4.3/assets/js/src/ie-emulation-modes-warning.js diff --git a/site/_includes/scripts.html b/site/_includes/scripts.html index 184ac79a29..5b7f380b18 100644 --- a/site/_includes/scripts.html +++ b/site/_includes/scripts.html @@ -16,5 +16,4 @@ - {%- endif -%} diff --git a/site/docs/4.3/assets/js/src/ie-emulation-modes-warning.js b/site/docs/4.3/assets/js/src/ie-emulation-modes-warning.js deleted file mode 100644 index 610128e273..0000000000 --- a/site/docs/4.3/assets/js/src/ie-emulation-modes-warning.js +++ /dev/null @@ -1,47 +0,0 @@ -// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT -// IT'S ALL JUST JUNK FOR OUR DOCS! -// ++++++++++++++++++++++++++++++++++++++++++ - -// Intended to prevent false-positive bug reports about Bootstrap not working properly in old versions of IE due to folks testing using IE's unreliable emulation modes. -(function () { - 'use strict' - - function emulatedIEMajorVersion() { - var groups = /MSIE ([0-9.]+)/.exec(window.navigator.userAgent) - if (groups === null) { - return null - } - var ieVersionNum = parseInt(groups[1], 10) - var ieMajorVersion = Math.floor(ieVersionNum) - return ieMajorVersion - } - - function actualNonEmulatedIEMajorVersion() { - // Detects the actual version of IE in use, even if it's in an older-IE emulation mode. - // IE JavaScript conditional compilation docs: https://msdn.microsoft.com/library/121hztk3%28v=vs.94%29.aspx - // @cc_on docs: https://msdn.microsoft.com/library/8ka90k2e%28v=vs.94%29.aspx - var jscriptVersion = new Function('/*@cc_on return @_jscript_version; @*/')() // eslint-disable-line no-new-func - if (typeof jscriptVersion === 'undefined') { - return 11 // IE11+ not in emulation mode - } - if (jscriptVersion < 9) { - return 8 // IE8 (or lower; haven't tested on IE<8) - } - return jscriptVersion // IE9 or IE10 in any mode, or IE11 in non-IE11 mode - } - - var ua = window.navigator.userAgent - if (ua.indexOf('Opera') > -1 || ua.indexOf('Presto') > -1) { - return // Opera, which might pretend to be IE - } - var emulated = emulatedIEMajorVersion() - if (emulated === null) { - return // Not IE - } - var nonEmulated = actualNonEmulatedIEMajorVersion() - - if (emulated !== nonEmulated) { - // eslint-disable-next-line no-alert - window.alert('WARNING: You appear to be using IE' + nonEmulated + ' in IE' + emulated + ' emulation mode.\nIE emulation modes can behave significantly differently from ACTUAL older versions of IE.\nPLEASE DON\'T FILE BOOTSTRAP BUGS based on testing in IE emulation modes!') - } -}()) diff --git a/site/docs/4.3/components/forms.md b/site/docs/4.3/components/forms.md index e655e21589..828bffca97 100644 --- a/site/docs/4.3/components/forms.md +++ b/site/docs/4.3/components/forms.md @@ -732,17 +732,10 @@ Add the `disabled` attribute to a `
` to disable all the controls withi {% capture callout %} ##### Caveat with anchors -By default, browsers will treat all native form controls (``, ``, `` controls with `.custom-range`. The track (the background) and thumb (the value) are both styled to appear the same across browsers. As only IE and Firefox support "filling" their track from the left or right of the thumb as a means to visually indicate progress, we do not currently support it. +Create custom `` controls with `.custom-range`. The track (the background) and thumb (the value) are both styled to appear the same across browsers. As only Firefox supports "filling" their track from the left or right of the thumb as a means to visually indicate progress, we do not currently support it. {% capture example %} diff --git a/site/docs/4.3/components/media-object.md b/site/docs/4.3/components/media-object.md index 32628e723f..0fbaf150b5 100644 --- a/site/docs/4.3/components/media-object.md +++ b/site/docs/4.3/components/media-object.md @@ -23,15 +23,6 @@ Below is an example of a single media object. Only two classes are required—th {% endcapture %} {% include example.html content=example %} -{% capture callout %} -##### Flexbug #12: Inline elements aren't treated as flex items - -Internet Explorer 10-11 do not render inline elements like links or images (or `::before` and `::after` pseudo-elements) as flex items. The only workaround is to set a non-inline `display` value (e.g., `block`, `inline-block`, or `flex`). We suggest using `.d-flex`, one of our [display utilities]({{ site.baseurl }}/docs/{{ site.docs_version }}/utilities/display/), as an easy fix. - -**Source:** [Flexbugs on GitHub](https://github.com/philipwalton/flexbugs#flexbug-12) -{% endcapture %} -{% include callout.html content=callout type="warning" %} - ## Nesting Media objects can be infinitely nested, though we suggest you stop at some point. Place nested `.media` within the `.media-body` of a parent media object. diff --git a/site/docs/4.3/content/images.md b/site/docs/4.3/content/images.md index 3ff822bed5..fa18ec2583 100644 --- a/site/docs/4.3/content/images.md +++ b/site/docs/4.3/content/images.md @@ -18,13 +18,6 @@ Images in Bootstrap are made responsive with `.img-fluid`. `max-width: 100%;` an Responsive image {% endhighlight %} -{% capture callout %} -##### SVG images and IE 10 - -In Internet Explorer 10, SVG images with `.img-fluid` are disproportionately sized. To fix this, add `width: 100% \9;` where necessary. This fix improperly sizes other image formats, so Bootstrap doesn't apply it automatically. -{% endcapture %} -{% include callout.html content=callout type="warning" %} - ## Image thumbnails In addition to our [border-radius utilities]({{ site.baseurl }}/docs/{{ site.docs_version }}/utilities/borders/), you can use `.img-thumbnail` to give an image a rounded 1px border appearance. diff --git a/site/docs/4.3/getting-started/browsers-devices.md b/site/docs/4.3/getting-started/browsers-devices.md index 078d9912d9..dcb6ed22a7 100644 --- a/site/docs/4.3/getting-started/browsers-devices.md +++ b/site/docs/4.3/getting-started/browsers-devices.md @@ -8,7 +8,7 @@ toc: true ## Supported browsers -Bootstrap supports the **latest, stable releases** of all major browsers and platforms. On Windows, **we support Internet Explorer 10-11 / Microsoft Edge**. +Bootstrap supports the **latest, stable releases** of all major browsers and platforms. On Windows, **we only support Microsoft Edge**. Alternative browsers which use the latest version of WebKit, Blink, or Gecko, whether directly or via the platform's web view API, are not explicitly supported. However, Bootstrap should (in most cases) display and function correctly in these browsers as well. More specific support information is provided below. @@ -23,7 +23,6 @@ not dead Chrome >= 45 Firefox >= 38 Edge >= 12 -Explorer >= 10 iOS >= 9 Safari >= 9 Android >= 4.4 @@ -105,7 +104,7 @@ Similarly, the latest versions of most desktop browsers are supported. Windows Supported Supported - Supported, IE10+ + Not supported Supported Supported Not supported @@ -121,7 +120,7 @@ For a list of some of the browser bugs that Bootstrap has to grapple with, see o ## Internet Explorer -Internet Explorer 10+ is supported; IE9 and down is not. Please be aware that some CSS3 properties and HTML5 elements are not fully supported in IE10, or require prefixed properties for full functionality. Visit [Can I use...](https://caniuse.com/) for details on browser support of CSS3 and HTML5 features. **If you require IE8-9 support, use Bootstrap 3.** +Internet Explorer 11 is not supported officially. However, if you build Bootstrap yourself, you can add the needed CSS prefixes and follow the instructions on the [JavaScript page]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/#compatibility-with-ie-11). Please note that this might break at any time. **If you require Internet Explorer 10/11 support, use Bootstrap 4.** ## Modals and dropdowns on mobile diff --git a/site/docs/4.3/layout/grid.md b/site/docs/4.3/layout/grid.md index a6f4ac5ab4..7a909bd9e7 100644 --- a/site/docs/4.3/layout/grid.md +++ b/site/docs/4.3/layout/grid.md @@ -350,7 +350,7 @@ Here's an example of customizing the Bootstrap grid at the large (`lg`) breakpoi ## Alignment -Use flexbox alignment utilities to vertically and horizontally align columns. **Internet Explorer 10-11 do not support vertical alignment of flex items when the flex container has a `min-height` as shown below.** [See Flexbugs #3 for more details.](https://github.com/philipwalton/flexbugs#flexbug-3) +Use flexbox alignment utilities to vertically and horizontally align columns. ### Vertical alignment