mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
33 lines
857 B
CSS
33 lines
857 B
CSS
::deep fluent-select::part(listbox) {
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
::deep fluent-select fluent-option {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
::deep fluent-select {
|
|
position: relative;
|
|
}
|
|
|
|
::deep fluent-select::part(listbox)::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
::deep fluent-select::part(listbox)::-webkit-scrollbar-track {
|
|
background: color-mix(in srgb, var(--neutral-fill-rest) 30%, transparent);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
::deep fluent-select::part(listbox)::-webkit-scrollbar-thumb {
|
|
background: color-mix(in srgb, var(--neutral-fill-strong-rest) 80%, transparent);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
::deep fluent-select::part(listbox)::-webkit-scrollbar-thumb:hover {
|
|
background: color-mix(in srgb, var(--neutral-fill-strong-hover) 80%, transparent);
|
|
} |