fix scrollbar for chrome 121

This commit is contained in:
Yuri Kuznetsov
2024-02-01 10:59:38 +02:00
parent e6d1048ebd
commit 4f6e1ed1ec
+11 -7
View File
@@ -3388,10 +3388,7 @@ a.close:hover {
opacity: 0.8;
}
.dashlet > .dashlet-body,
.list-kanban-container {
scrollbar-width: thin;
}
.wysiwyg-iframe-container.fallback {
border-radius: var(--border-radius);
@@ -3399,9 +3396,16 @@ a.close:hover {
background-color: var(--white-color);
}
* {
scrollbar-width: auto;
scrollbar-color: var(--scroll-thumb-bg) var(--scroll-bg);
@supports not selector(::-webkit-scrollbar) {
.dashlet > .dashlet-body,
.list-kanban-container {
scrollbar-width: thin;
}
* {
scrollbar-width: auto;
scrollbar-color: var(--scroll-thumb-bg) var(--scroll-bg);
}
}
*::-webkit-scrollbar {