2024-04-01 14:42:08 +02:00
|
|
|
.selectWrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-03-30 20:50:51 +01:00
|
|
|
.select {
|
|
|
|
display: inline-block;
|
|
|
|
all: unset;
|
2024-04-01 02:49:17 +02:00
|
|
|
padding: 0 0.75rem;
|
2024-04-01 02:15:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.select:hover:not(.select[disabled]) {
|
|
|
|
background-color: rgba(var(--background-rgb), 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.select:focus-within {
|
|
|
|
outline: none;
|
|
|
|
background-color: rgba(var(--background-rgb), 0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.select:hover:not(.select[disabled]) {
|
|
|
|
background-color: rgba(var(--foreground-rgb), 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.select:focus-within {
|
|
|
|
background-color: rgba(var(--foreground-rgb), 0.2);
|
|
|
|
}
|
2024-03-30 20:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
position: absolute;
|
2024-04-01 02:15:51 +02:00
|
|
|
right: 0.1rem;
|
|
|
|
width: 1em;
|
2024-03-30 20:50:51 +01:00
|
|
|
height: 100%;
|
|
|
|
z-index: -1;
|
|
|
|
}
|