Show scrollbar track only when hovered.

This commit is contained in:
Gness Erquint
2025-04-21 17:34:55 +03:00
parent 7be1b039ac
commit 2fa1c69f3e

View File

@@ -163,6 +163,9 @@ body {
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
cursor: default; cursor: default;
}
::-webkit-scrollbar-track:hover {
background-color: rgba(126, 126, 126, 0.2); /* Adaptive, but won't contrast with neutral-gray. */ background-color: rgba(126, 126, 126, 0.2); /* Adaptive, but won't contrast with neutral-gray. */
} }