35 lines
563 B
CSS
35 lines
563 B
CSS
|
.listBox {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
max-height: 150px;
|
||
|
overflow-y: auto;
|
||
|
list-style: none;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
.option {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
background-color: transparent;
|
||
|
color: var(--textColor1);
|
||
|
padding: 8px 16px;
|
||
|
outline: none;
|
||
|
cursor: pointer;
|
||
|
font-size: 15px;
|
||
|
min-height: 32px;
|
||
|
}
|
||
|
|
||
|
.option.selected {
|
||
|
color: #0dbd8b;
|
||
|
}
|
||
|
|
||
|
.option.focused {
|
||
|
background-color: var(--bgColor3);
|
||
|
}
|
||
|
|
||
|
.option.disabled {
|
||
|
color: var(--textColor2);
|
||
|
background-color: var(--bgColor3);
|
||
|
}
|