Surligner les messages importants

Vous cherchez une alternative viable et sécurisée pour votre courrier ? Une conjuration s'est abattue sur vous et vous ne réussissez pas à trouver réponse satisfaisante à propos de Mozilla Thunderbird ? Cliquez donc par là…

Modérateur : J2m06

frost
Arias
Messages : 16
Inscription : 08 oct. 2005, 10:52

Surligner les messages importants

Message par frost »

Bonjour à toutes et tous,

Je suis à la recherche d'une extension me permettant d'afficher un mail repertorié important en rouge (ou tout autre couleur), c'est à dire un peu comme quand on utilise l'option étiquette... seulement l'option étiquette change la couleur du texte, alors que moi je chercher à avoir toute la ligne d'une certaine couleur (les utilisateurs de lotus notes comprendront mon point de vue); par exemple je voudrais que mes mails provenant du site geckozone apparaissent en bleu, et ainsi de suite
Amicalement

Frost
asap29
Animal mythique
Messages : 12088
Inscription : 30 oct. 2003, 00:34

Message par asap29 »

sur la 1.5 l'etiquette ne change pas la couleur du texte a moins que je me trompes
avant sur les autres versions le texte etait de couleur correpondant a l'etiquette alors que maintenant c'est le fond qui prends la couleur de l'étiquette-->bizarre
si votre pb est résolu modifiez votre premier sujet en ajoutant "resolu"-merci
n'oubliez pas de consulter le portail et ses articles
grunge
Varan
Messages : 1357
Inscription : 16 déc. 2005, 23:03

Message par grunge »

asap29 a écrit :sur la 1.5 l'etiquette ne change pas la couleur du texte a moins que je me trompes
avant sur les autres versions le texte etait de couleur correpondant a l'etiquette alors que maintenant c'est le fond qui prends la couleur de l'étiquette-->bizarre
Je confirme asap29, tes gros yeux ont biens vus :shock: :shock:
Mais ceci qu'au moment ou tu lui donnes la couleur de l'étiquette .
Dès que tu selectionnes un autre message la ligne de couleur s'enlève et c'est bien le texte qui prends la couleur
frost
Arias
Messages : 16
Inscription : 08 oct. 2005, 10:52

Message par frost »

Justement, je voudrais si c'est possible de faire afficher la ligne en couleur... Une fonction qui me serait trés utile...
Amicalement

Frost
Maevine
Arias
Messages : 2
Inscription : 14 déc. 2005, 11:41

Oui ça existe

Message par Maevine »

Moi aussi je cherchais à le faire parce que je trouve que la simple mise en couleur n'est pas trop repérable au premier coup d'oeil.

Alors voilà la technique.

Il faut créer un fichier (avec notepad++ par exemple) qui s'appelera "userChrome.css".

Et dedans il faut copier le texte suivant :

Code : Tout sélectionner


/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, sele/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}/* ::::: thread labels: reverse the background/text coloring ::::: */

/* This works with the default label colors only.
   Default label colors: #FF0000, #FF9900, #009900, #3333FF, #993399 */

treechildren::-moz-tree-row(lc-FF0000) {
  background-color: #FF0000 !important;
}
treechildren::-moz-tree-row(lc-FF0000, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}
treechildren::-moz-tree-cell-text(lc-FF0000, selected) {
  color: #FF0000 !important;
}

treechildren::-moz-tree-row(lc-FF9900) {
  background-color: #FF9900 !important;
}
treechildren::-moz-tree-row(lc-FF9900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-FF9900, selected) {
  color: #FF9900 !important;
}

treechildren::-moz-tree-row(lc-009900) {
  background-color: #009900 !important;
}
treechildren::-moz-tree-row(lc-009900, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-009900) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-009900, selected) {
  color: #009900 !important;
}

treechildren::-moz-tree-row(lc-3333FF) {
  background-color: #3333FF !important;
}
treechildren::-moz-tree-row(lc-3333FF, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-3333FF, selected) {
  color: #3333FF !important;
}

treechildren::-moz-tree-row(lc-993399) {
  background-color: #993399 !important;
}
treechildren::-moz-tree-row(lc-993399, selected) {
  background-color: -moz-Dialog !important;
}
treechildren::-moz-tree-cell-text(lc-993399) {
  color: white !important;
}
treechildren::-moz-tree-cell-text(lc-993399, selected) {
  color: #993399 !important;
}
Ensuite, il faut placer ce fichier dans le répertoire chrome de ton profil Thunderbird.

On doit surement pouvoir effacer les lignes qui ne nous intéresse pas pour n'avoir qu'un type d'étiquettes qui se mette en surbrillance (car là, tous les types sont concernés).

A+ Maevine
Répondre

Qui est en ligne ?

Utilisateurs parcourant ce forum : Semrush [Bot] et 6 invités