- Firefox-Version
- Firefox 81.0 64 Bit
- Betriebssystem
- Windows 10 2004 64 Bit Home
Hallo
Aktiver TAB grün, gelesener gelb und nicht gelesener rot funktioniert nicht mehr. Der nicht gelesene ist nicht rot sondern auch gelb. Hier der Eintrag in der "userChrome.css". Was muss geändert werden?
CSS
/*************************** AKTIVER TAB GRÜN *******************************************/
.tab-background[selected="true"]{
opacity: 0.7!important;
color: #000000 !important;
background:#99ff00!important;
}
/************************ GELESENER TAB GELB *******************************************/
.tabbrowser-tab:not([visuallyselected="true"])
{
opacity: 0.7!important;
color: #000000 !important;
background:#ffff00!important;
font-weight: bold !important;
}
/******************* NICHT GELESENER TAB ROT *******************************************/
.tabbrowser-tab[titlechanged] {
opacity: 0.7!important;
color: #000000 !important;
background:#ff6600!important;
font-weight: bold !important;
}
.tabbrowser-tab[selected="true"]{
font-weight:bold;
}
Alles anzeigen
Danke im voraus hwww