mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-30 22:52:24 +01:00
Fix redirects. (#29254)
This commit is contained in:
parent
727c1684bb
commit
38d055e7fb
@ -32,7 +32,7 @@
|
|||||||
browser: >
|
browser: >
|
||||||
Edge
|
Edge
|
||||||
summary: >
|
summary: >
|
||||||
Fire a [`transitioncancel` event](https://developer.mozilla.org/en-US/docs/Web/Events/transitioncancel) when a CSS transition is canceled
|
Fire a [`transitioncancel` event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/transitioncancel_event) when a CSS transition is canceled
|
||||||
upstream_bug: >
|
upstream_bug: >
|
||||||
UserVoice#15939898
|
UserVoice#15939898
|
||||||
origin: >
|
origin: >
|
||||||
|
@ -33,7 +33,7 @@ group: components
|
|||||||
|
|
||||||
## Changing the separator
|
## Changing the separator
|
||||||
|
|
||||||
Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this:
|
Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/functions/string#quote) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this:
|
||||||
|
|
||||||
```scss
|
```scss
|
||||||
$breadcrumb-divider: quote(">");
|
$breadcrumb-divider: quote(">");
|
||||||
|
@ -135,7 +135,7 @@ As of iOS 9.2, while a modal is open, if the initial touch of a scroll gesture i
|
|||||||
|
|
||||||
### Navbar Dropdowns
|
### Navbar Dropdowns
|
||||||
|
|
||||||
The `.dropdown-backdrop` element isn't used on iOS in the nav because of the complexity of z-indexing. Thus, to close dropdowns in navbars, you must directly click the dropdown element (or [any other element which will fire a click event in iOS](https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile)).
|
The `.dropdown-backdrop` element isn't used on iOS in the nav because of the complexity of z-indexing. Thus, to close dropdowns in navbars, you must directly click the dropdown element (or [any other element which will fire a click event in iOS](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event#Safari_Mobile)).
|
||||||
|
|
||||||
## Browser zooming
|
## Browser zooming
|
||||||
|
|
||||||
|
@ -375,7 +375,7 @@ Should you need to modify your `$grid-breakpoints`, your changes will apply to a
|
|||||||
|
|
||||||
## CSS variables
|
## CSS variables
|
||||||
|
|
||||||
Bootstrap 4 includes around two dozen [CSS custom properties (variables)](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables) in its compiled CSS. These provide easy access to commonly used values like our theme colors, breakpoints, and primary font stacks when working in your browser's Inspector, a code sandbox, or general prototyping.
|
Bootstrap 4 includes around two dozen [CSS custom properties (variables)](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) in its compiled CSS. These provide easy access to commonly used values like our theme colors, breakpoints, and primary font stacks when working in your browser's Inspector, a code sandbox, or general prototyping.
|
||||||
|
|
||||||
### Available variables
|
### Available variables
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user