Thunderbird necesita una fuente de panel de hilos más grande, pero el boxeo sigue siendo demasiado pequeño

0

Así que estaba tratando de ayudar a un amigo a agrandar la fuente en el panel de hilos de Thunderbird . Intenté diferentes variaciones de lo siguiente para ~/Library/Thunderbird/Profiles/*/chrome/userChrome.css(obviamente está en OS X), pero el problema es que el texto es un poco demasiado grande para cada entrada en el panel de subprocesos, por lo que las letras como g, q, etc. se cortan en la parte inferior . Obviamente, la fuente predeterminada más pequeña no tiene este problema. ¿Alguna ayuda?

#threadTree treechildren:-moz-tree-row {
  font-size: 18px;
  font-family: Lucinda Grande;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  height: 25px !important;
}

O esto.

#threadTree treechildren:-moz-tree-row {
  font-size: 18px;
  font-family: Lucinda Grande;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 25px;
}

O esto.

#threadTree treechildren:-moz-tree-row {
  font-size: 18px;
  font-family: Lucinda Grande;
  /* margin-top: 5px !important; */
  /* margin-bottom: 5px !important; */
  height: 25px !important;
}
songei2f
fuente

Respuestas:

1

Establecer min-height un poco más alto que la fuente de texto funciona para mí:

Mi userChrome.css:

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

listitem, treechildren::-moz-tree-row {
  min-height: 15pt !important;
}
kasimir
fuente