mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
30 lines
1023 B
SCSS
30 lines
1023 B
SCSS
@mixin setup-dark-transfer {
|
|
$--transfer-list-background-color: (
|
|
'default': rgba(255, 255, 255, .1)
|
|
) !global;
|
|
$--transfer-list-header-background-color: (
|
|
'default': rgba(255, 255, 255, .1)
|
|
) !global;
|
|
$--transfer-list-header-text-color: (
|
|
'default': $--n-text-color
|
|
) !global;
|
|
$--transfer-list-header-extra-text-color: (
|
|
'default': $--n-secondary-text-color,
|
|
'disabled': $--n-disabled-text-color
|
|
) !global;
|
|
$--transfer-gap-button-background-color: (
|
|
'default': rgba(255, 255, 255, 0.3),
|
|
'disabled': rgba(255, 255, 255, .15),
|
|
'hover': $--primary-6,
|
|
'active': $--primary-7
|
|
) !global;
|
|
$--transfer-item-text-color: (
|
|
'default': $--n-secondary-text-color,
|
|
'disabled': $--n-disabled-text-color
|
|
) !global;
|
|
$--tranfer-item-lightbar-background-color: (
|
|
'default': change-color($--n-primary-color, $alpha: .3)
|
|
) !global;
|
|
$--transfer-list-border-color: rgba(255, 255, 255, .1) !global;
|
|
$--transfer-header-border-color: rgba(255, 255, 255, .1) !global;
|
|
} |