Je voudrais savoir s'il y a un update ou un module concernant la couleur des dossiers.
Merci
userchrome.css
Code : Tout sélectionner
/*
* Display unread messages in blue.
*/
treechildren::-moz-tree-cell-text(unread) {
font-weight: bold;
color: #3333FF !important;
}
/*
* If this unread messages is selected, revert to highlight text color
*/
treechildren::-moz-tree-cell-text(unread, focus, selected) {
color: HighlightText !important;
}
/*
* On a collapsed thread, if the top level message is read, but the thread
* has unread children, underline the text and make it italic and light blue.
*/
treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) {
text-decoration: underline;
font-style: italic;
color: #6666FF !important;
}
/*
* On a expanded thread, if the top level message is read, but the thread
* has unread children, make it italic and light blue.
*/
treechildren::-moz-tree-cell-text(container, hasUnread, read) {
font-style: italic;
color: #6666FF !important;
}
/*
* If this collapsed or expanded thread is selected, revert to highlight text color
*/
treechildren::-moz-tree-cell-text(container, closed, hasUnread, read, focus, selected),
treechildren::-moz-tree-cell-text(container, hasUnread, read, focus, selected) {
color: HighlightText !important;
}
#folderPaneBox treechildren::-moz-tree-cell-text(folderNameCol,
newMessages-true) {
color: #FF0000 !important
}
treechildren::-moz-tree-cell-text(hasUnreadMessages-true){
color: #0000FF !important;
}
#msgHeaderView {
background-color: #FFFFBF !important;
}
treechildren::-moz-tree-cell-text(unread){
color: #0000FF !important; font-weight: bold !important;
}
#folderPaneBox treechildren::-moz-tree-cell-text(folderNameCol,
newMessages-true) {
color: #FF0000 !important
}
treechildren::-moz-tree-cell-text(hasUnreadMessages-true){
color: #0000FF !important;
}
/* cacher icones taches et agenda */
#calendar-tab-button, #task-tab-button {
display: none !important }
/* test allread */
menuitem[label="All Read"], #folderPaneContext-markMailFolderAllRead {
-moz-binding: url(chrome://global/content/bindings/menu.xml#menuitem-iconic);
list-style-image: url(chrome://markallreadbutton/skin/menuicon.png) !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}