Beiträge von dharkness21
-
-
Bei geladener userchrome.css habe ich das Problem, dass mir im Verfassen-Fenster die Zeilen für die Eingabe der E-Mailadresse/Empfänger nicht angezeigt werden
Möglich ist alles, aber ohne Deine userChrome.css zu kennen, kann man das nicht wirklich sagen.
-
-
Hallo bananovic,
teste mal das ↓.
CSS
Alles anzeigen#week-view .day-column-heading { background-color: #0082FC !important; color: #FFF !important; } #week-view .day-column-selected .day-column-heading { background-color: #006800 !important; color: #FFF !important; } #day-view .day-column-heading, #week-view .day-column-today .day-column-heading { background-color: #FFC0C0 !important; color: #000 !important; } #week-view .day-column-today.day-column-selected .day-column-heading { background-color: #F20 !important; color: #FFF !important; }
-
-
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.
CSS
Alles anzeigen#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; }
-
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.
CSS
Alles anzeigen#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; }
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.
CSS#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.