>>390
> 検索でoddを消したら出たとかあったのですが

それでこれか
> #threadTree treechildren::-moz-tree-row {
> background-color: #000000 !important;
> }
交互に背景色変えたいのに odd も even も指定しないとかバカすぎて頭痛い
黒で全部塗りつぶされちゃうだろが!

#threadTree treechildren::-moz-tree-row(odd) {
background-color: #f5f7fa !important;
}
#threadTree treechildren::-moz-tree-cell-text(selected) {
color: white !important;
}
#threadTree treechildren::-moz-tree-row(hover) {
background-color: -moz-Dialog !important;
}
#threadTree treechildren::-moz-tree-row(selected) {
background-color: Highlight !important;
}
#threadTree treechildren::-moz-tree-row(selected, hover) {
background-color: Highlight !important;
}

↑ライトモード用でダークモードのことは考慮してないんで
あとは勝手にいじること