![Firefox logo](https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/products/2020-04-14-08-36-13-8dda6f.png)
lost close button (X) on inactive tabs since version 113 install
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.
Solution choisie
Try changing '-moz-box' to 'flex'.
Lire cette réponse dans son contexte 👍 0Toutes les réponses (3)
currently, there are a lot of problems with the new update so one of the solutions is to use an older version
Solution choisie
Try changing '-moz-box' to 'flex'.
Modifié le
You can also use unset.
.tab-close-button:not([pinned]) { display: unset !important; }