Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Daha Fazlasını Öğren

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

  • 3 yanıt
  • 0 kişi bu sorunu yaşıyor
  • 17 gösterim
  • Son yanıtı yazan: 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.

Seçilen çözüm

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

Bu yanıtı konu içinde okuyun 👍 0

Tüm Yanıtlar (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

Seçilen çözüm

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

Terry tarafından tarihinde düzenlendi

more options

You can also use unset.

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