Thunderbird: cambiare dimensione font

Una cliente mi ha detto di non apprezzare Thunderbird perché il carattare dell’elenco dei messaggi è troppo piccolo. Ho aumentato la dimensione dei caratteri Window ma, effettivamente, il risultato non è dei migliori.

Qui (thx to Lance Jian) ho trovato la soluzione (per Mac OSX).

La ricopio pari pari di seugito:

Change the Font Size

This works on Thunderbird 78.4.0.

First, go to “Help” > “Troubleshooting Information”, click the button “Show in Finder” next to “Profile Folder”. It will open the profiles folder.

Find the folder named xxxxxx.default-release, create a new folder chrome along side with the Mail folder.

Inside the chrome folder, create a file userChrome.css with following content:

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

/* Set font size in folder pane */
#folderTree >treechildren::-moz-tree-cell-text {
    font-size: 1.2rem !important; /* You can also use em, pt or other units here.*/
}

/* Set font size in thread pane */
#threadTree >treechildren::-moz-tree-cell-text {
    font-size: 1.2rem !important;
}

/* Set height for cells in folder pane */
#folderTree >treechildren::-moz-tree-row {
   height: 22px !important;
}
/* Set height for cells in thread pane */
#threadTree >treechildren::-moz-tree-row {
   height: 22px !important;
}

Next, you need to open “Preferences” > “General” > “Config Editor…”, accept the warning dialog.

Search for toolkit.legacyUserProfileCustomizations.stylesheets and double click it to set its value to true.

Finally, restart your Thunderbird.

0 Comments

Leave a Reply

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *