Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

If you're a userChrome.css user and your tab height increased on 96.0.2...

  • 3 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 230 προβολές
  • Τελευταία απάντηση από pg_78

more options

If you use userChrome.css to customise the tab toolbar, you might see the height of the tabs increase with Firefox 96.0.2. For me the fix was to add an entry to userChrome.css:

   #tabbrowser-tabs:not([secondarytext-unsupported]) .tab-label-container {
     height: initial !important;
   }

This counteracts a change in 96.0.2 which sets the height of that element to 2em.

If you use userChrome.css to customise the tab toolbar, you might see the height of the tabs increase with Firefox 96.0.2. For me the fix was to add an entry to userChrome.css: #tabbrowser-tabs:not([secondarytext-unsupported]) .tab-label-container { height: initial !important; } This counteracts a change in 96.0.2 which sets the height of that element to 2em.

Τροποποιήθηκε στις από το χρήστη pg_78

Επιλεγμένη λύση

You can hide the secondary line that shows the Playing and Muted state by modifying the browser.tabs.secondaryTextUnsupportedLocales pref and add your language to the list. For "en-US" this would be "en" (i.e. the part before the '-'):

  • ar,bn,bo,ckb,fa,gu,he,hi,ja,km,kn,ko,lo,mr,my,ne,pa,si,ta,te,th,ur,zh,en

You need to close and restart Firefox after modifying this pref.

Ανάγνωση απάντησης σε πλαίσιο 👍 1

Όλες οι απαντήσεις (3)

more options

Thank you for posting this, as people who search for a solution may find this.

However, this may be more relevant at r/firefoxcss.

more options

Επιλεγμένη λύση

You can hide the secondary line that shows the Playing and Muted state by modifying the browser.tabs.secondaryTextUnsupportedLocales pref and add your language to the list. For "en-US" this would be "en" (i.e. the part before the '-'):

  • ar,bn,bo,ckb,fa,gu,he,hi,ja,km,kn,ko,lo,mr,my,ne,pa,si,ta,te,th,ur,zh,en

You need to close and restart Firefox after modifying this pref.

more options

cor-el said

You can hide the secondary line that shows the Playing and Muted state by modifying the browser.tabs.secondaryTextUnsupportedLocales pref and add your language to the list. For "en-US" this would be "en" (i.e. the part before the '-'):
  • ar,bn,bo,ckb,fa,gu,he,hi,ja,km,kn,ko,lo,mr,my,ne,pa,si,ta,te,th,ur,zh,en
You need to close and restart Firefox after modifying this pref.

Oh, great to know, many thanks!