Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

lost close button (X) on inactive tabs since version 113 install

  • 3 risposte
  • 0 hanno questo problema
  • 12 visualizzazioni
  • Ultima risposta di cor-el

more options

Had the line

.tab-close-button:not([pinned="true"]) { display: -moz-box !important; }

in my userchrome.css which put the close button on all tabs. This no longer works.

Also there is no Close Button (X) on hover for inactive tabs.

Had the line .tab-close-button:not([pinned="true"]) { display: -moz-box !important; } in my userchrome.css which put the close button on all tabs. This no longer works. Also there is no Close Button (X) on hover for inactive tabs.

Soluzione scelta

Try changing '-moz-box' to 'flex'.

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (3)

more options

currently, there are a lot of problems with the new update so one of the solutions is to use an older version

more options

Soluzione scelta

Try changing '-moz-box' to 'flex'.

Modificato da Terry il

more options

You can also use unset.

.tab-close-button:not([pinned]) { display: unset !important; }