From 2fa1c69f3e681d8d2a7630761ed2616a41acf8ab Mon Sep 17 00:00:00 2001 From: Gness Erquint Date: Mon, 21 Apr 2025 17:34:55 +0300 Subject: [PATCH] Show scrollbar track only when hovered. --- public/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/style.css b/public/style.css index 64b0fa597..485979eee 100644 --- a/public/style.css +++ b/public/style.css @@ -163,6 +163,9 @@ body { ::-webkit-scrollbar-track { cursor: default; +} + +::-webkit-scrollbar-track:hover { background-color: rgba(126, 126, 126, 0.2); /* Adaptive, but won't contrast with neutral-gray. */ }