testing a more unified scrollbar look
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -575,8 +575,13 @@
|
||||
/* ── COMMENTS PANEL ───────────────────────────── */
|
||||
#comments-panel { z-index: 802; }
|
||||
#comments-list { flex: 1; overflow-y: auto; padding: 0 16px 8px; }
|
||||
#comments-list::-webkit-scrollbar { width: 4px; }
|
||||
#comments-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 2px; }
|
||||
#comments-list::-webkit-scrollbar { width: 10px; }
|
||||
#comments-list::-webkit-scrollbar-thumb {
|
||||
background: rgba(255,255,255,.12);
|
||||
background-clip: content-box;
|
||||
border: 3px solid transparent;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.comment-item { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
|
||||
.comment-item:last-child { border-bottom: none; }
|
||||
.comment-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(255,255,255,.12); }
|
||||
|
||||
Reference in New Issue
Block a user