Merge pull request #3887 from Erquint/staging Make scrollbars make sense.

b9a6361662d96f6b7c60ccb209e17e8aad3208be

Cohee <18619528+Cohee1207@users.noreply.github.com>

Signed
1 files changed, +17 -2Ignore whitespace
public/style.css+17 -2
@@ -157,11 +157,26 @@ body {
157157}
158158
159159::-webkit-scrollbar {
160160 width: 10px0.8rem;
161- height: 10px;
162161 scrollbar-gutter: stable;
163162}
164163
164+::-webkit-scrollbar-track {
165+ cursor: default;
166+}
167+
168+::-webkit-scrollbar-track:hover {
169+ background-color: rgba(126, 126, 126, 0.2); /* Adaptive, but won't contrast with neutral-gray. */
170+}
171+
172+::-webkit-scrollbar-thumb {
173+ cursor: grab;
174+}
175+
176+::-webkit-scrollbar-thumb:active {
177+ cursor: grabbing;
178+}
179+
165180.scrollY {
166181 overflow-y: auto !important;
167182}