]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix caniuse.com URLS to prevent redirects (#32135)
authorChristian Oliff <christianoliff@pm.me>
Thu, 12 Nov 2020 13:01:00 +0000 (22:01 +0900)
committerGitHub <noreply@github.com>
Thu, 12 Nov 2020 13:01:00 +0000 (15:01 +0200)
Shorter URLS which are faster as they avoid HTTP redirects

site/content/docs/5.0/components/navbar.md
site/content/docs/5.0/forms/form-control.md
site/content/docs/5.0/getting-started/javascript.md
site/layouts/partials/callout-warning-input-support.md

index 58629fd6645256a1b6704461918f4b719e5e6f83..f5f42695704e73b8496d1dd6311a48c3d360fb52 100644 (file)
@@ -443,7 +443,7 @@ Use any of the responsive containers to change how wide the content in your navb
 
 Use our [position utilities]({{< docsref "/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 `<body>`) 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)**.
 
 {{< example >}}
 <nav class="navbar navbar-light bg-light">
index cb86162bead39af2d4b2a6b571588de01d9d812c..3430626c9ce468809c14ceda77173264bf97839a 100644 (file)
@@ -117,7 +117,7 @@ If you want to have `<input readonly>` elements in your form styled as plain tex
 
 Datalists allow you to create a group of `<option>`s that can be accessed (and autocompleted) from within an `<input>`. These are similar to `<select>` elements, but come with more menu styling limitations and differences. While most browsers and operating systems include some support for `<datalist>` elements, their styling is inconsistent at best.
 
-Learn more about [support for datalist elements](https://caniuse.com/#feat=datalist).
+Learn more about [support for datalist elements](https://caniuse.com/datalist).
 
 {{< example >}}
 <label for="exampleDataList" class="form-label">Datalist example</label>
index 00fdc994a1dfda143da18a697e35cb8f2a6d3e00..1b896103b3f92c026a8ddbdc88c5d26ddcb17c6d 100644 (file)
@@ -14,7 +14,7 @@ If you use a bundler (Webpack, Rollup...), you can use `/js/dist/*.js` files whi
 
 ## Using Bootstrap as a module
 
-We provide a version of Bootstrap built as `ESM` (`bootstrap.esm.js` and `bootstrap.esm.min.js`) which allows you to use Bootstrap as a module in your browser, if your [targeted browsers support it](https://caniuse.com/#feat=es6-module).
+We provide a version of Bootstrap built as `ESM` (`bootstrap.esm.js` and `bootstrap.esm.min.js`) which allows you to use Bootstrap as a module in your browser, if your [targeted browsers support it](https://caniuse.com/es6-module).
 
 ```html
 <script type="module">
index b6e140e9c8235c6caf1a327c63388a3c5a2dc9ad..7b0c8b41251958f0551e89575a206f9b1f5900ab 100644 (file)
@@ -1,3 +1,3 @@
 ##### Date & color input support
 
-Keep in mind date inputs are [not fully supported](https://caniuse.com/#feat=input-datetime) by all browsers, namely Safari.
+Keep in mind date inputs are [not fully supported](https://caniuse.com/input-datetime) by all browsers, namely Safari.