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

8 lines
321 B
SCSS
Raw Normal View History

@mixin setup-light-tree {
$--tree-node-background-color: (
2020-02-25 18:47:41 +08:00
'hover': change-color($--n-primary-color, $alpha: .16),
'active': change-color($--n-primary-color, $alpha: .1),
'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;
}