Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Close tab button disappears from inactive tabs with 8 or more open tabs

  • 3 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: shinichineko

more options

Before updating to Firefox 96, I could close tabs no matter how squished they were. Now I cannot. Someone with a similar problem at https://support.mozilla.org/en-US/questions/1194322 was able to find help, but I'm not meeting with any success implementing their chosen fix. Is there a way to keep the close tab button active with this many tabs anymore, or is that out?

Before updating to Firefox 96, I could close tabs no matter how squished they were. Now I cannot. Someone with a similar problem at https://support.mozilla.org/en-US/questions/1194322 was able to find help, but I'm not meeting with any success implementing their chosen fix. Is there a way to keep the close tab button active with this many tabs anymore, or is that out?

선택된 해결법

That is controlled by these two pref that set the minimum width and the clip width to hide the close button.


// Check if tab widths are below the threshold where we want to // remove close buttons from background tabs so that people don't // accidentally close tabs by selecting them.

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (3)

more options

Hi, you should still have access to two built-in methods:

(1) right-click > Close Tab (2) Middle-click

For userChrome.css, did you want the buttons to display persistently, or only when you hover the tab? If only on hover, you could take a look at this rule:

https://github.com/MrOtherGuy/firefox-csshacks/blob/master/chrome/tab_close_button_always_on_hover.css

Or the original more complicated ones that I've simplified a bit:

/* Show Tab Close buttons only when hovered */
.tabbrowser-tab:not([pinned="true"]) > .tab-stack > .tab-content > .tab-close-button {
  display: -moz-box !important;
}
.tabbrowser-tab:not([pinned="true"]) > .tab-stack > .tab-content > .tab-close-button {
  visibility: collapse !important;
  opacity: 0 !important;
  transition: all 250ms ease-in-out !important;
}
.tabbrowser-tab:not([pinned="true"]):hover > .tab-stack > .tab-content > .tab-close-button {
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 250ms ease-in-out !important;
}
more options

선택된 해결법

That is controlled by these two pref that set the minimum width and the clip width to hide the close button.


// Check if tab widths are below the threshold where we want to // remove close buttons from background tabs so that people don't // accidentally close tabs by selecting them.

more options

jscher2000: I know I can still close the tab, I just wanted the button to remain visible even when the tabs were squished. I also couldn't quite figure out how to make that code bit go into my userchrome.css and work properly.

cor-el: Aha, this does what I wanted it to do - I set the clip width slightly below minimum width and now the buttons don't disappear even while the tabs are very small. Thank you.