You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
987 B
48 lines
987 B
5 years ago
|
@import './index';
|
||
|
|
||
|
.@{menu-prefix-cls} {
|
||
|
// Danger
|
||
|
&-item-danger&-item {
|
||
|
color: @menu-highlight-danger-color;
|
||
|
|
||
|
&:hover,
|
||
|
&-active {
|
||
|
color: @menu-highlight-danger-color;
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
background: @menu-item-active-danger-bg;
|
||
|
}
|
||
|
|
||
|
&-selected {
|
||
|
color: @menu-highlight-danger-color;
|
||
|
> a,
|
||
|
> a:hover {
|
||
|
color: @menu-highlight-danger-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.@{menu-prefix-cls}:not(.@{menu-prefix-cls}-horizontal) &-selected {
|
||
|
background-color: @menu-item-active-danger-bg;
|
||
|
}
|
||
|
|
||
|
.@{menu-prefix-cls}-inline &::after {
|
||
|
border-right-color: @menu-highlight-danger-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ==================== Dark ====================
|
||
|
&-dark &-item-danger&-item {
|
||
|
&,
|
||
|
&:hover,
|
||
|
& > a {
|
||
|
color: @menu-dark-danger-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-dark&-dark:not(&-horizontal) &-item-danger&-item-selected {
|
||
|
color: @menu-dark-highlight-color;
|
||
|
background-color: @menu-dark-item-active-danger-bg;
|
||
|
}
|
||
|
}
|