naive-ui/styles/themes/light/components/Menu.scss
2020-02-07 22:52:51 +08:00

26 lines
929 B
SCSS

@mixin setup-light-menu {
$--menu-item-group-text-color: $--n-meta-text-color !global;
$--menu-item-text-color: $--n-secondary-text-color !global;
$--menu-horizontal-border-color: $--primary-6 !global;
$--menu-item-content-text-color: (
'default': $--n-secondary-text-color,
'hover': $--primary-6,
'child-selected': $--primary-6,
'selected': $--primary-6,
) !global;
$--menu-item-content-extra-text-color: (
'default': $--n-meta-text-color,
'hover': $--primary-6,
'child-selected': $--primary-6,
'selected': $--primary-6,
) !global;
$--menu-item-content-icon-color: (
'default': $--n-text-color,
'hover': $--primary-6,
'child-selected': $--primary-6,
'selected': $--primary-6,
'collapsed': $--n-text-color,
) !global;
$--menu-submenu-arrow-color: $--n-primary-color !global;
$--menu-item-background-color: change-color($--primary-6, $alpha: .1) !global;
}