Thunderbird - E-Mail

Tastenfunktionen - Tastenkombinationen

Das Ändern der Shortcuts für Thunderbird ist mit einem kostenlosen Add-on möglich. Sie richten es ein, indem Sie folgende Schritte ausführen:

  1. Thunderbird starten.
  2. Kurz auf [Alt] drücken, damit die Menüleiste angezeigt wird.
  3. Auf „Extras, Add-ons“ klicken.
  4. Ins Suchfeld oben rechts Keyconfig eingeben, dann die [Eingabetaste] drücken.
  5. Sobald das Suchergebnis unten erscheint, klicken Sie auf der rechten Seite auf „Installieren“.
  6. Nach dem obligatorischen Bestätigen und Neustarten des Programms finden Sie im Menü „Extras“ einen neuen Eintrag „Tastenkürzel anpassen…“. Sie können auch [Strg] + [Umschalt] + [F12] drücken. Es öffnet sich ein Dialogfeld, in dem Sie die Shortcuts von Mozilla Thunderbird bearbeiten können.

Quelle: ( Quelle  21.05.2012 )

 

Tastenfunktionen

Funktion Keyconfig Bezeichnung
Eigene Grundeinstellung  
Gelesen
markieren
key_toggleRead
(key1347792933758)
goDoCommand('cmd_toggleRead');

Strg+Q
(Outlook)

M  
Löschen key1347792818697
goDoCommand('cmd_delete');
Strg+D
(Outlook)
Entf  

Schriftgröße der Betreffzeile des Posteingangs

Ist die Schriftgröße in der Betreffzeilen des Posteingangs zu klein, kann man diese wie folgt anpassen.

 

Im Verzeichnis des Profils muss ein Verzeichnis Chrome und eine Datei

userChrome.css existieren.

 

Beispiel (für Windows 7):

C:\Users\Anwender-Martin\AppData\Roaming\Thunderbird\Profiles\cazcdagy.default\chrome\userChrome.css

 

Besteht das Verzeichnis chrome oder die Datei userChrome.css nicht, dann kann man beide einfach anlegen.

 

 

userChrome.css

Die userchrome.css kann dann folgenden Inhalt haben:

 

Wichtig für die Schriftgröße der Betreffzeile ist folgender Eintrag:

 

 /* Font in mail or account lists */
   #threadTree treechildren {
   font-size: 20px !important;
   }

 

 

 

 

 

=====================

/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 */

/*
 * This file can be used to customize the look of Mozilla's user interface
 * You should consider using !important on rules which you want to
 * override default settings.
 */

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */


/*
 * Some possible accessibility enhancements:
 */
/*
 * Make all the default font sizes 20 pt:
 *
 * * {
 *   font-size: 20pt !important
 * }
 */
/*
 * Make menu items in particular 15 pt instead of the default size:*/
 
  menupopup > * {
    font-size: 11pt !important
  }
 
 
  menu > * {
    font-size: 11pt !important
  }
 
  /* Font in mail or account lists */
   #threadTree treechildren {
   font-size: 20px !important;
   }
 
  #searchbar .searchbar-box,#searchbar .searchbar-textbox , .autocomplete-textbox-container  
  {
  font-weight: normal !important; font-size: 9.0pt !important;
  }
 
 
 #bookmarksBarContent > toolbarbutton{
 font-weight: normal !important; font-size: 9.0pt !important;
 }
 
 
 #bookmarksBarContent > toolbarbutton{font-weight: normal !important; font-size: 9.0pt !important;}
 
 
 #bookmarks-view-children{ font-weight: bold !important; text-decoration: none !important;font-size: 9.5pt !important;}
 
 
 
/*
 * Give the Location (URL) Bar a fixed-width font
 *
 * #urlbar {
 *    font-family: monospace !important;
 * }
 */

/*
 * For more examples see http://www.mozilla.org/unix/customizing.html
 */
 

 

=====================