Skip to content

Commit

Permalink
Remove scrollbar customizations (#29800)
Browse files Browse the repository at this point in the history
Fixes #29652. Removes all
scrollbar customization as per popular vote on
#29652 (comment).

There is one more case of `-webkit-scrollbar` left in CSS and
#29400 will get rid of that as
well.
  • Loading branch information
silverwind authored Mar 15, 2024
1 parent 2eb7c56 commit 0827552
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions web_src/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,33 +105,9 @@ progress::-moz-progress-bar {
}

* {
scrollbar-color: var(--color-primary) transparent;
caret-color: var(--color-caret);
}

::-webkit-scrollbar {
width: 10px;
height: 10px;
}

::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 0 6px var(--color-primary);
border: 2px solid transparent;
border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:window-inactive {
box-shadow: inset 0 0 0 6px var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
box-shadow: inset 0 0 0 6px var(--color-primary-dark-2);
}

::-webkit-scrollbar-corner {
background: transparent;
}

::file-selector-button {
border: 1px solid var(--color-light-border);
color: var(--color-text-light);
Expand Down

0 comments on commit 0827552

Please sign in to comment.