- Firefox-Version
- 155
- Betriebssystem
- Windows 11
Hallo,
gibt es eigentlich auch eine möglichkeit den Schließe Kreuz auf die Tabs wenn Aktiv und Inaktiv zu ändern ?
weil bei mir sieht man das Kreuz nicht bei inaktiven Tabs
mein CSS
CSS
/* für Tab Aktiv | Hintergrund */
.tabbrowser-tab[visuallyselected] .tab-background{
background: #038387 !important;
}
/* für Tab Aktiv | Schrift */
#TabsToolbar .tabbrowser-tab:is([selected],[multiselected]) label {
opacity: 1 !important;
font-weight: 700 !important;
color: white !important;
}
/* für Tab Inaktiv | hover */
.tabbrowser-tab:not([visuallyselected]):hover > .tab-stack > .tab-background {
background:rgba(1, 133, 116, 0.4) !important;
}
/* für Tab Inaktiv | Schrift */
.tabbrowser-tab:not([visuallyselected]) {
color:#0c0c0c !important; /* Grey 90 */
}
/* für Tab | Schließen - Kreuz */
.tab-close-button {
fill:#ffe8ea !important; /* Red 0 */
}
.tab-close-button:hover {
background-color: #b20037 !important;
border:1px dashed #ffe8ea !important;
}
Alles anzeigen