- Firefox-Version
- Firefox 92.0.1
- Betriebssystem
- Xubuntu 20.04
Hallo, ich habe versucht die Scrollbalken an meinen abgeänderten Style für das Xfce-Theme anzupassen. Über about:config geht das, die Funktion läuft laut dieser Antwort hier aber aus. Es geht noch über die userChrome und userContent, da muss man aber irgendwie den CSS-Code ändern. Das hier geht:
meine Änderungen sind aber deutlich mehr und nach diesem Muster:
Code
scrollbar { background-image: linear-gradient(to right, #e8e8e8, white); border: 0; transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
*, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link { -GtkScrollbar-has-backward-stepper: 1; -GtkScrollbar-has-forward-stepper: 1; -GtkScrollbar-has-secondary-forward-stepper: 1; }
scrollbar slider { min-width: 15px; min-height: 15px; margin: 0 ; border: 1px solid #828282; border-radius: 3px; background-clip: padding-box; background-image: linear-gradient(to right, #dbdbdb, #d1d1d1); }
scrollbar.fine-tune slider { min-width: 11px; min-height: 11px; border: 3px solid #828282; }
scrollbar button { padding: 0; min-width: 15px; min-height: 15px; border-style: none; border-radius: 0; transition-property: min-height, min-width, color; border-color: transparent; background-image: linear-gradient(to right, #dbdbdb, #d1d1d1); box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; color: #595959; }
scrollbar button:hover { border-color: transparent; background-image: linear-gradient(to right, blue, blue); box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; color: #e8e8e8; }
Wie übersetze ich das in "Firefox-kompatiblen" CSS-Code? Oder gehen solche komplexen Änderungen nicht umzusetzen?