为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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于修改