File size: 1,819 Bytes
7929f62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
.menuDropdown {
display: inline-block;
padding-right: 14px;
.title {
position: relative;
cursor: pointer;
}
.icon-arrow-bottom {
margin-left: 4px;
}
.items {
z-index: 200;
position: absolute;
border: 1px solid @color-silver-l80;
background: @theme-color-background-contrast;
max-height: 400px;
overflow-y: auto;
overflow-x: hidden;
padding: 0 !important;
.search {
margin: 15px 6px 10px 6px;
display: block;
.search_ico {
position: absolute;
right: 25px;
top: 32px;
margin: 0;
left: initial;
color: @theme-color-text-lighter;
}
.reset {
position: absolute;
top: 34px;
cursor: pointer;
margin: 0;
right: 21px;
left: initial;
font-size: 12px;
color: @theme-color-text-lighter;
}
input {
margin: 0;
width: 100%;
&::-ms-clear {
display: none;
}
}
}
.item {
display: block;
color: @theme-color-text !important;
text-decoration: none !important;
padding: 12px 25px 12px 6px !important;
font-size: 11px;
float: none;
text-align: left;
line-height: 16px;
&:hover {
background: @theme-color-background-tinyContrast;
}
&.active {
background-color: @theme-color-background-tinyContrast;
}
&.category {
color: @theme-color-text-light !important
}
&.separator {
padding: 0 !important;
border-bottom: 0;
margin: 0;
}
&.separator,
&.disabled {
opacity: 0.5;
cursor: default;
&:hover {
background: @theme-color-background-base;
}
}
}
}
}
|