为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Thunderbird Supernova UI fonts/colors

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

more options

Hi, what are the CSS selectors necessary to update the folder list and the list of emails in Supernova 115.1.0+? Following tips from other support posts don't seem to work:

Thank you.

``` /* successfully changes menu bar, email from,subject,date,etc. */

  • {

font-size: 11pt !important; font-weight: 500 !important; font-family: 'Acari Sans' !important; color: red; !important; }

/* Folder Pane font -- HAS NO EFFECT */

  1. folderTree > treechildren {
 font-size: 16pt !important;
 font-family: 'Acari Sans', 'Segoe UI Variable' !important;
 color: yellow !important;

}

/* Threads Pane font -- HAS NO EFFECT */

  1. threadTree > treechildren {
 font-size: 16pt !important;
 font-family: 'Asap Condensed' !important;
 color: red !important;

}

/* -- HAS NO EFFECT */ .tree-rows {

font-size: 14px !important;
color: red !important;

} ```

Hi, what are the CSS selectors necessary to update the folder list and the list of emails in Supernova 115.1.0+? Following tips from other support posts don't seem to work: Thank you. ``` /* successfully changes menu bar, email from,subject,date,etc. */ *{ font-size: 11pt !important; font-weight: 500 !important; font-family: 'Acari Sans' !important; color: red; !important; } /* Folder Pane font -- HAS NO EFFECT */ #folderTree > treechildren { font-size: 16pt !important; font-family: 'Acari Sans', 'Segoe UI Variable' !important; color: yellow !important; } /* Threads Pane font -- HAS NO EFFECT */ #threadTree > treechildren { font-size: 16pt !important; font-family: 'Asap Condensed' !important; color: red !important; } /* -- HAS NO EFFECT */ .tree-rows { font-size: 14px !important; color: red !important; } ```

所有回复 (8)

more options

code was mangled, see below:

 /* successfully changes menu bar, email from,subject,date,etc. */
 * {
   font-size: 11pt !important;
   font-weight: 500 !important;
   font-family: 'Acari Sans' !important;
   color: red; !important;
 }


 /* Folder Pane font -- HAS NO EFFECT */
 #folderTree > treechildren {
   font-size: 16pt !important;
   font-family: 'Acari Sans', 'Segoe UI Variable' !important;
   color: yellow !important;
 }


 /* Threads Pane font -- HAS NO EFFECT */
 #threadTree > treechildren {
   font-size: 16pt !important;
   font-family: 'Asap Condensed' !important;
   color: red !important;
 }


 /* HAS NO EFFECT */
 .tree-rows {
    font-size: 14px !important;
    color: red !important;
 }

more options

Just an FYI: CSS modifications were never officially supported. One of the Supernova objectives was to rewrite lots of old code and that caused many CSS mods to no longer work. Over time, I don't doubt that new CSS mods will surface, but my recommendation is to avoid them, as they may cause other problems. And that's just my opinion (as I do use a bit of CSS myself...)

more options

I'm just looking for any way to modify the look of those sections of the UI -- the folder list/pane and the email list. Doesn't have to be CSS (although its a standard that lots of people already know). Without modification, I find the Thunderbird UI unusable. Thank you.

more options

So, what are your next steps, since it is unusable?

more options

Uninstall it? I abandoned Thunderbird many years ago and purchased a license for Postbox, which was basically just a re-skinned Thunderbird at that time (forked). Same plugins, same profiles, it was worth paying just to get an improved UI.

more options

Perhaps this article, written in the past couple of weeks will influence your decision. https://support.mozilla.org/en-US/kb/userchromecss-js-usercontent-unsupported

I just had the new outlook app previewed on my system and really I struggle to find a point of differentiation between it and Thunderbird 115 other than black glyphs beside folder names. However if I was to pay for a mail client, I would be using TheBat!

more options
more options

Thanks for the replies. Eventually I realized Thunderbird has a DevTools similar to Firefox and was able to get much more granular at that point. I'm no UI designer but the result is more pleasant to view, in my opinion, it eliminates the bright white background and doesn't rely on heavy bolded fonts. Perhaps none of this matters on retina or 4k displays but that's not what I have.

Because this site doesn't support code blocks very well, the final result is here instead, in case anyone else has a similar desire to customize the UI a little bit: https://pastebin.com/6FGz8ucq