So, heute Morgen noch einmal so einiges getestet!
Also, das mit den Einträgen in die user.js klappt. Beitrag #251
Die Bildlaufleisten (Scrollbar) werden breiter.
Nur das Symbol (Button) bleibt eben "klein",
aber auch das habe ich in den Griff bekommen!
Beispiel, wenn die Bildlaufleisten (Scrollbar) auf 22px eingestellt wurde:
(Ist jetzt nur für die Senkrechte)
CSS
scrollbar[vertical] > scrollbarbutton[type="decrement"] {
background-image: url("${ProfileDirectory}/Pfeil-hoch.svg") !important;
-moz-context-properties: fill, fill-opacity;
fill: ${cs_scrollbar_arrows_color} !important;
fill-opacity: 1 !important;
background-position: top !important;
min-width: 22px !important;
min-height: 22px !important;
}
scrollbar[vertical] > scrollbarbutton[type="increment"] {
background-image: url("${ProfileDirectory}/Pfeil-runter.svg") !important;
-moz-context-properties: fill, fill-opacity;
fill: ${cs_scrollbar_arrows_color} !important;
fill-opacity: 1 !important;
background-position: bottom !important;
min-width: 22px !important;
min-height: 22px !important;
}
Alles anzeigen