Skip to content

Commit

Permalink
Set a minimum width/height for the scrollbar slider (Linux only)
Browse files Browse the repository at this point in the history
This is a workaround for some GTK themes with missing scrollbar buttons
  • Loading branch information
fofajardo committed Mar 26, 2021
1 parent c133b4d commit 85e6f49
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/chrome/os_target/linux/scrollbars.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,15 @@ scrollbarbutton {
}

/* ::::: slider - a thumb is inside ::::: */
slider {

slider[orient="vertical"] {
-moz-appearance: none;
min-width: 16px;
}

slider[orient="vertical"] {
slider[orient="horizontal"] {
-moz-appearance: none;
min-height: 16px;
}

/* ::::: thumb (vertical) ::::: */
Expand Down

0 comments on commit 85e6f49

Please sign in to comment.