mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
19 lines
568 B
SCSS
19 lines
568 B
SCSS
@mixin setup-light-checkbox {
|
|
$--checkbox-background-color: (
|
|
'default': $--n-base-background-color,
|
|
'disabled': $--n-disabled-background-color
|
|
) !global;
|
|
$--checkbox-icon-color: (
|
|
'default': $--n-base-background-color,
|
|
'disabled': $--n-disabled-text-color
|
|
) !global;
|
|
$--checkbox-border-color: (
|
|
'default': $--n-border-color,
|
|
'disabled': $--n-border-color,
|
|
'active': $--n-primary-color
|
|
) !global;
|
|
$--checkbox-label-text-color: (
|
|
'default': $--n-secondary-text-color,
|
|
'disabled': $--n-disabled-text-color
|
|
) !global;
|
|
} |