mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge pull request #3887 from Erquint/staging
Make scrollbars make sense.
This commit is contained in:
@ -157,11 +157,26 @@ body {
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
width: 0.8rem;
|
||||
scrollbar-gutter: stable;
|
||||
}
|
||||
|
||||
::-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. */
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.scrollY {
|
||||
overflow-y: auto !important;
|
||||
}
|
||||
|
Reference in New Issue
Block a user