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!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Thunderbird 115 and bold top message instead of underline stopped working

  • 2 replies
  • 0 have this problem
  • 7 views
  • Last reply by 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?

All Replies (2)

more options

Does some one have any idea on this?

more options

Chosen Solution