Jonathan N. Little schrieb am 23.08.2016 um 15:23:
Jonathan N. Little wrote:
Frank Häusler wrote:
This is too Firefox-only.
This will also help:
<http://kb.mozillazine.org/UserChrome.css_Element_Names/IDs>
I cannot find where I squirreled way the reference for SeaMonkey's
chrome elements. You can research what you want with DOM Inspector
CTRL+SHIFT+I
And in the inspect URL box enter:
chrome://messenger/content/messenger.xul
done... some specific search lead to the result.
use the following code in your userChrome.css to design the folder-pane
in SeaMonkey or Thunderbird as you like it:
----------------- snip -------------------------
/* I like it dark in order to avoid eye-cancer !!! */
/* Changes the background-color of folder-pane (both settings needed!!) */
#folderTree {
background-color: #c6c5ce !important;
}
#folderTree > treechildren::-moz-tree-row(odd) {
background-color: #c6c5ce !important;
}
/* Changes the whole row-color of selected folder in the folderTree */
#folderTree treechildren::-moz-tree-row(selected) {
background-color: #FF7373 !important;
}
#folderTree treechildren::-moz-tree-row(selected, focus) {
background-color: #FF7373 !important;
border: none !important;
}
/* Changes default font-color in the folderTree */
#folderTree {
color: black !important;
}
/* Changes the font-color of selected folder in the folderTree */
#folderTree treechildren::-moz-tree-cell-text(selected) {
color: yellow !important;
}
/* Gives a background for the text only: */
/*#folderTree treechildren::-moz-tree-cell-text(selected) {
background-color: #your choice !important;
}
#folderTree treechildren::-moz-tree-cell-text(selected, focus) {
background-color: #your choice !important;
border: none !important;
}
*/
----------------- snip -------------------------
thanx to Jonathan N. Little and all others:
http://forums.mozillazine.org/viewtopic.php?f=39&t=2142689
http://www-archive.mozilla.org/support/thunderbird/tips#beh_downloadstartup
Frank
_______________________________________________
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey