fix: Restore native scrollbar color (#36014)

This commit is contained in:
Douglas Fabris 2025-05-19 09:17:27 -03:00 committed by GitHub
parent 72115c9469
commit 29bf9785f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---
Fixes an issue where the native scrollbar was rendering with an invalid variable color

View File

@ -4,7 +4,7 @@
&::-webkit-scrollbar {
width: 6px;
height: 6px;
background: var(--transparent-dark);
background: transparent;
}
&::-webkit-scrollbar-thumb {
@ -13,7 +13,7 @@
}
&::-webkit-scrollbar-corner {
background-color: var(--transparent-dark);
background-color: transparent;
}
}

View File

@ -76,6 +76,11 @@
--page-loading-background-dark: var(--rcx-color-surface-tint, #1f2329);
--loading-bounce-color-light: var(--rcx-color-font-default, #2f343d);
--loading-bounce-color-dark: var(--rcx-color-font-default, #e4e7ea);
/*
* Scrollbar
*/
--custom-scrollbar-color: var(--rcx-color-stroke-dark, #6C737A);
}
.rcx-sidebar {