Cor de Indicação para Novos E-mails?

2

Atualizei recentemente o Mozilla Thunderbird para a v3 no Windows XP.

Na v2, acho que quando novos e-mails (POP3) foram baixados, havia um pequeno ícone de estrela ao lado das minhas pastas locais, onde ele é filtrado para indicar novos e-mails. Na v3, parece que eles mudaram para usar cores diferentes para destacar a pasta. Enquanto as pastas com e-mails não lidos existentes são destacadas em negrito, as pastas com novos e-mails não lidos são destacadas nesta cor esverdeada cinza claro que é realmente difícil de ver.

Alguém sabe como modificar a cor? Eu estou supondo que é ou algumas linhas em um arquivo userChrome.css , ou modificar um campo no editor de configuração.

    
por KTC 06.05.2010 / 18:20

2 respostas

1

Isso pode ser feito modificando userChrome.css :

userChrome.css in the chrome folder is a CSS file that can be used to change the way Mozilla applications' interfaces look. This file does not exist in a new profile. You can create it manually.

De Thunderbird 3.0 - Novos recursos e alterações / temas :

Color for New Mail

Previously, new messages in a folder were indicated by an orange star and the folder turning bold. In the default theme, the star has been replaced by the folder name changing color. Unfortunately, this color is picked from the desktop theme, and may result in awkward combinations. To set the color to something more suitable, use the following entry:

Windows and Linux:

treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true) {
color: red !important; }

This will change the color for all states. You can have different colors, e.g., when the folder is selected (omit the focus part below), and when it has focus:

treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true, selected, focus) { color: orange !important; }

Using the two entries above, the new-mail indication results in a red folder name if it isn't focused, and turns orange if it has focus (in which case the background color should be blue with the Windows Classic desktop theme, thus giving a nice contrast). You can specify any color as #rrggbb with 2-digit hexadecimal values 00-FF for red, green, and blue.

    
por 11.05.2010 / 14:23
0

Esta página parece indicar o caminho.

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

#threadTree treechildren::-moz-tree-cell-text(unread){color:red!important}
    
por 09.05.2010 / 17:13