Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/material/checkbox/_checkbox-private.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $private-checkbox-theme-config: map.merge(mdc-checkbox-theme.$light-theme, (
// Mixin that includes the checkbox theme styles with a given palette.
// By default, the MDC checkbox always uses the `secondary` palette.
@mixin private-checkbox-styles-with-color($color-config, $color, $mdc-color) {
$is-dark: map-get($color-config, is-dark);
$is-dark: map.get($color-config, is-dark);
$on-surface: mdc-theme-color.prop-value(on-surface);
$border-color: rgba($on-surface, color.opacity(mdc-checkbox-theme.$border-color));
$disabled-color: rgba($on-surface, color.opacity(mdc-checkbox-theme.$disabled-color));
Expand Down
2 changes: 1 addition & 1 deletion src/material/radio/_radio-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

@include mdc-helpers.using-mdc-theme($config) {
$on-surface: rgba(mdc-theme-color.$on-surface, 0.54);
$is-dark: map-get($config, is-dark);
$is-dark: map.get($config, is-dark);
$active-border-color: if(
$is-dark,
theming.get-color-from-palette(palette.$gray-palette, 200),
Expand Down