Skip to content

Commit

Permalink
client: Remove broken Firefox scrollbar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Aug 16, 2024
1 parent 12756a1 commit e70531f
Showing 1 changed file with 9 additions and 20 deletions.
29 changes: 9 additions & 20 deletions src/public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e70531f

Please sign in to comment.