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

11 lines
325 B
SCSS
Raw Normal View History

2019-10-08 18:01:39 +08:00
@mixin setup-light-dropdown {
2019-12-04 09:36:17 +08:00
$--dropdown-item-suffix-fill: $--n-secondary-text-color !global;
2020-01-15 13:00:43 +08:00
$--dropdown-item-text-color: (
2020-02-19 19:58:39 +08:00
'hover': $--n-primary-color,
'selected': $--n-primary-color
2020-01-15 13:00:43 +08:00
) !global;
$--dropdown-item-background-color: (
2020-02-19 19:58:39 +08:00
'selected': change-color($--n-primary-color, $alpha: .1)
2020-01-15 13:00:43 +08:00
) !global
2019-10-08 18:01:39 +08:00
}