Windows 10 已于2025年10月14日停止支持。如果您正在使用 Windows 10,参见 这篇文章

Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

搜索 | 用户支持

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

详细了解

Bookmark items added by "Bookmark All Tabs" are displayed in gray when reached from the Bookmarks toolbar button. Why?

  • 1 个回答
  • 2 人有此问题
  • 90 次查看
  • 最后回复者为 drkh
  • 已解决

This picture shows my question:

http://drkh.myweb.hinet.net/Bookmarks_in_gray.jpg

In contrast, when the same folder in the above picture is opened from the "Show All Bookmarks" menu or the Bookmarks sidebar panel, the bookmark items are normally displayed in black, not in gray.

This picture shows my question: [http://drkh.myweb.hinet.net/Bookmarks_in_gray.jpg http://drkh.myweb.hinet.net/Bookmarks_in_gray.jpg] In contrast, when the same folder in the above picture is opened from the "Show All Bookmarks" menu or the Bookmarks sidebar panel, the bookmark items are normally displayed in black, not in gray.

由drkh于修改

被采纳的解决方案

I've got it!

It's the preference extensions.tabutils.bookmarkAllWithHistory used by the Tab Utilities extension. When the value of that preference is true (which is the default), you get the grayed-out bookmark items, which actually can work.

What's the purpose of the gray color? I don't know. I've just ask that question in a mozillazine thread maintained by the author of Tab Utilities.

Edit:

Today the author of Tab Utilities replied:"Yes, the gray color is intended. What other color would you suggest? You may also style it with css."

Edit 2:

The author of Tab Utilities also provided the following userChrome.css codes to change the color from gray to blue:


   .bookmark-item[history] {
     opacity: 1.0 !important;
     color: blue !important;
   }
定位到答案原位置 👍 0

所有回复 (1)

选择的解决方案

I've got it!

It's the preference extensions.tabutils.bookmarkAllWithHistory used by the Tab Utilities extension. When the value of that preference is true (which is the default), you get the grayed-out bookmark items, which actually can work.

What's the purpose of the gray color? I don't know. I've just ask that question in a mozillazine thread maintained by the author of Tab Utilities.

Edit:

Today the author of Tab Utilities replied:"Yes, the gray color is intended. What other color would you suggest? You may also style it with css."

Edit 2:

The author of Tab Utilities also provided the following userChrome.css codes to change the color from gray to blue:


   .bookmark-item[history] {
     opacity: 1.0 !important;
     color: blue !important;
   }

由drkh于修改