mirror of
https://github.com/jgthms/bulma.git
synced 2026-01-25 04:16:39 +00:00
Fixes #3895
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
### New Features
|
||||
|
||||
- #3937: Add .has-text-weight-extrabold as a typography class.
|
||||
|
||||
- #3906 fixes #3895: Make variables root configurable
|
||||
-
|
||||
### Bug Fixes
|
||||
|
||||
- #3963: Improve colour loading versions of outlined buttons
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
@use "../utilities/initial-variables" as iv;
|
||||
@use "../utilities/css-variables.scss" as cv;
|
||||
@use "../utilities/mixins" as mx;
|
||||
|
||||
@@ -32,7 +33,7 @@ $pre-font-size: 0.875em !default;
|
||||
$pre-padding: 1.25rem 1.5rem !default;
|
||||
$pre-code-font-size: 1em !default;
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include cv.register-vars(
|
||||
(
|
||||
"body-background-color": #{$body-background-color},
|
||||
|
||||
2
sass/base/skeleton.scss
vendored
2
sass/base/skeleton.scss
vendored
@@ -9,7 +9,7 @@ $skeleton-block-min-height: 4.5em !default;
|
||||
$skeleton-lines-gap: 0.75em !default;
|
||||
$skeleton-line-height: 0.75em !default;
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include cv.register-vars(
|
||||
(
|
||||
"skeleton-background": #{$skeleton-background},
|
||||
|
||||
@@ -101,7 +101,7 @@ $navbar-colors: dv.$colors !default;
|
||||
z-index: cv.getVar("navbar-fixed-z");
|
||||
}
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include cv.register-vars(
|
||||
(
|
||||
"navbar-height": #{$navbar-height},
|
||||
|
||||
@@ -15,7 +15,7 @@ $label-colors: shared.$form-colors !default;
|
||||
|
||||
$field-block-spacing: 0.75rem !default;
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include cv.register-vars(
|
||||
(
|
||||
"label-color": #{$label-color},
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
$column-gap: 0.75rem !default;
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include cv.register-vars(
|
||||
(
|
||||
"column-gap": #{$column-gap},
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
/* Bulma Themes */
|
||||
@charset "utf-8";
|
||||
|
||||
@use "../utilities/initial-variables" as iv;
|
||||
@use "../utilities/css-variables" as cv;
|
||||
|
||||
@use "light";
|
||||
@use "dark";
|
||||
@use "setup";
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include light.light-theme;
|
||||
@include setup.setup-theme;
|
||||
}
|
||||
|
||||
@@ -16,10 +16,7 @@ $control-padding-horizontal: calc(0.75em - #{$control-border-width}) !default;
|
||||
|
||||
$control-focus-shadow-l: 50% !default;
|
||||
|
||||
@debug cv.$variables-host;
|
||||
@debug iv.$radius;
|
||||
|
||||
#{cv.$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@include cv.register-vars(
|
||||
(
|
||||
"control-radius": #{$control-radius},
|
||||
|
||||
@@ -6,8 +6,6 @@
|
||||
@use "initial-variables" as iv;
|
||||
@use "functions" as fn;
|
||||
|
||||
$variables-host: iv.$variables-host;
|
||||
|
||||
@function buildVarName($name, $prefix: "", $suffix: "") {
|
||||
@return "--#{iv.$cssvars-prefix}#{$prefix}#{$name}#{$suffix}";
|
||||
}
|
||||
@@ -497,7 +495,7 @@ $variables-host: iv.$variables-host;
|
||||
|
||||
@mixin system-theme($name) {
|
||||
@media (prefers-color-scheme: #{$name}) {
|
||||
#{$variables-host} {
|
||||
#{iv.$variables-host} {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user