Files
Readarr/frontend/src/Styles/Mixins/scroller.css
T
Qstick ded45a53f3 Improve page scrollbar
Fixed: Scrolling in Firefox in small window (requires refresh)
New: Style scrollbar in Firefox
Fixed: Scrolling with click and drag
Fixes #3088
Fixes #2706
2022-11-25 20:00:56 -06:00

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;
}
}
}