Ich hätte das so wie das erste Bild gerne
Beiträge von Blauwonz
-
-
Ich habe mal ein Bild hochgeladen so möchte ich das gerne machen
-
Wenn ich auf Kalender klicke sehe ich den Tagesplan ich konnte doch vorher bei älteren versionen die Monatsansicht links und rechts angezeigt bekommem
-
Leider lässt sich die Monatsansicht nich anlicken dar das hellgrau hinterlegt ist
-
Guten Tag,
ich habe folgendes problem wenn ich unter Lightning -> Ansicht -> Tagesplan -> Monatsanzeige lässt sich nicht anklicken.Thunderbird-Version: 24.3.0
Betriebssystem + Version: Windows 7 64bit
Kontenart (IMAP):
Postfachanbieter (GMX): -
So sieht mein erstellten Filter aus:
http://s14.directupload.net/file/d/3437/34ghosd6_png.htm -
-
Guten Tag und ein schönen Sonntag,
meine Frage ist kann ich eingehende E-Mails in unterschiedliche Ordner sortieren lassen bei der gleichen E-Mail Adresse wenn ja wie sieht der Filter dazu aus?Thunderbird-Version: 24.1.0
Betriebssystem + Version: Windows 7 64 Bit
Kontenart : Imap
Postfachanbieter :GMX -
Danke dir edvoldi ich könnte knutschen grins
-
Das wa du meinst das Färbt mir den Tag ein aber der Freitag bleibt blau hinterlegt und das möchte ich gerne in rot
-
Das was ich meine ist die Tasges und Wochen ansicht und was du meinst betrifft die Mehrere und Monatsansicht
-
Hab ich schon gemacht aber leider nichts gefunden
-
Guten Abend,
ist es möglich die Farbe in der Tages und Wochen ansicht zu ändern? Und ein Solid Rahmen drum zum machen wie bei der Monatsansicht?http://s7.directupload.net/file/d/3435/lxynlylj_png.htm
http://s7.directupload.net/file/d/3435/44aqpc4r_png.htmThunderbird-Version: 24.1.0
Lightning-Version: 2.6.2
Betriebssystem + Version: Windows 7 64Bit -
Guten Tag,
ich habe folgende frage könnte ich das obere Script und das untere Script zum in der userchrome einfügen wenn wie setze ich das korrekt zusammen. Könnte mir auch mal netter weise erklären was ich mt den Script machen kann?
Teil 1CSS
Alles anzeigen/** * PURPOSE: color task tree and unifinder tree based on certain properties * You must use different tree pseudoclasses for different attributes. * Try the following if your attribute is not working: * -moz-tree-cell-text * -moz-tree-cell * -moz-tree-row * Note that all properties are lowercase and any non-alphanumerical * character is escaped by using the special string -ux27- where 27 is the * charaitcter code. See calUtils.js, function formatStringForCSSRule(). */ .calendar-task-tree > treechildren::-moz-tree-cell-text(calendar-home_calendar), #unifinder-search-results-tree > treechildren::-moz-tree-cell-text(calendar-home_calendar) { /* Color all items from the calendar called "Home Calendar" */ color: #0090FF !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(alarm), #unifinder-search-results-tree > treechildren::-moz-tree-cell-text(alarm) { /* Color all items that have an alarm */ color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(status-in-process), #unifinder-search-results-tree > treechildren::-moz-tree-cell-text(status-confirmed) { /* Color all events that are confirmed and all tasks that are in process */ color: #AA0000 !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(category-birthday), #unifinder-search-results-tree > treechildren::-moz-tree-cell-text(category-birthday) { /* Color all items that are in the birthday category */ color: #00AA00 !important; } /** * PURPOSE: color event boxes based on certain properties * To control the looks of the event boxes, you can use the following * selectors: * .calendar-event-box-container * .calendar-item * calendar-event-box * calendar-month-day-box-item * If the box doesn't look like you want it to, try different selectors, maybe * also incombination. Note again that certain fields are escaped (i.e * category) with the same function as noted above. */ calendar-event-box[readonly], calendar-month-day-box-item[readonly] { /* Make events from readonly calendars half-transparent */ opacity: 0.5; } .calendar-event-box-container[alarm] { /* Color all events that have an alarm */ background-color: #00DD00 !important; } .calendar-event-box-container[categories~="birthday"] { /* Color all items that are in the Birthday category */ background-color: blue !important; } .calendar-event-box-container[priority="high"] { /* Color all high priority items */ background-color: #DD0000 !important; } .calendar-event-box-container[progress="overdue"] { /* Color all overdue tasks */ background-color: red !important; } .calendar-event-box-container[status="in-process"] { /* Color all tasks that are in progress */ background-color: #0090FF !important; } .calendar-event-box-container[calendar="home calendar"] { /* Color all items in the "Home Calendar" calendar */ background-color: yellow !important; } .calendar-event-box-container[allday] { /* Color allday items specifically */ background-color: #0000DD !important; }
Teil 2CSS
Alles anzeigen.calendar-month-day-box-date-label { color: red !important; } .calendar-event-box-container .calendar-item calendar-event-box calendar-month-day-box-item .calendar-event-box-container[calendar="privat"] { background-color: yellow !important; } .calendar-event-box-container[categories~="anrufe"] { background-color: red !important; } .calendar-event-box-container[status="needs-action"] { color: red !important; } .calendar-event-box-container[status="in-process"] { color: red !important; } .calendar-event-box-container[status="cancelled"] { color: red !important; } .calendar-event-box-container[priority="low"] { background-color: red !important; } .calendar-event-box-container[priority="high"] { background-color: red !important; } .calendar-event-box-container[alarm] { background-color: yellow !important; } .calendar-event-box-container[readonly] { background-color: yellow !important; } .calendar-event-box-container[progress="overdue"] { background-color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(calendar-geburtstage) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(anrufe) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(alarm) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(status-needs-action) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(status-in-process) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(status-completed) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(status-cancelled) { color: red !important; } .calendar-task-tree > treechildren::-moz-tree-cell-text(calendar-geburtstage, anrufe, alarm) { color: red !important; }
Thunderbird-Version: 24.1.0
Lightning-Version: 2.6.2
Betriebssystem + Version: Windows 7 64Bit -
Guten Abend,
ich möchte ein Filter ersteldnerlen der muss erfolgendes erüllen.
1. Nach Datum
2. Nach Thema
Ist sowas möglich wenn ich nur nach Datum den Filter erstelle dann Packt der mir alles in ein Ordner.http://s1.directupload.net/file/d/3431/qauu63rg_png.htm
Thunderbird-Version: 24.1.0
Betriebssystem + Version: Windows 7 64Bit
Kontenart : Imap
Postfachanbieter:Web.de -
-
Guten Abend,
ich hoffe ihr könnt mich Helfen.
1. Wo befinden sich in Thunderbird 24.1 die Kalender dateien?
2.Kann ich die einstellung auch rüber kopieren sprich eingerichtete Konten und die Einstellung?Thunderbird-Version: 24.1
Windows 7 64 Bit
Kontenart (IMAP):
Postfachanbieter (Web.de): -
Guten Abend,
alle zusammen ich brauch ein paar Tipps von Filter Experten und zwar möchte ich meine Eingehende E - Mails sortieren lassen. Mailbox Alert sollte aber auch noch eine Benachrichtigung anzeigen wenn eine Neue E - Mail eintrifft.Thunderbird-Version 16.0.1.:
Windows 7 64 bit/b]:
[b]Kontenart (POP & IMAP):
Postfachanbieter (GMX & freenet): -
Guten Abend,
besteht die Möglichkeit eingehende E - Mails nach Jahr und Monat zu sortieren?Thunderbird-Version 16.0.1:
Windows 7 + 64 bit:
Kontenart (POP und IMAP):
Postfachanbieter (GMX & Freenet):Danke für die Hilfe
-
Danke für deine Hilfe
Jetzt hab noch eine frage gibt es MR Tech Toolkit 6.0.4 und Mailtweak für Thunderbird 13?