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

Want horizontal lines between message headers

  • 2 respostas
  • 2 têm este problema
  • 18 visualizações
  • Última resposta de Victoria-nola

more options

Once again following a Thunderbird update, the lines between my message headers have disappeared. Here is the previous question and solution I found: https://support.mozilla.org/en-US/questions/1256823

However, now, I still have the file userChrome.css set up the same way in my profile folder: C:\users\myname\appdata\roaming\thunderbird\profiles\jr8ewpri.default\chrome, but Thunderbird is not utilizing it. How do I get TB to recognize that file again?

Here is the content of the userChrome.css file:

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

/* Add bottom border to thread pane (message list) */

  1. threadTree treechildren:-moz-tree-row {
 border-bottom: 1px solid grey !important;

}

Thank you, --Victoria

Once again following a Thunderbird update, the lines between my message headers have disappeared. Here is the previous question and solution I found: https://support.mozilla.org/en-US/questions/1256823 However, now, I still have the file userChrome.css set up the same way in my profile folder: C:\users\myname\appdata\roaming\thunderbird\profiles\jr8ewpri.default\chrome, but Thunderbird is not utilizing it. How do I get TB to recognize that file again? Here is the content of the userChrome.css file: @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); /* Add bottom border to thread pane (message list) */ #threadTree treechildren:-moz-tree-row { border-bottom: 1px solid grey !important; } Thank you, --Victoria

Alterado por Victoria-nola em

Solução escolhida

There's an extra : needed after treechildren for this to work in TB 68 (see picture).

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

/* Add bottom border to thread pane (message list) */
#threadTree treechildren::-moz-tree-row {
  border-bottom: 1px solid threedlightshadow !important;
}
Ler esta resposta 👍 1

Todas as respostas (2)

more options

Solução escolhida

There's an extra : needed after treechildren for this to work in TB 68 (see picture).

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

/* Add bottom border to thread pane (message list) */
#threadTree treechildren::-moz-tree-row {
  border-bottom: 1px solid threedlightshadow !important;
}
more options

It worked! Thank you very much.

--Victoria