Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

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”.

Learn More

How to get the 'x' close button by hovering over unselected tabs.

  • 6 respostas
  • 1 tem este problema
  • 1 visualização
  • Última resposta de Rose1

more options

How to remove the red x hovering over the close buttons. I want it plain x

How to remove the red x hovering over the close buttons. I want it plain x

Todas as respostas (6)

more options

Hello,

In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see How do I create a screenshot of my problem?

Once you've done this, attach the saved screenshot file to your forum post by clicking the Browse... button below the Post your reply box. This will help us to visualize the problem.

Thank you!

more options

I want a plain x without a highlight no color.

more options

My screenshot doesn't work. That's weird. I click on browse then click reply. I don't know why.

more options
more options

The close button comes from this SVG image:

  • chrome://global/skin/icons/close.svg
  • chrome://global/skin/global.css

Add code to the userChrome.css file below the default @namespace line.


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

.close-icon:hover {
 background-image: -moz-image-rect(url("chrome://global/skin/icons/close.svg"), 0, 16, 16, 0) !important;
 background-color: #ccc !important;
}

You can set the background color to a color of your choice to see at least a hover effect that the button is active.


The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
more options

Can't I remove the hover affect at all? The older versions didn't have that.