File size: 604 Bytes
f61d311 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
// scrollbar tinkering
@supports (scrollbar-width: thin) {
* {
scrollbar-width: thin;
scrollbar-color: #444 transparent;
}
}
::-webkit-scrollbar {
width: .9em;
}
::-webkit-scrollbar-track {
background: var(--cui-body-bg, #fff);
border-radius: 100vw;
margin-block: .2em;
}
::-webkit-scrollbar-thumb {
background: #999;
border: .2em solid var(--cui-body-bg, #fff);
border-radius: 100vw;
}
::-webkit-scrollbar-thumb:hover {
background: #444;
}
.dark-theme::-webkit-scrollbar-thumb {
background: #444;
}
.dark-theme::-webkit-scrollbar-thumb:hover {
background: #999;
}
|