sonarr-repo-only/frontend/src/Styles/Mixins/scroller.css

30 lines
609 B
CSS
Raw Normal View History

2018-01-13 02:01:27 +00:00
@define-mixin scrollbar {
scrollbar-color: var(--scrollbarBackgroundColor) transparent;
scrollbar-width: thin;
2018-01-13 02:01:27 +00:00
&::-webkit-scrollbar {
width: 10px;
height: 10px;
2018-01-13 02:01:27 +00:00
}
}
@define-mixin scrollbarTrack {
2021-04-24 20:51:43 +00:00
&::-webkit-scrollbar-track {
2018-01-13 02:01:27 +00:00
background-color: transparent;
}
}
@define-mixin scrollbarThumb {
&::-webkit-scrollbar-thumb {
min-height: 100px;
2018-01-13 02:01:27 +00:00
border: 1px solid transparent;
border-radius: 5px;
background-color: var(--scrollbarBackgroundColor);
2018-01-13 02:01:27 +00:00
background-clip: padding-box;
&:hover {
background-color: var(--scrollbarHoverBackgroundColor);
2018-01-13 02:01:27 +00:00
}
}
}