Ich verwende die "ContactSidebar 0.7+" und Mostly Crystal 2.0.0.4 mit "white marble". Anders als vom Autor gesagt sind bei mir - auch in einem neuen Profil - keine Streifen in den Listen zu sehen. Habe mir nun mühsam die codes zusammen gesucht und in allen drei Bereichen (Ordner, Emails und Adressbuch) Streifen, und zwar so:
/* *** STREIFEN IN DER FOLDER-LISTE *** */
#folderTree > treechildren::-moz-tree-row(odd) {
background-color: #E4E4E4 !important;
}
#folderTree > treechildren::-moz-tree-row(even) {
background-color: #FFFFFF !important;
}
/* *** STREIFEN IN DER MAIL-LISTE *** */
treechildren::-moz-tree-row(odd) {
background-color: #E4E4E4 !important;
}
treechildren::-moz-tree-row(even) {
background-color: #E4E4E4 !important;
}
#threadTree > treechildren::-moz-tree-row(selected, focus) {
background-color: green !important;
}
/* *** STREIFEN IN DER CONTACTSSIDEBAR (ADRESSENLISTE) *** abResultsTree */
#addrbook-ResultsTree > treechildren::-moz-tree-row(odd) {
background-color: #E4E4E4 !important;
color: #000000 !important;
}
#addrbook-ResultsTree > treechildren::-moz-tree-row(even) {
background-color: #FFFFFF !important;
color: #000000 !important;
}
#addrbook-ResultsTree > treechildren::-moz-tree-row(selected, focus) {
background-color: green !important;
color: #000000 !important;
ABER: Die letzten drei Zeilen funktionieren nicht, was bedeutet, dass in der Adressbuchliste bei Klick auf einen Namen der Zeilenhintergrund nicht "green" wird und die Schrift dieser Zeile nicht schwarz, sondern weiß und somit fast unlesbar wird.
Weiß jemand, wie dieser Code (drittletzte Zeile)
#addrbook-ResultsTree > treechildren::-moz-tree-row(selected, focus)
richtig heißt?