logoalt Hacker News

upfrogtoday at 5:38 PM2 repliesview on HN

Two things that I noticed: - Firefox did crash on me more frequently. It wasn't a daily, or even a weekly thing, but it was more of a problem. - Firefox limits how small I can shrink my tabs in the tab bar. Chrome also has a limit, but it is much less restrictive.

That last one was the killer difference for me. Firefox wants me to be able to see (at least part of) the title of each tab, even if that means I can't see all my tabs at once. I want to see all of my tabs at once, and I don't care if I can see the title - the favicon is enough.

I did try configuring Firefox to let me shrink the tabs more, and even tried messing with its GTK configuration, but no luck.

So I do feel a bit bad for using Brave instead of Firefox, but after months of dealing with Firefox's UI I lost patience.


Replies

buzertoday at 6:01 PM

> - Firefox limits how small I can shrink my tabs in the tab bar.

This can be changed via chrome/userChrome.css.

Mine is:

  @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  
  .tabbrowser-tab {
    min-width: 3em !important;
    clip-width: 3em !important;
    
  }
  
  [uidensity="compact"]:root {
    --tab-min-height: 30px !important;
    --newtab-margin: -3px 0 -3px -3px !important;
  }
  
  .tabbrowser-tab {
    max-height: var(--tab-min-height) !important;
  }
  
  .tabs-newtab-button{
    margin: var(--newtab-margin) !important;
  }
ldom66today at 6:58 PM

Try vertical tabs. I fell in love since I've been using it daily. Zen has a special flavor of vertical tabs where pinned tabs open links in a modal, which I now can't do without, and can be reset to the original url with a middle click. I use that all the time for HN, mail, youtube, claude, etc. I believe Waterfox also has a neat implementation of vertical tabs as smart trees.