- Thunderbird-Produkt
- Thunderbird für Windows
- Thunderbird-Version
- 148.0.1
- Betriebssystem
- Win11Pro
Hallo zusammen,
ich hab hier ein kleines Problem, welches mit den Anpassungen in der userchrome.css zu tun hat. Funktionssymbole rechts oben zeigen nur Quadrate.

Zunächst habe ich einen Bug in der neuen Version vermutet und diesen bei Bugzilla gemeldet:
2025150 - Function symbols right upper corner are not shown correctly since V.142
RESOLVED (nobody) in Thunderbird - Theme. Last updated 2026-03-23.
bugzilla.mozilla.org
Nach dem Hinweis, den Fehlerbehebungsmodus zu aktivieren hat sich herausgestellt, daß es wohl an den Eintragungen in der .css liegt...
Daher poste ich hier mal meinen .css-Inhalt mit der Bitte um Prüfung, was das Problem verursacht:
CSS
/*Abwechselnde Hintergründe in der Email-liste [hellbeige / weiß]
*/
#threadTree tr[is="thread-row"]:nth-child(1n+1) {
background-image: none !important;
background-color: #FAEBD7 !important;
}
#threadTree tr[is="thread-row"]:nth-child(2n+1) {
background-image: none !important;
background-color: #FFF !important;
}
/*Schrift [weiß] auf dunkler Farbe [hellblau]; zeigt die zuletzt besuchte Zelle (Auswahlfarbe für mehrere Zeilen)
*/
#threadTree tr[is="thread-row"]:nth-child(1n+1).selected,
#threadTree tr[is="thread-row"]:nth-child(2n+1).selected {
background-image: none !important;
background-color: #6495ED !important;
color: #FFF !important;
}
/*Focus (angewählte Mail) [weiß auf schwarzgrün] Noch zu bestimmen; alles auskommentiert
#threadTree:focus-within tr:nth-child(1n+1).selected {
background-image: none !important;
background-color: #003E00 !important;
color: #FFF !important;
}*/
/*Focus (angewählte Mail) [weiß auf ocker] Noch zu bestimmen; alles auskommentiert
#threadTree:focus-within tr[is="thread-row"]:nth-child(2n+1).selected {
background-image: none !important;
background-color: #B8860B !important;
color: #FFF !important;
}*/
/*Focus (angewählte Mail), Farbe Schwarz, Hintergrund lila
*/
#threadTree tr[is="thread-row"]:nth-child(1n+1):hover,
#threadTree tr[is="thread-row"]:nth-child(2n+1):hover,
#threadTree tr[is="thread-row"]:nth-child(1n+1).selected:hover,
#threadTree tr[is="thread-row"]:nth-child(2n+1).selected:hover,
#threadTree:focus-within tr[is="thread-row"]:nth-child(1n+1).selected:hover,
#threadTree:focus-within tr[is="thread-row"]:nth-child(2n+1).selected:hover {
background-image: none !important;
background-color: #FF69B4 !important;
color: #000 !important;
}
/*Schwarzer Trennstrich zwischen den Spalten
*/
tbody[is="tree-view-table-body"] :where(td) {
border-right: 1px solid #000 !important;
}
/*Tests*/
/* Test Highlite eingegangene Mails & Ordner (3) :
*/
li[is="folder-tree-row"].unread{
& > .container {
& > .name {
color: red !important;
}
}
}
/* Thread pane unread colour table view */
#threadTree tr[data-properties~="unread"] {
color: red !important;
font-weight: normal !important; }
li[is="tree-view-table-body"] {
& > .table-layout[data-properties~="unread"]:not([data-properties~="tagged"]) {
color: red !important;
}
}
/* Arial Email-Übersicht
*/
* {
font-family: arial !important
}
* {
font-size: 14pt !important *
}
#threadTree {
font-size: 12px !important;
}
/* Ordnerbaum: Padding oben und unten entfernen */
#folderTree treechildren::-moz-tree-row {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
li[is="folder-tree-row"].new-messages{
& > .container {
& > .name {
color: red !important;
}
}
}
li[is="tree-view-table-body"] {
& > .table-layout[data-properties~="new"]:not([data-properties~="tagged"]) {
color: red !important;
}
}
/* Thread pane unread colour table view */
#threadTree tr[data-properties~="unread"] {
color: red !important;
font-weight: normal !important; }
Alles anzeigen
Es sind alles Einträge die ich von mehreren Unterstützern empfohlen bekommen und selbst angepaßt habe habe, mangels tieferer Stylesheet-Kenntnisse finde ich aber das Problem nicht...