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.

382 lines
7.0 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
@menu-prefix-cls: ant-menu;
9 years ago
9 years ago
// default theme
.@{menu-prefix-cls} {
9 years ago
outline: none;
margin-bottom: 0;
padding-left: 0; // Override default ul/ol
list-style: none;
9 years ago
z-index: @zindex-dropdown;
box-shadow: @box-shadow-base;
color: @text-color;
background: #fff;
line-height: 46px;
9 years ago
&-hidden {
display: none;
}
9 years ago
&-item-group-list {
margin: 0;
padding: 0;
}
&-item-group-title {
color: #999;
font-size: 12px;
9 years ago
line-height: 1.5;
padding: 8px 16px;
9 years ago
}
&-item,
&-submenu,
&-submenu-title {
cursor: pointer;
transition: all 0.3s ease;
}
&-submenu &-sub {
cursor: initial;
}
&-item > a {
display: block;
color: @text-color;
&:hover {
color: @text-color;
}
&:before {
position: absolute;
background-color: transparent;
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
content: '';
}
}
&-item:hover,
&-item-active,
&-submenu-active,
&-submenu-title:hover {
9 years ago
background-color: tint(@primary-color, 90%);
9 years ago
}
&-horizontal &-item,
&-horizontal &-submenu {
margin-top: -1px;
}
&-horizontal > &-item:hover,
&-horizontal > &-item-active,
&-horizontal > &-submenu &-submenu-title:hover {
background-color: transparent;
9 years ago
}
&-item-selected {
color: @primary-color;
// fix chrome render bug
transform: translateZ(0);
> a,
> a:hover {
color: @primary-color;
}
}
9 years ago
&-inline,
&-vertical {
border-right: 1px solid @border-color-split;
9 years ago
.@{menu-prefix-cls}-item {
border-right: 1px solid @border-color-split;
9 years ago
margin-left: -1px;
9 years ago
left: 1px;
position: relative;
z-index: 1;
9 years ago
}
9 years ago
}
&-vertical &-sub {
border-right: 0;
.@{menu-prefix-cls}-item {
border-right: 0;
}
}
9 years ago
&-inline {
9 years ago
.@{menu-prefix-cls}-selected,
.@{menu-prefix-cls}-item-selected {
9 years ago
border-right: 2px solid @primary-color;
transform: translateZ(0);
}
9 years ago
}
&-submenu-horizontal > & {
9 years ago
top: 100%;
left: 0;
9 years ago
position: absolute;
min-width: 100%;
margin-top: 7px;
9 years ago
z-index: @zindex-dropdown;
9 years ago
}
9 years ago
&-submenu-vertical {
z-index: 1;
}
&-submenu-vertical > & {
9 years ago
top: 0;
left: 100%;
9 years ago
position: absolute;
min-width: 160px;
9 years ago
margin-left: 4px;
9 years ago
z-index: @zindex-dropdown;
9 years ago
}
&-item,
&-submenu-title {
9 years ago
margin: 0;
padding: 0 20px;
9 years ago
position: relative;
display: block;
white-space: nowrap;
// Disabled state sets text to gray and nukes hover/tab effects
&.@{menu-prefix-cls}-item-disabled,
&.@{menu-prefix-cls}-submenu-disabled {
color: #999 !important;
cursor: not-allowed;
background: none;
> a {
color: #999 !important;