element-call/src/ListBox.module.css

34 lines
667 B
CSS
Raw Normal View History

2021-12-06 17:34:10 -08:00
.listBox {
margin: 0;
padding: 0;
max-height: 150px;
overflow-y: auto;
list-style: none;
background-color: transparent;
2022-06-01 11:48:17 -04:00
border: 1px solid var(--quinary-content);
background-color: var(--background);
2021-12-14 15:28:54 -08:00
border-radius: 8px;
2021-12-06 17:34:10 -08:00
}
.option {
display: flex;
align-items: center;
justify-content: space-between;
background-color: transparent;
2022-06-01 11:48:17 -04:00
color: var(--primary-content);
2021-12-06 17:34:10 -08:00
padding: 8px 16px;
outline: none;
cursor: pointer;
font-size: var(--font-size-body);
2021-12-06 17:34:10 -08:00
min-height: 32px;
}
.option.focused {
2021-12-14 15:28:54 -08:00
background-color: rgba(111, 120, 130, 0.2);
2021-12-06 17:34:10 -08:00
}
.option.disabled {
2022-06-01 11:48:17 -04:00
color: var(--quaternary-content);
2021-12-06 17:34:10 -08:00
background-color: var(--bgColor3);
}