client: Remove broken Firefox scrollbar styling

This commit is contained in:
Elian Doran 2024-08-17 01:19:07 +03:00
parent 12756a165f
commit e70531fcc1
No known key found for this signature in database

View File

@ -832,29 +832,18 @@ li.dropdown-submenu:hover > ul.dropdown-menu {
transform: rotate(-90deg);
}
body {
/* FF basic styling */
scrollbar-color: var(--scrollbar-background-color) transparent;
::-webkit-scrollbar {
width: 12px;
}
@supports selector(::-webkit-scrollbar) {
body {
scrollbar-color: unset;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
border: 1px solid var(--scrollbar-border-color);
background-color: var(--scrollbar-background-color);
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
border: 1px solid var(--scrollbar-border-color);
background-color: var(--scrollbar-background-color);
}
::-webkit-scrollbar-corner {
background-color: inherit;
}
::-webkit-scrollbar-corner {
background-color: inherit;
}
[data-toggle="tooltip"]:not(.button-widget) span {