- Firefox-Version
- 139
- Betriebssystem
- Windows 10
Ich benutze seit Jahren den folgenden css-code, der die Symbole in der obersten Reihe des Kontextmenüs farbig darstellt. Seit dem Update auf FF 139 ist die Farbe weg, die Symbole sind schwarz-weiß. Was muß an dem Code geändert werden?
CSS
/*AGENT_SHEET*/
/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris (aris-addons@gmx.net)*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
/***********************************************************/
/* context menu items and icons instead of just huge icons */
/***********************************************************/
#context-back .menu-iconic-icon {
fill: #118C15 !important;
}
#context-forward .menu-iconic-icon {
fill: #118C15 !important;
}
#context-reload .menu-iconic-icon {
fill: #1788EC !important;
}
#context-stop .menu-iconic-icon {
fill: red !important;
}
#context-bookmarkpage .menu-iconic-icon {
fill: #C94631 !important;
}
Alles anzeigen