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

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

Learn More

Pinned tabs are too small for me.

  • 3 ответа
  • 3 имеют эту проблему
  • 7 просмотров
  • Последний ответ от cor-el

more options

Pinned tabs are really small. I usually have 30 tabs open, and the only way I can tell what a tab is is to look at the title, is there a way to make the pinned tabs include the titles?

Pinned tabs are really small. I usually have 30 tabs open, and the only way I can tell what a tab is is to look at the title, is there a way to make the pinned tabs include the titles?

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

more options

You can see the title if you pass the mouse on the tab:

I also found this old questions, maybe help you:

more options

That last link has a custom style rule you can use to give pinned tabs the same 250 pixel maximum width as other tabs. If that's wider than you need, you could edit the rule to your preference.

more options

that is the way pinned tabs work.
You only see the favicon and not the text.
To see the text on tabs you have have to use normal tabs and reduce its width to a lower minimum.

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#tabbrowser-tabs .tabbrowser-tab:not([pinned]) { max-width:20px!important; }

You can also consider to hide the favicon to see more text.

#tabbrowser-tabs .tab-icon-image { display:none!important; }

you can delete the storage\moz-safe-about+home folder in the Firefox profile folder to reset snippets stored in IndexedDB.

You can use this button to go to the Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

Изменено cor-el