Setze mal zwischen zweiter Farbe und dem abschließenden Semikolon noch folgendes: !important, also:
CSS
@-moz-document url("chrome://browser/content/places/bookmarksSidebar.xhtml") {
:root {
/* Farbe 1: Thumb - Farbe 2: Hintergrund*/
scrollbar-color: red lightgrey !important;
}
:root:active {
/* Farbe 1: Thumb - Farbe 2: Hintergrund*/
scrollbar-color: blue lightgrey !important;
}
}
Alles anzeigen
!important sorgt dafür, dass eventuell vorhandene Standardwerte überschrieben werden. Ah, ich sehe, 2002Andreas war schneller.