L'AI suggerisce di controllare se il malfunzionamento sia dovuto a uno o più di questi:
/* RENDERE VISIBILE L'AUDIO E TASTO DI CHIUSURA IN SCHEDE APERTE */
/* forza la presenza visiva del tasto X in qualsiasi condizione */
#tabbrowser-tabs .tabbrowser-tab[selected="true"] .tab-close-button,
.tabbrowser-tab[selected="true"] .tab-close-button {
display: flex !important;
visibility: visible !important;
opacity: 1 !important;
}e
.tabbrowser-tab[exiting],
.tabbrowser-tab[exiting] .tab-stack,
.tabbrowser-tab[exiting] .tab-content,
.tabbrowser-tab[exiting] .tab-background,
.tabbrowser-tab[exiting] .tab-close-button {
visibility: collapse !important;
display: none !important;
opacity: 0 !important;
/* ... many size resets */
}e
/* allinea la X rossa al bordo destro solo sulle schede attive */
.tabbrowser-tab:not([exiting]) .tab-close-button {
margin-inline-end: -5px !important;
padding-right: 1px !important;
}e
.tabbrowser-tab[selected="true"] .tab-content {
display: flex !important;
align-items: center !important;
flex-direction: row !important;
min-width: 100% !important;
}
/* ... */
.tabbrowser-tab[selected="true"] .tab-label-container + .tab-close-button {
margin-left: auto !important; /* spinge l'audio (e la X dopo di esso) tutto a destra */
}
e
.tabbrowser-tab[selected="true"] .tab-icon-overlay[soundplaying],
.tabbrowser-tab[selected="true"] .tab-icon-overlay[muted],
.tabbrowser-tab[selected="true"] .tab-icon-sound {
/* ... */
z-index: 9999 !important;
}
.tabbrowser-tab[selected="true"] .tab-close-button {
/* ... */
z-index: 9999 !important;
}e
#tabbrowser-tabs .tab-close-button:not(:hover) {
scale: 1.07 !important;
}Prova a trasformarli in commento (inserendoli fra /* e */) uno alla volta e vedi cosa succede.