zen-browser / desktop

🌀 Experience tranquillity while browsing the web without people tracking you!
https://zen-browser.app
Mozilla Public License 2.0
13.76k stars 332 forks source link

Font size on tabs too small #1524

Closed coderstarrer closed 1 week ago

coderstarrer commented 1 week ago

Captchas

What happened?

Screenshot 2024-09-18 130204 The font size is too small to read This is different to all the other font-size issues because the previous issues were mostly about the +new tab button but now its all tabs

Reproducible?

Version

1.0.1-a.2(64-bit)

What platform are you seeing the problem on?

Windows

Relevant log output

No response

linear[bot] commented 1 week ago

ZEN-1606 Font size on tabs too small

kittybwained commented 1 week ago

Getting this too, it's very annoying. How the hell do you manage to ship an update that's clearly this broken?

kittybwained commented 1 week ago

Found a workaround, add:

.tab-text {
    font-size: 12px !important;
}

to your userChrome.css file.

coderstarrer commented 1 week ago

And you could also put

 #vertical-tabs-newtab-button {
    font-size: 12px !important;
}

to the userChrome.css

500mhzz commented 1 week ago

Found a workaround, add:

.tab-text {
  font-size: 12px !important;
}

to your userChrome.css file.

To do this in Zen, go to the three dots beside the minimize button, click help, than More Troubleshooting Information, scroll down till you see Profile Folder with the Open Folder button beside it. Click it and than go to chrome > zen-themes than find or create any theme in there.

kittybwained commented 1 week ago

Also recommend adding:

.tab-icon-sound-label.tab-icon-sound-playing-label {
  font-size: 9px !important;
}
User344 commented 1 week ago

Two updates that break something so basic back-to-back is insane

jurienhamaker commented 1 week ago

Stop whining guys. Its almost a solo dev doing shit to make your lifes better. If you got something to complain besides reporting an issue or a solution, start contributing.

@User344 @kittybwained

coderstarrer commented 1 week ago

Found a workaround, add:

.tab-text {
    font-size: 12px !important;
}

to your userChrome.css file.

To do this in Zen, go to the three dots beside the minimize button, click help, than More Troubleshooting Information, scroll down till you see Profile Folder with the Open Folder button beside it. Click it and than go to chrome > zen-themes than find or create any theme in there.

You don't need to go to help just open a new tab and do about:profiles and click on your default profile and then click on root directory, find the chrome folder if it's not there just make one and then paste the userChrome.css

PierreL-H commented 1 week ago

I believe this should be fixed in the next release so I'm a little late, but in the meanwhile this is what I have

  /* tab list font size fix */
  #tabbrowser-tabs[orient="vertical"] {
    & #newtab-button-container {
      font-size: unset !important;
    }
  }

  #tabbrowser-tabs {
    & .tabbrowser-tab {
      font-size: unset !important;
    }
  }

This was fixed here for the tab text: https://github.com/zen-browser/desktop/commit/4d4c2fd6768080881df4f3e887907d590ea87694#diff-1e316fee8b8eb75a4ffdc132e053a036cc22062da466549a3326fdbbdbb5b9c9L73 I couldn't find where the rule for #newtab-button-container was though.

mauro-balades commented 1 week ago

This has been fixed for the next release, thanks!