Re,
Oui c'est pas usercontent le cucurbitacé (lol) mais userChrome.css, je viens de le modifier.
Ainsi (enfin, sans le code que je vous ai indiqué, vous pouvez le mettre à la fin sans problème) :
/*@namespace url("
http://www.mozilla.org/keymaster/gateke ... s.only.xul"); /* only needed once */
/*============================== Spécial Onglets Ronds ==============================*/
/* Coins arrondis des onglets */
#TabsToolbar .tabs-newtab-button,
#TabsToolbar .tabbrowser-tab,
#TabsToolbar .tabbrowser-tab .tab-stack,
#TabsToolbar .tabbrowser-tab .tab-background,
#TabsToolbar .tabbrowser-tab .tab-content {
border-top-left-radius: 16px !important;
border-top-right-radius: 16px !important;
border-bottom-left-radius: 16px !important;
}
/*************************************/
/* Ligne sur onglet actif */
.tabbrowser-tab[usercontextid] .tab-line {
background-color:var(--identity-tab-color)!important;
}
.tabbrowser-tab .tab-line {
margin-left: 16px !important;
margin-right: 16px !important;
margin-top: 3px !important;
}
/*************************************/
/* Suppression du séparateur entre les onglets */
.tabbrowser-tab::after, .tabbrowser-tab::before {
margin: 2px !important;
border-left:0px !important;
}
/*============================== Spécial Onglets Ronds ==============================*/
/*================================= Spécial Couleurs ================================*/
/* Couleur de bouton Fermer */
tabs#tabbrowser-tabs tab.tabbrowser-tab { color: black !important;}
/*************************************/
/* Apparence des onglets lus */
.tabbrowser-tab[selected] { /**/
color: black !important;
font-weight: normal !important;
font-size: 12px !important;
background-color: transparent !important;
}
/* Apparence des onglets non lus */
.tabbrowser-tab[unread] .tab-background:not([selected="true"]) {
color : black !important;
font-weight: normal !important;
font-style: italic !important;
font-size: 12px !important;
background-color: lightblue !important;
}
/*************************************/
/**************** Onglets ************/
/* Onglet Actif */
.tab-background[selected="true"] {
/*background-attachment: none!important;*/
background-color: lightcoral !important; /* oui */
background-image: none !important;
} /* sais pas */
/* Onglets Inactifs */
.tab-background:not([selected="true"]) {
background-color: yellowgreen !important;
font-style: italic !important;
}
/************** Onglets **************/
/* Label des onglets lus (vert) */
.tabbrowser-tab[selected], .tab-label {
color: yellow !important;
font-size: 12px !important;
}
/* Label ... non lus (bleu clair) */
tab.tabbrowser-tab[unread] .tab-label {
color: lightcyan !important;
font-style: italic !important;
}
/* Label ... Actif (rouge) */
tab.tabbrowser-tab[selected="true"] .tab-label {
color: black !important;
}