From c41897ca980a55cd91bae79e4e4d37ff93fd9d3b Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 13 Nov 2020 17:45:11 +0200 Subject: Fix caniuse.com redirects (#32147) --- scss/mixins/_image.scss | 2 +- site/_data/browser-features.yml | 6 +++--- site/docs/4.5/components/forms.md | 2 +- site/docs/4.5/components/navbar.md | 2 +- site/docs/4.5/examples/floating-labels/index.html | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scss/mixins/_image.scss b/scss/mixins/_image.scss index c971e038be..3aaa0d7046 100644 --- a/scss/mixins/_image.scss +++ b/scss/mixins/_image.scss @@ -26,7 +26,7 @@ // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio, // but doesn't convert dppx=>dpi. // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard. - // Compatibility info: https://caniuse.com/#feat=css-media-resolution + // Compatibility info: https://caniuse.com/css-media-resolution @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx only screen and (min-resolution: 2dppx) { // Standardized background-image: url($file-2x); diff --git a/site/_data/browser-features.yml b/site/_data/browser-features.yml index 8f75cb3af5..cc1a63369d 100644 --- a/site/_data/browser-features.yml +++ b/site/_data/browser-features.yml @@ -42,7 +42,7 @@ browser: > Edge summary: > - Implement the [`of ` clause](https://caniuse.com/#feat=css-nth-child-of) of the `:nth-child()` pseudo-class + Implement the [`of ` clause](https://caniuse.com/css-nth-child-of) of the `:nth-child()` pseudo-class upstream_bug: > UserVoice#15944476 origin: > @@ -52,7 +52,7 @@ browser: > Firefox summary: > - Implement the [`of ` clause](https://caniuse.com/#feat=css-nth-child-of) of the `:nth-child()` pseudo-class + Implement the [`of ` clause](https://caniuse.com/css-nth-child-of) of the `:nth-child()` pseudo-class upstream_bug: > Mozilla#854148 origin: > @@ -92,7 +92,7 @@ browser: > Chrome summary: > - Implement the [`of ` clause](https://caniuse.com/#feat=css-nth-child-of) of the `:nth-child()` pseudo-class + Implement the [`of ` clause](https://caniuse.com/css-nth-child-of) of the `:nth-child()` pseudo-class upstream_bug: > Chromium#304163 origin: > diff --git a/site/docs/4.5/components/forms.md b/site/docs/4.5/components/forms.md index 6058b44abd..2d75f738f5 100644 --- a/site/docs/4.5/components/forms.md +++ b/site/docs/4.5/components/forms.md @@ -745,7 +745,7 @@ While Bootstrap will apply these styles in all browsers, Internet Explorer 11 an ## Validation -Provide valuable, actionable feedback to your users with HTML5 form validation–[available in all our supported browsers](https://caniuse.com/#feat=form-validation). Choose from the browser default validation feedback, or implement custom messages with our built-in classes and starter JavaScript. +Provide valuable, actionable feedback to your users with HTML5 form validation–[available in all our supported browsers](https://caniuse.com/form-validation). Choose from the browser default validation feedback, or implement custom messages with our built-in classes and starter JavaScript. {% capture callout %} We are aware that currently the client-side custom validation styles and tooltips are not accessible, since they are not exposed to assistive technologies. While we work on a solution, we'd recommend either using the server-side option or the default browser validation method. diff --git a/site/docs/4.5/components/navbar.md b/site/docs/4.5/components/navbar.md index 195d407f1b..3cdd89be54 100644 --- a/site/docs/4.5/components/navbar.md +++ b/site/docs/4.5/components/navbar.md @@ -428,7 +428,7 @@ When the container is within your navbar, its horizontal padding is removed at b Use our [position utilities]({{ site.baseurl }}/docs/{{ site.docs_version }}/utilities/position/) to place navbars in non-static positions. Choose from fixed to the top, fixed to the bottom, or stickied to the top (scrolls with the page until it reaches the top, then stays there). Fixed navbars use `position: fixed`, meaning they're pulled from the normal flow of the DOM and may require custom CSS (e.g., `padding-top` on the ``) to prevent overlap with other elements. -Also note that **`.sticky-top` uses `position: sticky`, which [isn't fully supported in every browser](https://caniuse.com/#feat=css-sticky)**. +Also note that **`.sticky-top` uses `position: sticky`, which [isn't fully supported in every browser](https://caniuse.com/css-sticky)**. {% capture example %}