mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
fix: Restore native scrollbar color (#36014)
This commit is contained in:
parent
72115c9469
commit
29bf9785f7
5
.changeset/famous-shirts-run.md
Normal file
5
.changeset/famous-shirts-run.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
'@rocket.chat/meteor': patch
|
||||
---
|
||||
|
||||
Fixes an issue where the native scrollbar was rendering with an invalid variable color
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user