為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

bookmarks toolbar customization

  • 6 回覆
  • 4 有這個問題
  • 2 次檢視
  • 最近回覆由 cor-el

more options

I need to change the hover background color for the Bookmarks Toolbar. How?

I need to change the hover background color for the Bookmarks Toolbar. How?

被選擇的解決方法

There might be an add-on or theme that offers this feature, among others. I haven't searched for one.

Generally speaking, there are two other approaches to customizing the browser's chrome: (1) style rules in the userChrome.css file, or (2) style rules in the Stylish add-on.

I can write a style that is partially successful: it bolds the text of the buttons when hovered. However, the background color doesn't change as specified:


toolbarbutton.bookmark-item:hover { font-weight:bold !important; background-color:green !important; }

Someone else will need to chime in on whether there is a secret to this or whether it's futile.

從原來的回覆中察看解決方案 👍 1

所有回覆 (6)

more options

選擇的解決方法

There might be an add-on or theme that offers this feature, among others. I haven't searched for one.

Generally speaking, there are two other approaches to customizing the browser's chrome: (1) style rules in the userChrome.css file, or (2) style rules in the Stylish add-on.

I can write a style that is partially successful: it bolds the text of the buttons when hovered. However, the background color doesn't change as specified:


toolbarbutton.bookmark-item:hover { font-weight:bold !important; background-color:green !important; }

Someone else will need to chime in on whether there is a secret to this or whether it's futile.

more options

Thanks. Yes, I'm looking for the specific CSS to use in the userChrome.css. Couldn't find a complete CSS list of rules or more detailed info on the Bookmarks Toolbar. For myself, the current rules add too much padding and too much rounding on the corners.

more options

Hey, I've tried your CSS and it worked! :) Green background and added -moz-border-radius:0 > all good!

more options

You beat me back to this thread. If you are using Stylish, I think this extra line is needed, at least on Windows:


Okay, I think I found it. You have to disable the platform-specific theming in order to style the buttons yourself:


toolbarbutton.bookmark-item { -moz-appearance:none !important; }

As far as other style rules, I think then you would be able to use border, margin, and padding rules just as you would for an input type button.

由 jscher2000 - Support Volunteer 於 修改

more options

Thanks again. Don't want to go into massive customization, just that hover effect. Changed the background color and border radius... all good. I'll keep this info for future reference. Used userChrome.css. While using the above rules you can change the hor padding on links, the vert can't be overwritten. Didn't dig too deep though.

more options

You may need to use the padding on the .toolbarbutton-text selector.

#personal-bookmarks .bookmark-item > .toolbarbutton-text {}