Ich habe bereits versucht, die userChrome.css entsprechend anzupassen, aber bisher ohne Erfolg. Hier sind einige der Dinge, die ich ausprobiert habe:
treechildren::-moz-tree-cell-text(lc-Wichtig) { color: #FF0000 !important; } → Keine Wirkung
treechildren::-moz-tree-row(lc-Wichtig) { background-color: #FFD700 !important; } → Ebenfalls keine Wirkung
Sicherstellung, dass toolkit.legacyUserProfileCustomizations.stylesheets auf true gesetzt ist
Thunderbird mehrfach neu gestartet, um Änderungen zu übernehmen
Die Threadpane ist nicht mehr treechildren, sondern table, also können die ↑ Einträge nicht mehr greifen, bitte teste mal das ↓ CSS-CSchnipsel.
CSS
#threadTree tbody tr[data-properties~="tagged"] :where(td),
#threadTree[rows="thread-card"] tbody tr[data-properties~="tagged"] :where([class="card-container"]) {
background-color: var(--tag-color) !important;
color: var(--tag-contrast-color);
}
#threadTree tbody tr.selected[data-properties~="tagged"] :where(td),
#threadTree[rows="thread-card"] tbody tr.selected[data-properties~="tagged"] :where([class="card-container"]),
#threadTree[rows="thread-card"] tbody tr.selected[data-properties~="untagged"] :where([class="card-container"]) {
background-color: #003E00 !important;
color: #FFF !important;
}
#threadTree tbody tr[data-properties~="tagged"]:hover :where(td),
#threadTree tbody tr[data-properties~="untagged"]:hover :where(td),
#threadTree[rows="thread-card"] tbody tr[data-properties~="tagged"]:hover :where([class="card-container"]),
#threadTree tbody tr.selected[data-properties~="tagged"]:hover :where(td),
#threadTree tbody tr.selected[data-properties~="untagged"]:hover :where(td),
#threadTree[rows="thread-card"] tbody tr.selected[data-properties~="tagged"]:hover :where([class="card-container"]),
#threadTree[rows="thread-card"] tbody tr.selected[data-properties~="untagged"]:hover :where([class="card-container"]) {
background-color: #D1E2F2 !important;
color: #000 !important;
}
Alles anzeigen