Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Adjusting Icon spacing on Firefox Toolbars (using CSS)

  • 3 respostas
  • 1 tem este problema
  • 18 visualizações
  • Última resposta de 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

Todas as respostas (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.


Alterado por cor-el em