1行おきに背景色

受信メール・送信メール一覧の行を縞々にします。
userChrome.cssに以下のように記述して下さい。
userChrome.cssがプロファイルフォルダ内のchromeフォルダ内にない場合は新たに作成して下さい。
#threadTree treechildren::-moz-tree-row(odd) {
background-color: #f5f5f5 !important;
}
#threadTree treechildren::-moz-tree-row(selected) {
background-color: -moz-Dialog !important;
}
#threadTree treechildren::-moz-tree-row(selected, focus) {
background-color: Highlight !important;
}
参考
- mozillaZine 日本語版 - MZ-jp フォーラム
- mail.jar内のcontent\messenger\messenger.xul

