We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dark-switch-background-color
_controls.scss
dark-switch-background-color variable is not being used among _controls.scss file, so nothing gets updated.
Update this code (lane 378 of _controls.scss):
.#{$ns}-dark & { @include indicator-colors( "", $switch-background-color, $switch-background-color-hover, $switch-background-color-active, $switch-background-color-disabled ); @include indicator-colors( ":checked", $switch-checked-background-color, $switch-checked-background-color-hover, $switch-checked-background-color-active, $switch-checked-background-color-disabled ); ...
to
.#{$ns}-dark & { @include indicator-colors( "", $dark-switch-background-color, $dark-switch-background-color-hover, $dark-switch-background-color-active, $dark-switch-background-color-disabled ); @include indicator-colors( ":checked", $dark-switch-checked-background-color, $dark-switch-checked-background-color-hover, $dark-switch-checked-background-color-active, $dark-switch-checked-background-color-disabled ); ...
as I suggest in this PR.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Steps to reproduce
dark-switch-background-color
variable in_controls.scss
file.Actual behavior
dark-switch-background-color
variable is not being used among_controls.scss
file, so nothing gets updated.Expected behavior
Possible solution
Update this code (lane 378 of
_controls.scss
):to
as I suggest in this PR.
The text was updated successfully, but these errors were encountered: