mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
ded45a53f3
Fixed: Scrolling in Firefox in small window (requires refresh) New: Style scrollbar in Firefox Fixed: Scrolling with click and drag Fixes #3088 Fixes #2706
30 lines
597 B
CSS
30 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;
|
|
}
|
|
}
|
|
}
|