mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-26 18:51:50 +02:00
[web] Add dark mode for dropdowns GitOrigin-RevId: 8fcce98101fc32fa1abbc0fbcd1615a8bc0898e4
20 lines
300 B
SCSS
20 lines
300 B
SCSS
:root {
|
|
--select-background-highlighted: var(--bg-light-secondary);
|
|
}
|
|
|
|
.select-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.select-trigger {
|
|
cursor: default;
|
|
|
|
& + .form-control-end-icon {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.select-highlighted {
|
|
background-color: var(--select-background-highlighted);
|
|
}
|