ant-design/components/menu/style/index.less

393 lines
7.3 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@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;
color: @text-color;
background: @body-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 {
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 {
cursor: pointer;
transition: all 0.3s ease;
}
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 {
color: @text-color;
}
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
}
&-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,
2016-04-05 17:42:32 +08:00
&-submenu-active,
2015-11-14 16:37:42 +08:00
&-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
}
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
&-horizontal,
&-inline,
&-vertical {
z-index: auto;
}
2015-11-14 16:37:42 +08:00
&-inline,
&-vertical {
2016-03-04 17:06:39 +08:00
border-right: 1px solid @border-color-split;
2015-11-12 14:57:54 +08:00
.@{menu-prefix-cls}-item {
2016-03-04 17:06:39 +08:00
border-right: 1px solid @border-color-split;
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 {
2015-11-14 14:39:32 +08:00
border-right: 2px solid @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;
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;
// Disabled state sets text to gray and nukes hover/tab effects
2015-11-26 19:32:55 +08:00
&.@{menu-prefix-cls}-item-disabled,
&.@{menu-prefix-cls}-submenu-disabled {
color: @text-color-secondary !important;
cursor: not-allowed;
2016-07-21 14:30:37 +08:00
background: none;
2016-04-06 23:50:51 +08:00
> a {
color: @text-color-secondary !important;
2016-04-06 23:50:51 +08:00
pointer-events: none;
}
2015-08-06 16:49:54 +08:00
}
2016-05-07 16:03:51 +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;
}
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} {
background-color: @body-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 {
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: "\e61d";
right: 16px;
2015-11-14 00:21:12 +08:00
.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;
content: "\e61d";
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-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-22 18:41:59 +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;
2016-03-04 17:06:39 +08:00
border-bottom: 1px solid @border-color-split;
2015-08-06 16:49:54 +08:00
box-shadow: none;
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 {
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,
&-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 {
2015-11-14 20:41:10 +08:00
padding: 0px 16px 0 28px;
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
line-height: 42px;
height: 42px;
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
}
&-root&-vertical,
2015-08-13 17:31:09 +08:00
&-root&-inline {
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;
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
}
}
2015-11-14 17:29:48 +08:00
// dark theme
.@{menu-prefix-cls} {
&-dark,
&-dark &-sub {
color: @text-color-secondary;
2015-11-14 17:29:48 +08:00
background: #404040;
}
&-dark &-inline&-sub {
background: #333;
}
&-dark&-horizontal {
border-bottom-color: #404040;
}
&-dark&-horizontal > &-item,
&-dark&-horizontal > &-submenu {
2016-04-06 23:50:51 +08:00
border-color: #404040;
2016-04-10 16:01:03 +08:00
border-bottom: 0;
top: 0;
2015-11-14 17:29:48 +08:00
}
&-dark &-item,
2015-11-14 17:29:48 +08:00
&-dark &-item > a {
color: @text-color-secondary;
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;
}
&-dark &-item:hover,
&-dark &-item-active,
&-dark &-submenu-active,
2016-07-22 18:41:59 +08:00
&-dark &-submenu-selected,
&-dark &-submenu:hover,
&-dark &-submenu-title:hover {
background-color: transparent;
color: #fff;
> a {
color: #fff;
}
}
&-dark &-item-selected {
2015-11-14 17:29:48 +08:00
border-right: 0;
color: #fff;
2016-04-13 14:46:08 +08:00
> a,
> a:hover {
color: #fff;
}
2015-11-14 17:29:48 +08:00
}
&-dark&-inline &-item-selected {
background-color: @primary-color;
}
2015-08-06 16:49:54 +08:00
}