Quindi stavo cercando di aiutare un amico a ingrandire il carattere Riquadro dei thread di Thunderbird . Ho provato diverse varianti del seguente a ~/Library/Thunderbird/Profiles/*/chrome/userChrome.css
(Ovviamente è su OS X), ma il problema è che il testo è leggermente troppo grande per ogni voce nel riquadro dei thread, in modo che lettere come g, q, ecc. vengano troncate nella parte inferiore. Ovviamente, il font di default più piccolo non ha questo problema. Qualsiasi aiuto?
#threadTree treechildren:-moz-tree-row {
font-size: 18px;
font-family: Lucinda Grande;
margin-top: 5px !important;
margin-bottom: 5px !important;
height: 25px !important;
}
O questo.
#threadTree treechildren:-moz-tree-row {
font-size: 18px;
font-family: Lucinda Grande;
margin-top: 5px;
margin-bottom: 5px;
height: 25px;
}
O questo.
#threadTree treechildren:-moz-tree-row {
font-size: 18px;
font-family: Lucinda Grande;
/* margin-top: 5px !important; */
/* margin-bottom: 5px !important; */
height: 25px !important;
}