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.
선택된 해결법
Try changing '-moz-box' to 'flex'.
문맥에 따라 이 답변을 읽어주세요 👍 0모든 댓글 (3)
currently, there are a lot of problems with the new update so one of the solutions is to use an older version
선택된 해결법
Try changing '-moz-box' to 'flex'.
글쓴이 Terry 수정일시
You can also use unset.
.tab-close-button:not([pinned]) { display: unset !important; }