- 已解決
- 封存
How do I hide the close X on all tabs (including the active tab)?
Currently, the X doesn't show on tabs other than the active tab. Ideally, I don't want the X on the active tab either. The stanza I am using in userChrome.css is .tab… (閱讀更多)
Currently, the X doesn't show on tabs other than the active tab. Ideally, I don't want the X on the active tab either. The stanza I am using in userChrome.css is
.tab-close-button{ display: none !important } (suggested in a post in GitHub) This is the current stanza and doesn't hide the X on the active tab.
I have tried setting the value of browser.tabs.tabClipWidth to 9999 as suggested in another question and that doesn't get rid of the X on the active tab. I have also tried the following css solution :
#tabbrowser-tabs .tabbrowser-tab .tab-close-button { display:none!important; }(also suggested in another question but it doesn't hide the X on the active tab)
I searched for an extension and got a lot of links; I looked through the first three pages and nothing relevant was listed.