31 lines
525 B
Stylus
31 lines
525 B
Stylus
|
|
.comboList {
|
||
|
|
z-index: 1000;
|
||
|
|
max-height: 160px;
|
||
|
|
overflow-y: auto;
|
||
|
|
-moz-box-shadow: 0 2px 3px #ccc;
|
||
|
|
-webkit-box-shadow: 0 2px 3px #ccc;
|
||
|
|
box-shadow: 0 2px 3px #ccc;
|
||
|
|
border: 1px solid #d1d1d1;
|
||
|
|
list-style-type: none;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
display: none;
|
||
|
|
background: white;
|
||
|
|
|
||
|
|
li {
|
||
|
|
display: block;
|
||
|
|
padding: 5px 10px;
|
||
|
|
margin: 0;
|
||
|
|
text-indent: 0
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
li.selected {
|
||
|
|
background-color: #ffe184 !important;
|
||
|
|
}
|
||
|
|
li[role='node'] {
|
||
|
|
font-weight: 800;
|
||
|
|
}
|
||
|
|
li[role='leaf'] {
|
||
|
|
padding-left: 2em;
|
||
|
|
}
|
||
|
|
}
|