naive-ui/styles/themes/light/components/Tree.scss

12 lines
415 B
SCSS
Raw Normal View History

@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)
) !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;
}