mirror of
https://github.com/Radarr/Radarr
synced 2026-05-02 04:10:48 +02:00
New: Style scrollbar in Firefox Fixed: Scrolling with click and drag (cherry picked from commit 9bd783d49c91600d6575fc86e7bdd56858c213f1)
29 lines
597 B
CSS
29 lines
597 B
CSS
@define-mixin scrollbar {
|
|
scrollbar-color: var(--scrollbarBackgroundColor) transparent;
|
|
scrollbar-width: thin;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
}
|
|
|
|
@define-mixin scrollbarTrack {
|
|
&::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
@define-mixin scrollbarThumb {
|
|
&::-webkit-scrollbar-thumb {
|
|
min-height: 100px;
|
|
border: 1px solid transparent;
|
|
border-radius: 5px;
|
|
background-color: $scrollbarBackgroundColor;
|
|
background-clip: padding-box;
|
|
|
|
&:hover {
|
|
background-color: $scrollbarHoverBackgroundColor;
|
|
}
|
|
}
|
|
}
|