搜索 | 用户支持

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

Learn More

Any way to change the color of individual Bookmark folders?

  • 8 个回答
  • 2 人有此问题
  • 493 次查看
  • 最后回复者为 ZORRO

more options

I use the Bookmarks Bar extensively. But all the folders are the same color. I would find it much easier to find things quickly if I could change individual folder colors.

Any way to do this?

I'm already using Jscher's excellent UserChrome script to make the folders an attractive yellow, instead of gray. But can this be done for individual foders?

I use the Bookmarks Bar extensively. But all the folders are the same color. I would find it much easier to find things quickly if I could change individual folder colors. Any way to do this? I'm already using Jscher's excellent UserChrome script to make the folders an attractive yellow, instead of gray. But can this be done for individual foders?

被采纳的解决方案

You can experiment with code like this in the userChrome.css file. Use suitable color for the #rrggbb property values. You can omit the color properties. If you do not use the !important flag then you get the usual hovering effects.


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

#PlacesToolbarItems > .bookmark-item[container] {font-weight: 600; padding-top: 5px !important}
#PlacesToolbarItems > .bookmark-item[container] {background-color: #f4f4ff;}

#PlacesToolbarItems > .bookmark-item[container][label="xx" i]       {background-color: #rrggbb; color: #rrggbb}
#PlacesToolbarItems > .bookmark-item:not([container])[label="xx" i] {background-color: #rrggbb; color: #rrggbb}

[label="xx] needs to be an exact match and [label="xx" i] means ignore case. You can use [label^="xx"] and [label*="xx"] for individual bookmarks with similar labels.

定位到答案原位置 👍 1

所有回复 (8)

more options

Go to the Mozilla Add-ons Web Page {web Link} (There’s a lot of good stuff here) and search for what you want.

more options

Thanks for the suggestion, but I've looked and there is no add-on for this!

more options

I called for more help.

more options

选择的解决方案

You can experiment with code like this in the userChrome.css file. Use suitable color for the #rrggbb property values. You can omit the color properties. If you do not use the !important flag then you get the usual hovering effects.


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

#PlacesToolbarItems > .bookmark-item[container] {font-weight: 600; padding-top: 5px !important}
#PlacesToolbarItems > .bookmark-item[container] {background-color: #f4f4ff;}

#PlacesToolbarItems > .bookmark-item[container][label="xx" i]       {background-color: #rrggbb; color: #rrggbb}
#PlacesToolbarItems > .bookmark-item:not([container])[label="xx" i] {background-color: #rrggbb; color: #rrggbb}

[label="xx] needs to be an exact match and [label="xx" i] means ignore case. You can use [label^="xx"] and [label*="xx"] for individual bookmarks with similar labels.

more options

Thanks so much Cor-el! I'll give this a try and let you know how I got on. Thanks! :-)

more options

Cor-el! THANK YOU! This script worked beautifully! This has made me SO HAPPY! Thank you! :-)

Not important, but I don't suppose you know a script for the rollover color? Or the folder icon color?

Also, the script you gave contained a line with "bookmark-item:not" - what does the "not" one do?

more options

[container] means that the rule applies to a container (folder). not([container]) means that the rule applies to a normal bookmark (i.e. not a folder).

For rollover you can use the :hover pseudo class selector.

#PlacesToolbarItems > .bookmark-item[container][label="xx"]:hover {...}

You probably need to use the !important flag to override existing rules.

more options

on the same subject, how can i give a color to folders that i create on the bookmark bar ?