2019-12-24 21:50:28 +08:00
|
|
|
@mixin setup-light-tree {
|
|
|
|
$--tree-node-background-color: (
|
2020-03-03 19:25:40 +08:00
|
|
|
'hover': $--n-pending-overlay-color,
|
|
|
|
'active': $--n-active-overlay-color,
|
2020-02-25 18:47:41 +08:00
|
|
|
'selected': change-color($--n-primary-color, $alpha: .1)
|
2019-12-24 21:50:28 +08:00
|
|
|
) !global;
|
2020-02-25 18:47:41 +08:00
|
|
|
$--tree-node-switcher-color: $--n-tertiary-text-color !global;
|
2020-02-26 12:41:24 +08:00
|
|
|
$--tree-node-content-text-color: (
|
|
|
|
'default': $--n-secondary-text-color,
|
|
|
|
'disabled': $--n-disabled-text-color
|
|
|
|
)!global;
|
2019-12-24 21:50:28 +08:00
|
|
|
}
|