testing a more unified scrollbar look

This commit is contained in:
2026-05-06 05:09:59 +02:00
parent f6647cd075
commit 5017cd48b6
2 changed files with 20 additions and 14 deletions

View File

@@ -2282,13 +2282,9 @@ body.layout-legacy .scroll-to-bottom svg {
.comments-list::-webkit-scrollbar {
width: 6px;
}
.comments-list::-webkit-scrollbar-thumb {
background: var(--gray);
border-radius: 10px;
.comments-list {
scrollbar-width: thin;
}
.comment {
@@ -3204,13 +3200,20 @@ html[res="fullscreen"] span#favs {
/* Global scrollbar rules */
::-webkit-scrollbar {
width: 6px;
height: 6px;
width: 10px;
height: 10px;
}
::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-color);
background-clip: content-box;
border: 3px solid transparent;
border-radius: 10px;
transition: background-color 0.2s;
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--accent);
}
::-webkit-scrollbar-track {
@@ -9909,12 +9912,10 @@ body.layout-modern>.pagewrapper:not(:has(.index-layout-wrapper)):not(:has(.item-
scrollbar-color: var(--accent) transparent;
}
#shortcuts-modal .login-modal-content::-webkit-scrollbar {
width: 6px;
}
#shortcuts-modal .login-modal-content::-webkit-scrollbar-thumb {
background-color: var(--accent);
background-clip: content-box;
border: 3px solid transparent;
border-radius: 10px;
}