Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Овај сајт ће имати ограничену функционалност док га будемо ажурирали у циљу побољшања вашег искуства. Ако неки чланак не реши ваш проблем и желите да поставите питање, на располагању ће вам бити наше заједнице подршке @FirefoxSupport на Twitter-у и /r/firefox на Reddit-у.

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Сазнај више

Adjusting Icon spacing on Firefox Toolbars (using CSS)

  • 3 одговорa
  • 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