Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 2 ответа
  • 1 имеет эту проблему
  • 53 просмотра
  • Последний ответ от karlserer

more options

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 ?

Выбранное решение

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 .

Прочитайте этот ответ в контексте 👍 0

Все ответы (2)

more options

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;
}

more options

Выбранное решение

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 .