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

搜尋 Mozilla 技術支援網站

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

了解更多

Adjusting Icon spacing on Firefox Toolbars (using CSS)

  • 3 回覆
  • 1 有這個問題
  • 18 次檢視
  • 最近回覆由 cor-el

more options

I am trying to adjust the size and spacing of icons on specific Firefox toolbars (namely: Bookmarks toolbar, Status Bar, and Tab Bar).

I was originally using a very simple command in my userchrome,css to achieve this.

toolbarbutton {min-width: 30px !important;}

This sized and spaced the buttons nicely on ALL my toolbars at once (which was fine), but it also has an unwanted effect on some of the items in Firefox's Panel menu (i.e. the panel that opens when you click on the 'hamburger' menu).

I would therefore like to know how to exclude items in the Panel from being affected by the command above, or (even better still) how to apply the min-width command individually to each of the 3 toolbars (Bookmarks toolbar, Status Bar, Tab Bar) so they can be adjusted independently if needed.

Thanks

I am trying to adjust the size and spacing of icons on specific Firefox toolbars (namely: Bookmarks toolbar, Status Bar, and Tab Bar). I was originally using a very simple command in my userchrome,css to achieve this. toolbarbutton {min-width: 30px !important;} This sized and spaced the buttons nicely on ALL my toolbars at once (which was fine), but it also has an unwanted effect on some of the items in Firefox's Panel menu (i.e. the panel that opens when you click on the 'hamburger' menu). I would therefore like to know how to exclude items in the Panel from being affected by the command above, or (even better still) how to apply the min-width command individually to each of the 3 toolbars (Bookmarks toolbar, Status Bar, Tab Bar) so they can be adjusted independently if needed. Thanks

所有回覆 (3)

more options

What extensions and themes do you have installed?

The Status Bar was removed from Firefox 4.0, so if you have that now it must have been "added" by an extension or other customization.

As far as code to 'ID' the Tab bar via css:

#TabsToolbar

And the Bookmarks Toolbar:

#PersonalToolbar
more options

I'm using Status 4 Evar for my status bar. This used to have the ID #status4evar-status-bar but in recent versions it seems to also work with #status-bar. I can use either ID value to change the color or size of the status bar.

I already know the ID for each of the toolbars that I want to affect, but using the ID on its own just changes the toolbar background and not the 'buttons actually on the toolbar.

If I put the ID in front of the previous command that I was using, then that doesn't work either. Nothing changes.

e.g. #status-bar toolbarbutton {min-width: 30px !important;}

more options

Did you use the DOM Inspector to check what rules are applied to the toolbar buttons?

Note that in some cases you may have to use -moz-appearance:none!important; to override CSS rules that are applied automatically.


由 cor-el 於 修改