Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Change font color of folder pane and thread pane

  • 1 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 sfhowes

more options

I have read everything and tried everything but I am not able to change the font color of the folder pane and thread pane in TB 102.10.1.

I put in the userChome.css for example the following (and tried many more) . The font and everything else changes. But not the font color.

  • {
   color: rgb(203, 49, 49) !important;
   }

/* Global UI font */

  • { font-size: 11pt !important;
   font-family: Verdana !important; 
   color: rgb(203, 49, 49) !important;
 } 
 /* Menu font */

menu, menulist, menuitem {

   font-family: Times New Roman !important; 
   color: rgb(203, 49, 49) !important;
 }

toolkit.legacyUserProfileCustomizations.stylesheets is set to true.

How can I change the font color of the folder pane and thread pane?

I have read everything and tried everything but I am not able to change the font color of the folder pane and thread pane in TB 102.10.1. I put in the userChome.css for example the following (and tried many more) . The font and everything else changes. But not the font color. *{ color: rgb(203, 49, 49) !important; } /* Global UI font */ * { font-size: 11pt !important; font-family: Verdana !important; color: rgb(203, 49, 49) !important; } /* Menu font */ menu, menulist, menuitem { font-family: Times New Roman !important; color: rgb(203, 49, 49) !important; } toolkit.legacyUserProfileCustomizations.stylesheets is set to true. How can I change the font color of the folder pane and thread pane?

被采纳的解决方案

#threadTree > treechildren {
  font-size: 12pt !important;
  font-family: Times !important;
  background-color: lightgrey !important;
  color: navy !important;
}

#folderTree > treechildren {
  font-size: 12pt !important;
  font-family: Times !important;
  background-color: lightgrey !important;
  color: navy !important;
}

Delete the lines for font-size, font-family or background-color if they are not needed. For the font-family to take effect, 'Allow messages to use other fonts' must be selected in Settings/General/Language & Appearance, Advanced. See attached picture.

https://www.userchrome.org/download-userchrome-css.html

定位到答案原位置 👍 1

所有回复 (1)

more options

选择的解决方案

#threadTree > treechildren {
  font-size: 12pt !important;
  font-family: Times !important;
  background-color: lightgrey !important;
  color: navy !important;
}

#folderTree > treechildren {
  font-size: 12pt !important;
  font-family: Times !important;
  background-color: lightgrey !important;
  color: navy !important;
}

Delete the lines for font-size, font-family or background-color if they are not needed. For the font-family to take effect, 'Allow messages to use other fonts' must be selected in Settings/General/Language & Appearance, Advanced. See attached picture.

https://www.userchrome.org/download-userchrome-css.html