| Age | Commit message (Collapse) | Author | Files | Lines |
|
* Add Sass variable for CSS variable prefix
* Update other --bs-* var instances
|
|
- Use a semitransparent gradient from light to dark which works on any background-color
- Store the gradient as a custom property (--bs-gradient)
- Remove `.bg-gradient-*` variants in favour of `.bg-gradient` which works even when `$enable-gradients` are enabled
- Add gradients to navbar, active page links and badges when gradients are enabled
|
|
|
|
|
|
Also, add a warning in _root.scss so that we don't miss it again.
|
|
Media queries do not support CSS custom properties (CSS variables), so we've had some useless variables lying around since shipping v4. This finally removes them and the associated documentation content that explained the situation.
Fixes #29012.
|
|
This is required for Sass v3.5+ compatibility.
See https://github.com/sass/sass/blob/stable/doc-src/SASS_CHANGELOG.md#backwards-incompatibilities----must-read and https://github.com/sass/sass/issues/2383
|
|
* Generate CSS variables
See #23349
Supersedes #23446
* Ignore _root.scss for linting
|