On 01/24/2018 12:36 PM, Tom Horsley wrote:
.scrollbar {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
-GtkRange-slider-width: 15;
-GtkRange-stepper-size: 20;
}

That worked for a while, but now the designers have apparently
discovered people were circumventing them and changed things
so this no longer works :-).

Remove the . from .scrollbar and it will work again. I guess they removed the redundant class from the css. Also, the last two options are marked as deprecated so they will be removed at some point.

scrollbar {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
}

The stepper buttons are pretty small by default, so you might also want to add:
scrollbar button {
min-width: 10px;
min-height: 10px;
}
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org

Reply via email to