Thunderbird 需要更大的线程窗格字体,但框仍然太小

Thunderbird 需要更大的线程窗格字体,但框仍然太小

所以我试着帮助一个朋友把字体放大Thunderbird 的线程窗格。我尝试了以下不同的变体~/Library/Thunderbird/Profiles/*/chrome/userChrome.css(显然是在 OS X 上),但问题是文本对于线程窗格中的每个条目来说都太大了,因此 g、q 等字母在底部被截断。显然,较小的默认字体没有这个问题。有什么帮助吗?

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

或这个。

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

或这个。

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

答案1

将最小高度设置为比文本字体高一点对我来说是可行的:

我的userChrome.css:

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

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

相关内容