Mozilla will shut down Pocket’s services on July 8, 2025. At that time users will no longer be able to access the Pocket website, apps and API. You can export your saved items and API data until October 8, 2025 before they are permanently removed. For more information, see this article.

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Ellipsis in tabs, instead of text fade, is it possible ?

  • 2 replies
  • 1 has this problem
  • 33 views
  • Last reply by karlserer

I've tried everything I could find , to add to my userChrome.css or to change about_config, but to no avail .

Bookmarks in Firefox use ellipsis , is there any way to use them in tabs as well ?

I've tried everything I could find , to add to my userChrome.css or to change about_config, but to no avail . Bookmarks in Firefox use ellipsis , is there any way to use them in tabs as well ?

Chosen solution

Thanks for your reply, much appreciated .

It's a shame ellipsis don't seem to be doable in tabs anymore , I really don't like the fadeout ... I've adjusted the gradient a little, but it just never works right for most tab titles .

Read this answer in context 👍 0

All Replies (2)

Actually this used to be an ellipsis, but was changed to fading text in Firefox 53.

  • 658467 - Fade out tab label on overflow instead of ellipsis

Setting the text-overflow via .tab-label-container {text-overflow: <clip|ellipsis> !important} doesn't have effect for me.

Maybe ask this at the Firefox CSS subreddit forum.

Note that the ellipsis takes space, so you lose the last two letters and if the tab gets smaller when you open a lot then you might only see the ellipsis.

You can possibly disable the text fading via userChrome.css.

.tab-label-container[textoverflow]:not([pinned]) {
  mask-image: unset !important;
}

Chosen Solution

Thanks for your reply, much appreciated .

It's a shame ellipsis don't seem to be doable in tabs anymore , I really don't like the fadeout ... I've adjusted the gradient a little, but it just never works right for most tab titles .