- Firefox-Version
- 150.0
- Betriebssystem
- Windows 11
Hallo,
mit folgendem CSS-Code habe ich meine Adress- und Suchleiste farblich eingestellt. Leider wirkt sich , seit FF 150, der Code nur noch auf die Adresszeile aus. Der Rahmen um die Suchleiste hat die Farbe des FF Dark Theme. Gibt es da eine Lösung?
CSS
/*Adress- und Suchleiste - Rahmen farblich einstellen*/
#urlbar[open] > .urlbar-background {
margin-top: 4px !important;
margin-bottom: 4px !important;
margin-left: 5px !important;
margin-right: 5px !important;
border: 2px solid #083469 !important;
border-radius: 2px !important;
box-shadow: none !important;
}
#urlbar[focused] > .urlbar-background{
--toolbar-field-focus-border-color: transparent !important;
border: 2px solid #083469 !important;
border-radius: 2px !important;
box-shadow: none !important;
}
#urlbar ::selection,
#searchbar ::selection {
color: white !important;
background: #083469 !important;
}
.urlbar-background {
border-radius: 4px !important;;
}
#urlbar[breakout][breakout-extend][breakout-extend-animate] > .urlbar-background {
animation-name: none !important;
}
#urlbar[breakout][breakout-extend] > .urlbar-background {
box-shadow: none !important;
}
Alles anzeigen