Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 3 ответа
  • 0 имеют эту проблему
  • 12 просмотров
  • Последний ответ от 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.

Выбранное решение

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

Прочитайте этот ответ в контексте 👍 0

Все ответы (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

Выбранное решение

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

Изменено Terry

more options

You can also use unset.

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