element-call/src/ListBox.module.css
2021-12-06 17:34:10 -08:00

34 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);
}