ant-design/style/components/menu.less

271 lines
5.8 KiB
Plaintext
Raw Normal View History

2015-08-20 16:55:42 +08:00
@menu-prefix-cls: ~"@{css-prefix}menu";
2015-08-06 16:49:54 +08:00
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;
z-index: 999;
2015-08-06 16:49:54 +08:00
border: 1px solid #d9d9d9;
box-shadow: @overlay-shadow;
border-radius: @border-radius-base;
color: @text-color;
2015-09-16 11:29:51 +08:00
background: #fff;
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 {
color: #999;
line-height: 1.5;
padding: 8px 10px;
border-bottom: 1px solid #dedede;
}
&-item {
cursor: pointer;
transition: all 0.3s ease;
}
2015-08-10 17:57:28 +08:00
&-inline > &-item-active,
&-submenu-inline&-submenu-active,
&-submenu-inline&-submenu-active > &-submenu-title:hover {
background-color: #fff;
}
&-inline > &-item-active:hover,
&-item-active,
&-submenu-active,
&-submenu-inline&-submenu-active > &-submenu-title:hover {
2015-08-11 21:16:12 +08:00
background-color: tint(@primary-color, 90%);
2015-08-06 16:49:54 +08:00
}
&-item-selected {
2015-08-11 21:16:12 +08:00
background-color: tint(@primary-color, 90%);
color: @primary-color;
2015-08-06 16:49:54 +08:00
}
& > li&-submenu {
padding: 0;
cursor: pointer;
2015-08-18 22:51:01 +08:00
transition: all 0.3s ease;
2015-08-06 16:49:54 +08:00
}
2015-08-20 16:55:42 +08:00
&-submenu-horizontal > .@{menu-prefix-cls} {
2015-08-06 16:49:54 +08:00
top: 100%;
left: 0;
2015-08-10 17:57:28 +08:00
position: absolute;
min-width: 100%;
margin-top: 7px;
2015-08-06 16:49:54 +08:00
}
2015-08-20 16:55:42 +08:00
&-submenu-vertical > .@{menu-prefix-cls} {
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;
}
2015-08-10 17:57:28 +08:00
&-item, &-submenu-title {
2015-08-06 16:49:54 +08:00
margin: 0;
position: relative;
display: block;
white-space: nowrap;
// Disabled state sets text to gray and nukes hover/tab effects
2015-08-20 16:55:42 +08:00
&.@{menu-prefix-cls}-item-disabled, &.@{menu-prefix-cls}-submenu-disabled {
color: #999 !important;
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} {
2015-08-06 16:49:54 +08:00
background-color: #fff;
}
2015-08-20 16:55:42 +08:00
&-vertical > .@{menu-prefix-cls}-submenu-title:after {
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;
content: "\e600";
right: 16px;
.ie-rotate(3);
transform: rotate(270deg) scale(0.75);
}
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;
transition: transform .3s ease;
2015-08-18 16:39:26 +08:00
content: "\e600";
right: 16px;
2015-08-18 14:28:28 +08:00
top: 0;
.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-08-15 00:07:40 +08:00
.ie-rotate(1);
2015-08-18 16:39:26 +08:00
transform: rotate(180deg) scale(0.75);
2015-08-13 17:31:09 +08:00
}
2015-08-06 16:49:54 +08:00
}
}
2015-08-20 16:55:42 +08:00
.@{menu-prefix-cls}-submenu-title, .@{menu-prefix-cls}-item {
2015-08-06 16:49:54 +08:00
.anticon {
width: 14px;
margin-right: 8px;
top: -1px;
color: #999;
2015-08-06 16:49:54 +08:00
}
}
&-horizontal {
background-color: #FBFBFB;
2015-08-06 16:49:54 +08:00
border: none;
border-bottom: 1px solid #d9d9d9;
box-shadow: none;
border-radius: 0;
padding-left: 24px;
z-index: 0;
2015-08-06 16:49:54 +08:00
2015-08-20 16:55:42 +08:00
& > .@{menu-prefix-cls}-item,
& > .@{menu-prefix-cls}-submenu > .@{menu-prefix-cls}-submenu-title {
2015-08-17 17:28:48 +08:00
padding: 0 20px;
line-height: 50px;
position: relative;
top: 1px;
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
&:before, &:after {
position: absolute;
2015-08-18 14:28:28 +08:00
background-color: rgba(255, 255, 255, 0.001);
2015-08-17 17:28:48 +08:00
width: 20px;
height: 50px;
content: '';
}
&:before {
left: 0;
}
}
2015-08-06 16:49:54 +08:00
}
2015-08-20 16:55:42 +08:00
& > .@{menu-prefix-cls}-submenu, & > .@{menu-prefix-cls}-item {
2015-08-06 16:49:54 +08:00
float: left;
border-bottom: 2px solid transparent;
margin-right: 24px;
2015-08-06 16:49:54 +08:00
&-active,
&-selected {
2015-08-11 21:16:12 +08:00
border-bottom: 2px solid @primary-color;
background-color: #FBFBFB;
2015-08-11 21:16:12 +08:00
color: @primary-color;
.anticon {
color: @primary-color;
}
2015-08-06 16:49:54 +08:00
}
}
&:after {
content: "\20";
display: block;
height: 0;
clear: both;
}
}
2015-08-10 17:57:28 +08:00
&-vertical, &-inline {
2015-08-06 16:49:54 +08:00
padding: 12px 0;
2015-08-20 16:55:42 +08:00
& > .@{menu-prefix-cls}-item, & > .@{menu-prefix-cls}-submenu > .@{menu-prefix-cls}-submenu-title {
padding: 0 24px;
font-size: 12px;
line-height: 42px;
height: 42px;
2015-08-06 16:49:54 +08:00
}
}
2015-08-10 17:57:28 +08:00
2015-08-19 18:59:08 +08:00
&-vertical, &-horizontal {
2015-08-20 16:55:42 +08:00
.@{menu-prefix-cls}-submenu {
.@{menu-prefix-cls}-item:first-child {
2015-08-19 19:23:23 +08:00
border-radius: @border-radius-base @border-radius-base 0 0;
}
2015-08-20 16:55:42 +08:00
.@{menu-prefix-cls}-item:last-child {
2015-08-19 19:23:23 +08:00
border-radius: 0 0 @border-radius-base @border-radius-base;
}
2015-08-19 19:26:28 +08:00
&:first-child {
border-radius: @border-radius-base @border-radius-base 0 0;
}
&:last-child {
border-radius: 0 0 @border-radius-base @border-radius-base;
}
2015-08-19 18:59:08 +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;
& > .@{menu-prefix-cls}-item, & > .@{menu-prefix-cls}-submenu {
transform-origin: 0 0;
}
2015-08-10 17:57:28 +08:00
}
&-root&-vertical,
2015-08-13 17:31:09 +08:00
&-root&-inline {
border-radius: 0;
box-shadow: none;
2015-08-13 17:31:09 +08:00
}
2015-08-10 17:57:28 +08:00
&-sub&-inline {
padding: 0;
border: none;
border-radius: 0;
box-shadow: none;
2015-08-24 18:18:46 +08:00
overflow: hidden;
2015-08-20 16:55:42 +08:00
& > .@{menu-prefix-cls}-item, & > .@{menu-prefix-cls}-submenu > .@{menu-prefix-cls}-submenu-title {
line-height: 34px;
height: 34px;
list-style-type: disc;
list-style-position: inside;
2015-08-10 17:57:28 +08:00
}
}
}
2015-08-20 16:55:42 +08:00
.@{menu-prefix-cls}-submenu-title, .@{menu-prefix-cls}-item {
2015-08-10 17:57:28 +08:00
.anticon {
width: 14px;
margin-right: 8px;
top: -1px;
}
2015-08-06 16:49:54 +08:00
}