web-apps/apps/common/main/resources/less/dropdown-menu.less

81 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-03-11 00:48:53 +00:00
.dropdown-menu > .disabled > a {
2016-11-03 10:41:44 +00:00
cursor: default;
2016-03-11 00:48:53 +00:00
}
.dropdown-menu {
&.scrollable-menu {
height: auto;
max-height: 400px;
}
&.ps-container {
overflow: hidden;
.ps-scrollbar-y-rail {
margin-top: 1px;
margin-bottom: 1px;
}
}
&.internal-menu {
border: none;
border-radius: 0;
.box-shadow(none);
margin: 0;
padding: 0;
overflow: hidden;
}
2016-03-11 00:48:53 +00:00
li {
& > a {
padding: 5px 20px;
cursor: pointer;
&:focus, &.focus {
outline: 0;
}
&.focus {
text-decoration: none;
color: @dropdown-link-hover-color;
background-color: @dropdown-link-hover-bg;
}
}
&.over > a {
text-decoration: none;
color: @dropdown-link-hover-color;
background-color: @dropdown-link-hover-bg;
}
.checked {
&:before {
content: '';
width: 16px;
height: 16px;
display: inline-block;
float: left;
margin-left: -18px;
background-position: @menu-check-offset-x @menu-check-offset-y;
}
2019-09-13 14:45:09 +00:00
&.custom-scale:before {
margin-top: 3px;
}
2016-03-11 00:48:53 +00:00
}
&.disabled {
.menu-item-icon {
opacity: .4;
}
}
2016-03-11 00:48:53 +00:00
.menu-item-icon {
display: inline-block;
float: left;
width: 22px;
height: 22px;
margin: -3px 5px 0 -15px;
2019-10-21 14:05:50 +00:00
.background-ximage-v2('popupmenu-btns.png', 66px, @commonimage: false);
2016-03-11 00:48:53 +00:00
background-repeat: no-repeat;
}
}
}