2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@menu-prefix-cls: ~"@{ant-prefix}-menu";
|
2015-08-06 16:49:54 +08:00
|
|
|
|
2015-11-12 14:57:54 +08:00
|
|
|
// default theme
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{menu-prefix-cls} {
|
2015-08-06 16:49:54 +08:00
|
|
|
outline: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 0; // Override default ul/ol
|
|
|
|
list-style: none;
|
2016-03-28 16:01:37 +08:00
|
|
|
z-index: @zindex-dropdown;
|
2015-12-02 11:53:37 +08:00
|
|
|
box-shadow: @box-shadow-base;
|
2015-08-14 18:16:41 +08:00
|
|
|
color: @text-color;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2015-11-14 20:41:10 +08:00
|
|
|
line-height: 46px;
|
2015-08-06 16:49:54 +08:00
|
|
|
|
2015-11-04 23:14:49 +08:00
|
|
|
&-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-08-06 16:49:54 +08:00
|
|
|
&-item-group-list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-item-group-title {
|
2016-11-08 20:45:56 +08:00
|
|
|
color: @text-color-secondary;
|
2016-11-08 20:57:07 +08:00
|
|
|
font-size: @font-size-base;
|
2015-08-06 16:49:54 +08:00
|
|
|
line-height: 1.5;
|
2015-12-11 16:55:30 +08:00
|
|
|
padding: 8px 16px;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
2015-11-14 16:37:42 +08:00
|
|
|
&-item,
|
2016-03-22 20:43:57 +08:00
|
|
|
&-submenu,
|
2015-11-14 16:37:42 +08:00
|
|
|
&-submenu-title {
|
2015-08-14 18:16:41 +08:00
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2017-02-16 15:35:52 +08:00
|
|
|
&-item:active,
|
|
|
|
&-submenu-title:active {
|
|
|
|
background: @primary-1;
|
|
|
|
}
|
|
|
|
|
2016-03-22 20:43:57 +08:00
|
|
|
&-submenu &-sub {
|
|
|
|
cursor: initial;
|
|
|
|
}
|
|
|
|
|
2016-01-14 11:54:46 +08:00
|
|
|
&-item > a {
|
|
|
|
display: block;
|
|
|
|
color: @text-color;
|
|
|
|
&:hover {
|
2016-12-05 16:15:22 +08:00
|
|
|
color: @primary-color;
|
2016-01-14 11:54:46 +08:00
|
|
|
}
|
2016-06-25 15:09:23 +08:00
|
|
|
&:before {
|
|
|
|
position: absolute;
|
|
|
|
background-color: transparent;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
content: '';
|
|
|
|
}
|
2016-01-14 11:54:46 +08:00
|
|
|
}
|
|
|
|
|
2016-11-15 14:12:25 +08:00
|
|
|
&-item-divider {
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: @border-color-split;
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
|
2016-06-25 15:09:23 +08:00
|
|
|
&-item:hover,
|
2015-11-14 16:37:42 +08:00
|
|
|
&-item-active,
|
2017-02-15 17:14:40 +08:00
|
|
|
&-submenu-open,
|
2016-04-05 17:42:32 +08:00
|
|
|
&-submenu-active,
|
2015-11-14 16:37:42 +08:00
|
|
|
&-submenu-title:hover {
|
2016-12-04 19:26:11 +08:00
|
|
|
color: @primary-color;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
2015-11-14 20:41:10 +08:00
|
|
|
&-horizontal &-item,
|
|
|
|
&-horizontal &-submenu {
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
2016-06-25 15:09:23 +08:00
|
|
|
&-horizontal > &-item:hover,
|
2015-11-14 16:37:42 +08:00
|
|
|
&-horizontal > &-item-active,
|
|
|
|
&-horizontal > &-submenu &-submenu-title:hover {
|
|
|
|
background-color: transparent;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
2015-11-14 16:37:42 +08:00
|
|
|
&-item-selected {
|
|
|
|
color: @primary-color;
|
2016-03-11 16:21:32 +08:00
|
|
|
// fix chrome render bug
|
|
|
|
transform: translateZ(0);
|
2016-04-13 14:46:08 +08:00
|
|
|
> a,
|
|
|
|
> a:hover {
|
|
|
|
color: @primary-color;
|
|
|
|
}
|
2015-11-14 16:37:42 +08:00
|
|
|
}
|
2015-11-05 19:26:53 +08:00
|
|
|
|
2016-12-04 19:26:11 +08:00
|
|
|
&:not(&-horizontal) &-item-selected {
|
2017-01-01 22:20:06 +08:00
|
|
|
background-color: @primary-1;
|
2016-12-04 19:26:11 +08:00
|
|
|
}
|
|
|
|
|
2016-08-20 19:29:59 +08:00
|
|
|
&-horizontal,
|
|
|
|
&-inline,
|
|
|
|
&-vertical {
|
|
|
|
z-index: auto;
|
|
|
|
}
|
|
|
|
|
2015-11-14 16:37:42 +08:00
|
|
|
&-inline,
|
|
|
|
&-vertical {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-right: @border-width-base @border-style-base @border-color-split;
|
2015-11-12 14:57:54 +08:00
|
|
|
.@{menu-prefix-cls}-item {
|
2017-02-16 16:30:16 +08:00
|
|
|
border-right: 3px @border-style-base transparent;
|
2015-11-05 19:26:53 +08:00
|
|
|
margin-left: -1px;
|
2015-11-12 14:57:54 +08:00
|
|
|
left: 1px;
|
|
|
|
position: relative;
|
2016-05-10 15:44:24 +08:00
|
|
|
z-index: 1;
|
2015-11-12 14:57:54 +08:00
|
|
|
}
|
2015-11-14 15:33:29 +08:00
|
|
|
}
|
|
|
|
|
2016-04-27 15:25:57 +08:00
|
|
|
&-vertical &-sub {
|
|
|
|
border-right: 0;
|
|
|
|
.@{menu-prefix-cls}-item {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-14 15:33:29 +08:00
|
|
|
&-inline {
|
2015-11-12 14:57:54 +08:00
|
|
|
.@{menu-prefix-cls}-selected,
|
2015-11-12 23:09:35 +08:00
|
|
|
.@{menu-prefix-cls}-item-selected {
|
2017-02-16 16:30:16 +08:00
|
|
|
border-right-color: @primary-color;
|
2016-03-11 16:21:32 +08:00
|
|
|
transform: translateZ(0);
|
2015-11-12 23:09:35 +08:00
|
|
|
}
|
2015-11-05 19:26:53 +08:00
|
|
|
}
|
|
|
|
|
2015-11-14 17:51:09 +08:00
|
|
|
&-submenu-horizontal > & {
|
2015-08-06 16:49:54 +08:00
|
|
|
top: 100%;
|
|
|
|
left: 0;
|
2015-08-10 17:57:28 +08:00
|
|
|
position: absolute;
|
2015-08-14 18:16:41 +08:00
|
|
|
min-width: 100%;
|
|
|
|
margin-top: 7px;
|
2016-03-28 16:01:37 +08:00
|
|
|
z-index: @zindex-dropdown;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 12:15:22 +08:00
|
|
|
&-submenu-vertical {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2015-11-14 17:51:09 +08:00
|
|
|
&-submenu-vertical > & {
|
2015-08-06 16:49:54 +08:00
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
2015-08-10 17:57:28 +08:00
|
|
|
position: absolute;
|
|
|
|
min-width: 160px;
|
2015-08-06 16:49:54 +08:00
|
|
|
margin-left: 4px;
|
2016-03-28 16:01:37 +08:00
|
|
|
z-index: @zindex-dropdown;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
2015-11-14 17:51:09 +08:00
|
|
|
&-item,
|
|
|
|
&-submenu-title {
|
2015-08-06 16:49:54 +08:00
|
|
|
margin: 0;
|
2016-05-07 16:03:51 +08:00
|
|
|
padding: 0 20px;
|
2015-08-06 16:49:54 +08:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
2016-05-16 14:35:24 +08:00
|
|
|
min-width: 14px;
|
2016-05-07 16:03:51 +08:00
|
|
|
margin-right: 8px;
|
2016-12-30 21:41:28 +08:00
|
|
|
transition: all .3s;
|
2016-05-07 16:03:51 +08:00
|
|
|
}
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
2016-04-05 17:42:32 +08:00
|
|
|
|
2015-08-06 16:49:54 +08:00
|
|
|
& > &-item-divider {
|
|
|
|
height: 1px;
|
|
|
|
margin: 1px 0;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
line-height: 0;
|
|
|
|
background-color: #e5e5e5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-submenu {
|
|
|
|
position: relative;
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
> .@{menu-prefix-cls} {
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2015-11-14 16:37:42 +08:00
|
|
|
border-radius: 4px;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
&-vertical > .@{menu-prefix-cls}-submenu-title:after {
|
2015-08-14 18:16:41 +08:00
|
|
|
font-family: "anticon" !important;
|
|
|
|
font-style: normal;
|
|
|
|
vertical-align: baseline;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: none;
|
|
|
|
text-rendering: auto;
|
|
|
|
position: absolute;
|
|
|
|
transition: transform .3s ease;
|
2016-09-18 09:54:47 +08:00
|
|
|
content: "\e61d";
|
2015-08-14 18:16:41 +08:00
|
|
|
right: 16px;
|
2015-11-14 00:21:12 +08:00
|
|
|
.ie-rotate(3);
|
|
|
|
transform: rotate(270deg) scale(0.75);
|
2015-08-14 18:16:41 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
&-inline > .@{menu-prefix-cls}-submenu-title:after {
|
2015-08-13 17:31:09 +08:00
|
|
|
font-family: "anticon" !important;
|
|
|
|
font-style: normal;
|
|
|
|
vertical-align: baseline;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: none;
|
|
|
|
text-rendering: auto;
|
|
|
|
position: absolute;
|
2015-08-14 18:16:41 +08:00
|
|
|
transition: transform .3s ease;
|
2016-09-18 09:54:47 +08:00
|
|
|
content: "\e61d";
|
2015-08-14 18:16:41 +08:00
|
|
|
right: 16px;
|
2015-08-18 14:28:28 +08:00
|
|
|
top: 0;
|
2015-08-14 18:16:41 +08:00
|
|
|
.iconfont-size-under-12px(8px);
|
2015-08-13 17:31:09 +08:00
|
|
|
}
|
|
|
|
|
2015-08-14 13:09:53 +08:00
|
|
|
&-open {
|
2015-08-20 16:55:42 +08:00
|
|
|
&.@{menu-prefix-cls}-submenu-inline > .@{menu-prefix-cls}-submenu-title:after {
|
2015-11-14 00:21:12 +08:00
|
|
|
.ie-rotate(1);
|
|
|
|
transform: rotate(180deg) scale(0.75);
|
2015-08-13 17:31:09 +08:00
|
|
|
}
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
2016-07-24 14:23:41 +08:00
|
|
|
}
|
2016-07-22 18:41:59 +08:00
|
|
|
|
2016-07-24 14:23:41 +08:00
|
|
|
&-vertical &-submenu-selected {
|
|
|
|
color: @primary-color;
|
|
|
|
> a {
|
2016-07-22 18:41:59 +08:00
|
|
|
color: @primary-color;
|
|
|
|
}
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-horizontal {
|
2015-11-26 19:32:55 +08:00
|
|
|
border: 0;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2015-08-06 16:49:54 +08:00
|
|
|
box-shadow: none;
|
2015-08-14 18:16:41 +08:00
|
|
|
z-index: 0;
|
2015-08-06 16:49:54 +08:00
|
|
|
|
2015-11-14 17:29:48 +08:00
|
|
|
> .@{menu-prefix-cls}-item,
|
|
|
|
> .@{menu-prefix-cls}-submenu {
|
2015-08-14 18:16:41 +08:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2015-11-14 17:29:48 +08:00
|
|
|
float: left;
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
|
2016-06-25 15:09:23 +08:00
|
|
|
&:hover,
|
2015-11-14 17:29:48 +08:00
|
|
|
&-active,
|
2017-02-15 17:14:40 +08:00
|
|
|
&-open,
|
2015-11-14 17:29:48 +08:00
|
|
|
&-selected {
|
|
|
|
border-bottom: 2px solid @primary-color;
|
|
|
|
color: @primary-color;
|
2015-11-05 19:25:22 +08:00
|
|
|
}
|
2015-11-14 17:29:48 +08:00
|
|
|
|
2015-08-17 17:28:48 +08:00
|
|
|
> a {
|
|
|
|
display: block;
|
2015-08-18 22:51:01 +08:00
|
|
|
color: @text-color;
|
|
|
|
&:hover {
|
|
|
|
color: @primary-color;
|
|
|
|
}
|
2015-08-17 17:28:48 +08:00
|
|
|
}
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "\20";
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&-vertical,
|
2015-12-11 16:55:30 +08:00
|
|
|
&-inline,
|
|
|
|
&-item-group-list {
|
2015-11-26 19:32:55 +08:00
|
|
|
& > .@{menu-prefix-cls}-item,
|
|
|
|
& > .@{menu-prefix-cls}-submenu > .@{menu-prefix-cls}-submenu-title {
|
2017-02-06 12:04:35 +08:00
|
|
|
padding: 0 16px 0 28px;
|
2016-11-08 20:57:07 +08:00
|
|
|
font-size: @font-size-base;
|
2015-08-14 18:16:41 +08:00
|
|
|
line-height: 42px;
|
|
|
|
height: 42px;
|
2016-11-10 11:35:12 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-10 17:57:28 +08:00
|
|
|
|
|
|
|
&-vertical&-sub {
|
|
|
|
padding: 0;
|
2015-08-24 18:18:46 +08:00
|
|
|
transform-origin: 0 0;
|
2015-11-26 19:32:55 +08:00
|
|
|
& > .@{menu-prefix-cls}-item,
|
|
|
|
& > .@{menu-prefix-cls}-submenu {
|
2015-08-24 18:18:46 +08:00
|
|
|
transform-origin: 0 0;
|
|
|
|
}
|
2015-08-10 17:57:28 +08:00
|
|
|
}
|
|
|
|
|
2015-08-14 18:16:41 +08:00
|
|
|
&-root&-vertical,
|
2015-08-13 17:31:09 +08:00
|
|
|
&-root&-inline {
|
2015-08-14 18:16:41 +08:00
|
|
|
box-shadow: none;
|
2015-08-13 17:31:09 +08:00
|
|
|
}
|
|
|
|
|
2015-08-10 17:57:28 +08:00
|
|
|
&-sub&-inline {
|
|
|
|
padding: 0;
|
2015-11-26 19:32:55 +08:00
|
|
|
border: 0;
|
2015-08-10 17:57:28 +08:00
|
|
|
box-shadow: none;
|
2015-11-14 16:37:42 +08:00
|
|
|
border-radius: 0;
|
2015-11-26 19:32:55 +08:00
|
|
|
& > .@{menu-prefix-cls}-item,
|
|
|
|
& > .@{menu-prefix-cls}-submenu > .@{menu-prefix-cls}-submenu-title {
|
2015-11-14 17:29:48 +08:00
|
|
|
line-height: 42px;
|
|
|
|
height: 42px;
|
2015-08-14 18:16:41 +08:00
|
|
|
list-style-type: disc;
|
|
|
|
list-style-position: inside;
|
2015-08-10 17:57:28 +08:00
|
|
|
}
|
2015-12-11 16:55:30 +08:00
|
|
|
|
|
|
|
& .@{menu-prefix-cls}-item-group-title {
|
|
|
|
padding-left: 32px;
|
|
|
|
}
|
2015-08-10 17:57:28 +08:00
|
|
|
}
|
2017-01-06 11:36:54 +08:00
|
|
|
|
|
|
|
// Disabled state sets text to gray and nukes hover/tab effects
|
|
|
|
&-item-disabled,
|
|
|
|
&-submenu-disabled {
|
|
|
|
color: @disabled-color !important;
|
|
|
|
cursor: not-allowed;
|
|
|
|
background: none;
|
2017-02-06 12:04:35 +08:00
|
|
|
border-color: transparent !important;
|
2017-01-06 11:36:54 +08:00
|
|
|
> a {
|
|
|
|
color: @disabled-color !important;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
2015-08-10 17:57:28 +08:00
|
|
|
}
|
|
|
|
|
2015-11-14 17:29:48 +08:00
|
|
|
// dark theme
|
|
|
|
.@{menu-prefix-cls} {
|
|
|
|
&-dark,
|
|
|
|
&-dark &-sub {
|
2017-01-03 00:12:23 +08:00
|
|
|
color: @text-color-secondary-dark;
|
|
|
|
background: @menu-dark-bg;
|
2015-11-14 17:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-dark &-inline&-sub {
|
2017-01-03 00:12:23 +08:00
|
|
|
background: @menu-dark-submenu-bg;
|
2015-11-14 17:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-dark&-horizontal {
|
2017-01-03 00:12:23 +08:00
|
|
|
border-bottom-color: @menu-dark-bg;
|
2015-11-14 17:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-dark&-horizontal > &-item,
|
|
|
|
&-dark&-horizontal > &-submenu {
|
2017-01-03 00:12:23 +08:00
|
|
|
border-color: @menu-dark-bg;
|
2016-04-10 16:01:03 +08:00
|
|
|
border-bottom: 0;
|
|
|
|
top: 0;
|
2015-11-14 17:29:48 +08:00
|
|
|
}
|
|
|
|
|
2016-06-29 15:14:53 +08:00
|
|
|
&-dark &-item,
|
2017-01-06 11:36:54 +08:00
|
|
|
&-dark &-item-group-title,
|
2015-11-14 17:29:48 +08:00
|
|
|
&-dark &-item > a {
|
2017-01-03 00:12:23 +08:00
|
|
|
color: @text-color-secondary-dark;
|
2015-11-14 17:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-dark&-inline,
|
|
|
|
&-dark&-vertical {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-dark&-inline &-item,
|
|
|
|
&-dark&-vertical &-item {
|
|
|
|
border-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2016-06-29 19:49:51 +08:00
|
|
|
&-dark &-item:hover,
|
|
|
|
&-dark &-item-active,
|
|
|
|
&-dark &-submenu-active,
|
2017-02-15 17:14:40 +08:00
|
|
|
&-dark &-submenu-open,
|
2016-07-22 18:41:59 +08:00
|
|
|
&-dark &-submenu-selected,
|
2016-06-29 15:14:53 +08:00
|
|
|
&-dark &-submenu:hover,
|
2016-06-29 19:49:51 +08:00
|
|
|
&-dark &-submenu-title:hover {
|
|
|
|
background-color: transparent;
|
2017-01-06 11:36:54 +08:00
|
|
|
color: #fff;
|
2016-06-29 15:14:53 +08:00
|
|
|
> a {
|
2017-01-06 11:36:54 +08:00
|
|
|
color: #fff;
|
2016-06-29 15:14:53 +08:00
|
|
|
}
|
2016-06-29 19:49:51 +08:00
|
|
|
}
|
|
|
|
|
2016-06-29 15:14:53 +08:00
|
|
|
&-dark &-item-selected {
|
2015-11-14 17:29:48 +08:00
|
|
|
border-right: 0;
|
2017-01-06 11:36:54 +08:00
|
|
|
color: #fff;
|
2016-04-13 14:46:08 +08:00
|
|
|
> a,
|
|
|
|
> a:hover {
|
2017-01-06 11:36:54 +08:00
|
|
|
color: #fff;
|
2016-04-13 14:46:08 +08:00
|
|
|
}
|
2015-11-14 17:29:48 +08:00
|
|
|
}
|
|
|
|
|
2016-12-30 13:16:30 +08:00
|
|
|
&&-dark &-item-selected {
|
2016-12-15 12:12:35 +08:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2016-06-29 15:14:53 +08:00
|
|
|
&-dark&-inline &-item-selected {
|
|
|
|
background-color: @primary-color;
|
2016-06-06 09:53:20 +08:00
|
|
|
}
|
2017-01-06 11:36:54 +08:00
|
|
|
|
|
|
|
// Disabled state sets text to dark gray and nukes hover/tab effects
|
|
|
|
&-dark &-item-disabled,
|
|
|
|
&-dark &-submenu-disabled {
|
|
|
|
&,
|
|
|
|
> a {
|
|
|
|
opacity: 0.8;
|
|
|
|
color: @disabled-color-dark !important;
|
|
|
|
}
|
|
|
|
}
|
2015-08-06 16:49:54 +08:00
|
|
|
}
|