👨🏻‍💻👩🏻‍💻 Use Ant Design like a Pro!
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.
 
 
 

40 lines
673 B

@import '~antd/es/style/themes/default.less';
.contextMenu {
display: none;
overflow: hidden;
background: @component-background;
border-radius: 4px;
box-shadow: @box-shadow-base;
.item {
display: flex;
align-items: center;
padding: 5px 12px;
cursor: pointer;
transition: all 0.3s;
user-select: none;
&:hover {
background: @select-item-selected-bg;
}
.anticon {
margin-right: 8px;
}
}
:global {
.disable {
:local {
.item {
color: @disabled-color;
cursor: auto;
&:hover {
background: @item-hover-bg;
}
}
}
}
}
}