Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hiding Single Tab in Firefox 110 #55

Open
fmccann opened this issue Feb 17, 2023 · 4 comments
Open

Hiding Single Tab in Firefox 110 #55

fmccann opened this issue Feb 17, 2023 · 4 comments

Comments

@fmccann
Copy link

fmccann commented Feb 17, 2023

The suggested userChrome styles for hiding a single tab does not work in Firefox 110. If anyone else is having this problem, this seems to work:

#tabbrowser-tabs .tabbrowser-tab:only-of-type,
#tabbrowser-tabs .tabbrowser-tab:only-of-type + #tabbrowser-arrowscrollbox-periphery {
  display: none !important;
}

#tabbrowser-tabs, #tabbrowser-arrowscrollbox {
  min-height: 0 !important;
}
@paer76
Copy link

paer76 commented Feb 19, 2023

Just make sure to remove the tab list too otherwise it will show and look awful.

I had to toggle this off

browser.tabs.tabmanager.enabled

@paer76
Copy link

paer76 commented Feb 19, 2023

This should also do the trick👌

#tabbrowser-tabs .tabbrowser-tab:only-of-type,#alltabs-button .tabbrowser-tab:only-of-type,
#tabbrowser-tabs .tabbrowser-tab:only-of-type + #tabbrowser-arrowscrollbox-periphery {
  display: none !important;
}

#tabbrowser-tabs, #tabbrowser-arrowscrollbox {
  min-height: 0 !important;
}

@NyaomiDEV
Copy link

This does not fully work on LibreWolf 110.

@zhengxiaosong
Copy link

This does not work on FireFox 118.0.1 (64 位); macOS: 13.3.1 (22E261), any else help?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants