Radarr/frontend/src/Styles/Mixins/scroller.css
Mark McDowall ac3d4bee35 Improve page scrollbar
New: Style scrollbar in Firefox
Fixed: Scrolling with click and drag

(cherry picked from commit 9bd783d49c91600d6575fc86e7bdd56858c213f1)
2022-11-19 16:31:37 -06:00

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