Surligner les messages importants
Modérateur : J2m06
Surligner les messages importants
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
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
Frost
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
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
n'oubliez pas de consulter le portail et ses articles
Je confirme asap29, tes gros yeux ont biens vusasap29 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


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
Oui ça existe
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 :
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
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;
}
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
Qui est en ligne ?
Utilisateurs parcourant ce forum : Semrush [Bot] et 6 invités