selbst mit dem e in timebar funktioniert dein CSS Code bei mir nicht (macOS Version)
Hm, funktioniert hier ohne Probleme.
selbst mit dem e in timebar funktioniert dein CSS Code bei mir nicht (macOS Version)
Hm, funktioniert hier ohne Probleme.
Die Hintergrundfarbe ändert sich aber nicht. Den Selektor geben die Entwicklerwerkzeuge aus. Was ist falsch an den Code?
Weil die Selektoren nicht korrekt gesetzt sind, Du hast Leerschritte gesetzt, wo sie nicht hingehören, so ↓ läuft das bei mir schon recht lange, vergleiche bitte mit Deinen Einträgen.
Die Datei calendar-task-tree.css (unter /usr/lib/thunderbird/omni.ja chrome/calendar/skin/classic/calendar/shared/ editieren. Dort die Einträge mit "green", "red" und "inprogress", "completed" ... einfach löschen.
Damit ists erledigt ;-).
Was nicht unbedingt eine dauerhafte Lösung ist, denn die omni.ja ist eine Datei die bei einem Update durchaus ersetzt werden könnte.
Beiträge zu Problemen mit 102*
Hm,
wieso zeigen sich bei mir nicht die geringsten Probleme, sind nicht alle betroffen?
Wie kann ich einen Filter erstellen für das Adressbuch mit den Adressen meiner Freunde, Adressbuch heißt "Freunde". Habe einen Unterordner "Freunde" unter Posteingang. Ich blicks einfach nicht, wie ich den Filter erstellen muss, Oder geht das nicht mit einem ganzen Adressbuch?
Du kannst keinen Filter auf eine Bedingung mit dem Adressbuch Freunde erstellen, Du musst den Filter auf Bedingung Von und Ist in meinem Adressbuch → Freunde anlegen.
Vielen Dank an euch und natürlich an dharkness21. Mit dem CCS kann ich was anfangen.
Das ↓ ist derzeit meine letzte Lösung, ist aber wohl noch nicht der letzte Schritt, ein paar kleine Anpassungen werden wohl noch nötig sein.
#calendar-task-tree treechildren::-moz-tree-row(inprogress) {
-moz-appearance: none !important;
background-color: #9e6767 !important;
}
#calendar-task-tree treechildren::-moz-tree-row(inprogress, selected) {
-moz-appearance: none !important;
background-color: #442c2c !important;
}
#calendar-task-tree treechildren::-moz-tree-row(inprogress, selected, focus) {
-moz-appearance: none !important;
background-color: #593a3a !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress) {
-moz-appearance: none !important;
color: #08245e !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, selected) {
color: #0fbdfc !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, selected, focus) {
color: #0082FC !important;
}
#calendar-task-tree treechildren::-moz-tree-row(inprogress, hover),
#calendar-task-tree treechildren::-moz-tree-row(inprogress, selected, hover),
#calendar-task-tree treechildren::-moz-tree-row(inprogress, selected, focus, hover) {
background-color: #D1E2F2 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, hover),
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, selected, hover),
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, selected, focus, hover) {
text-decoration: none !important;
color: #000 !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue) {
-moz-appearance: none !important;
background-color: #8c5b5b !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue, selected) {
-moz-appearance: none !important;
background-color: #442c2c !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue, selected, focus) {
-moz-appearance: none !important;
background-color: #593a3a !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue) {
-moz-appearance: none !important;
color: #F20 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, selected) {
color: #ff7a7a !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, selected, focus) {
color: #ff443e !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue, hover),
#calendar-task-tree treechildren::-moz-tree-row(overdue, selected, hover),
#calendar-task-tree treechildren::-moz-tree-row(overdue, selected, focus, hover) {
background-color: #D1E2F2 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, hover),
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, selected, hover),
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, selected, focus, hover) {
text-decoration: none !important;
color: #000 !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed) {
-moz-appearance: none !important;
background-color: #b9b9bb !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed, selected) {
-moz-appearance: none !important;
background-color: #545455 !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed, selected, focus) {
-moz-appearance: none !important;
background-color: #808082 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed) {
-moz-appearance: none !important;
text-decoration: none !important;
color: #006800 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, selected) {
text-decoration: none !important;
color: #5bbf72 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, selected, focus) {
text-decoration: none !important;
color: #6de585 !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed, hover),
#calendar-task-tree treechildren::-moz-tree-row(completed, selected, hover),
#calendar-task-tree treechildren::-moz-tree-row(completed, selected, focus, hover) {
background-color: #D1E2F2 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, hover),
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, selected, hover),
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, selected, focus, hover) {
text-decoration: none !important;
color: #000 !important;
}
Alles anzeigen
Da ich Thunderbird komplett an meinen Wünschen angepasst habe, werden bei mir diese Farben wohl ausgeblendet.
Ich habe mal ein wenig getüftelt, teste mal das ↓ in der userChrome.css.
#calendar-task-tree treechildren::-moz-tree-row(inprogress) {
-moz-appearance: none !important;
background-color: #8c5b5b !important;
}
#calendar-task-tree treechildren::-moz-tree-row(inprogress, selected) {
-moz-appearance: none !important;
background-color: #442c2c !important;
}
#calendar-task-tree treechildren::-moz-tree-row(inprogress, selected, focus) {
-moz-appearance: none !important;
background-color: #593a3a !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress) {
-moz-appearance: none !important;
color: #02F !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, selected) {
color: #0fbdfc !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(inprogress, selected, focus) {
color: #0082FC !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue) {
-moz-appearance: none !important;
background-color: #8c5b5b !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue, selected) {
-moz-appearance: none !important;
background-color: #442c2c !important;
}
#calendar-task-tree treechildren::-moz-tree-row(overdue, selected, focus) {
-moz-appearance: none !important;
background-color: #593a3a !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue) {
-moz-appearance: none !important;
color: #F20 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, selected) {
color: #ff7a7a !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(overdue, selected, focus) {
color: #ff443e !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed) {
-moz-appearance: none !important;
background-color: #b9b9bb !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed, selected) {
-moz-appearance: none !important;
background-color: #545455 !important;
}
#calendar-task-tree treechildren::-moz-tree-row(completed, selected, focus) {
-moz-appearance: none !important;
background-color: #808082 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed) {
-moz-appearance: none !important;
color: #006800 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, selected) {
color: #5bbf72 !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text(completed, selected, focus) {
color: #00a200 !important;
}
Alles anzeigen
P.S.:
Für Wiederkehrende Aufgaben habe ich allerdings noch keine Lösung, da bin ich noch am Suchen.
PP.S.:
Die Farben sind allerdings von kopierten Einträgen und passen noch nicht wirklich, die musst Du noch anpassen.
(ich nehme an zum email-Center von Telekom)
Eventuell sind Konfiguration, Benutzername oder Passwort nicht korrekt".
Soweit ich weiß, muss bei T-Online für den Mail-Abruf per E-Mail-Client ein separates Passwort eingerichtet werden.
Guckst Du da → #T-Online - E-Mail-Passwort.
hier ist etwas, was bei mir funktioniert.
Ausgehend von der Schriftgröße von Ronny27 wäre das ↓ meine Lösung, allerdings würde mich font-weight: bold !important; stören, sprich ich würde das entfernen und das font-size: 16px !important; verwenden.
#calendar-task-tree treechildren::-moz-tree-row,
#calendar-task-tree treechildren::-moz-tree-cell,
#calendar-task-tree treechildren::-moz-tree-cell-text {
appearance: none !important;
min-height: 24px !important;
}
#calendar-task-tree treechildren::-moz-tree-cell-text {
font-size: 15px !important;
font-weight: bold !important;
}
PrintingTools NG 2.1.1 scheint nicht kompatibel mit bb zu sein. Ein Klick auf den Toolbarbutton oder im Menu führt keinerlei Funktion aus.
Nach einem downgrade auf Version 2.1.0 funktioniert es wieder.
Hm,
das kann ich nicht bestätigen, hier funktioniert die Version 2.1.1 ohne Probleme.
Wie und wo ist einzustellen, daß ein Klick auf den "Senden"-Button (in der Mail drin) die Mail im Postausgangsordner ablegt, aber NOCHT NICHTS verschickt wird?
Nirgendwo, Du suchst eine Erweiterung, die das für Dich erledigt, entweder 'Später Senden'-Schaltfläche (Send Later Button) - 1.5.3 oder Später Senden - 7.4.4.
Was mich gewundert hat ist dass bei der Neuinstallation Veränderungen (Ordneranlagen, die ich im alten TB gemacht hatte) wieder
im neuen TB mit aufgetaucht sind.
Das spricht doch dafür, das das GMX-Konto schon im Thunderbird eingerichtet ist, überprüfe das doch mal in den Konto-Einstellungen und schaue ob die Einstellungen für das Konto den Vorgaben von GMX entspricht.
Da kann man eine ganze Menge für eigene Belange modifizieren.
Nur leider noch immer nicht selbst angelegte Ordner, deren Schrift und Hintergrund ist noch immer nicht in der Farbe anpassbar. ![]()
Hallo Kuk Katto,
teste mal das ↓, eingetragen in die userChrome.css.
Schafft Übersicht und dient u.a. auch der besseren Erkennbarkeit und Einordnungsmöglichkeit
Nicht wirklich, mit der Standardanzeige erkennst man sofort, welches die aktuellsten Mails sind, mit der von Dir gewünschten Anzeigeform muss man immer erst genau hinschauen.
also wenn ich nur in der eMailliste das haben möchte
Hab ich doch gerade eben gesagt, nur halt mit anderen Worten.
jetzt müßte ich aiuch mal nachfragen wegen der Schreibweise.
was wäre die bessere nennung
treechildren::-moz-tree-cell-text(senderCol)
oder
#senderCol
Die von mir verwendete innerhalb von treechildren, oberhalb von treechildren, also bei treecol wäre es dann #senderCol.
Ich dachte, die "Messagepane" wäre der Nachrichtenbereich.
Doch, genau das war gemeint.
Und es ist in ein paar Tausend Dateien abgespeichert. In (mindestens) einer davon muss ja wohl die Tabelle hinterlegt sein. Aber welche?
Nein, die Tabelle wird beim Rendern der GUI/Mail IIRC dynamisch generiert, sie hat ja durchaus eine unterschiedliche Anzahl an Zeilen.