Hallo,
ich will per userChrome.css die Schriftgröße in allen Mails vergrößern.
Ich habe dazu per Forensuche einiges dazu gefunden, das treffendste:
https://www.thunderbird-mail.de/forum/viewtopi…t=47825&start=0
Ich komme trotzdem nicht weiter. Meine aktuelle userChrome.css:
Code
/* --- Ungelesene Mails und Postings besonders hervorheben. --- */
treechildren::-moz-tree-cell-text(unread) {
font-weight: bold ! important;
text-decoration: underline ! important;
color: blue ! important;
}
/* --- Neue Mails und Postings besonders hervorheben. --- */
treechildren::-moz-tree-cell-text(new) {
font-weight: bold ! important;
text-decoration: underline ! important;
color: red ! important;
Alles anzeigen
Meine userContent.css:
CSS
/*
* Ignore user-specified style in mail messages.
* See http://bugzilla.mozilla.org/show_bug.cgi?id=18427 for details.
*/
.moz-text-html font, .moz-text-html div, .moz-text-html body {
font-size: 13px !important;
}
Hat vielleicht jemand einen Tip ?