Thunderbird ha bisogno di un più grande font di thread thread, ma la boxe è ancora troppo piccola


0

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;
}

Risposte:


1

L'impostazione di un'altezza minima leggermente superiore a quella del carattere del testo funziona per me:

Il mio userChrome.css:

/* UI font for lists */
treechildren {font-size: 13pt; font-family: Lucida Grande;}

listitem, treechildren::-moz-tree-row {
  min-height: 15pt !important;
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.