Page 1 sur 1

Surligner les messages importants

Publié : 28 janv. 2006, 15:06
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

Publié : 28 janv. 2006, 15:46
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

Publié : 29 janv. 2006, 01:28
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

Publié : 29 janv. 2006, 20:24
par frost
Justement, je voudrais si c'est possible de faire afficher la ligne en couleur... Une fonction qui me serait trés utile...

Oui ça existe

Publié : 29 janv. 2006, 23:52
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