搜索 | 用户支持

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

详细了解

Thunderbird 115 and bold top message instead of underline stopped working

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

more options

For some years I have a setup that makes a collapsed threads to be marked in bold when there is an unread message in it (instead of an underline). This stopped working in the latest 115 version.

I did that based on this old thread https://support.mozilla.org/en-US/questions/1265223 To make this happen I had to:

1) Change the ..\Thunderbird\Profiles\name\chrome\userChrome.css to /*

  • Do not remove the @namespace line -- it's required for correct functioning
  • /

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* set default namespace to XUL */

/*

  • Collapsed read thread, but the thread contains unread , set text to bold black
  • /
  treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) {
    text-decoration: none !important;
    font-weight:  bold !important;
    color: #000000 !important;
  }

/*

  • If thread selected, revert to highlight text color
  • /
  treechildren::-moz-tree-cell-text(container, closed, hasUnread, read, focus, selected),
  treechildren::-moz-tree-cell-text(container, hasUnread, read, focus, selected) {
    color: HighlightText !important;
  }

2) settings -> General -> in the find box: Config editor: toolkit.legacyUserProfileCustomizations.stylesheets = true

Sadly, this stopped working. Any idea how to make it work again?

For some years I have a setup that makes a collapsed threads to be marked in bold when there is an unread message in it (instead of an underline). This stopped working in the latest 115 version. I did that based on this old thread https://support.mozilla.org/en-US/questions/1265223 To make this happen I had to: 1) Change the ..\Thunderbird\Profiles\name\chrome\userChrome.css to /* * Do not remove the @namespace line -- it's required for correct functioning */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ /* * Collapsed read thread, but the thread contains unread , set text to bold black */ treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) { text-decoration: none !important; font-weight: bold !important; color: #000000 !important; } /* * If thread selected, revert to highlight text color */ treechildren::-moz-tree-cell-text(container, closed, hasUnread, read, focus, selected), treechildren::-moz-tree-cell-text(container, hasUnread, read, focus, selected) { color: HighlightText !important; } 2) settings -> General -> in the find box: Config editor: toolkit.legacyUserProfileCustomizations.stylesheets = true Sadly, this stopped working. Any idea how to make it work again?

所有回复 (2)

more options

Does some one have any idea on this?

more options

选择的解决方案