搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Want horizontal lines between message headers

more options

Once again following a Thunderbird update, the lines between my message headers have disappeared. Here is the previous question and solution I found: https://support.mozilla.org/en-US/questions/1256823

However, now, I still have the file userChrome.css set up the same way in my profile folder: C:\users\myname\appdata\roaming\thunderbird\profiles\jr8ewpri.default\chrome, but Thunderbird is not utilizing it. How do I get TB to recognize that file again?

Here is the content of the userChrome.css file:

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

/* Add bottom border to thread pane (message list) */

  1. threadTree treechildren:-moz-tree-row {
 border-bottom: 1px solid grey !important;

}

Thank you, --Victoria

Once again following a Thunderbird update, the lines between my message headers have disappeared. Here is the previous question and solution I found: https://support.mozilla.org/en-US/questions/1256823 However, now, I still have the file userChrome.css set up the same way in my profile folder: C:\users\myname\appdata\roaming\thunderbird\profiles\jr8ewpri.default\chrome, but Thunderbird is not utilizing it. How do I get TB to recognize that file again? Here is the content of the userChrome.css file: @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); /* Add bottom border to thread pane (message list) */ #threadTree treechildren:-moz-tree-row { border-bottom: 1px solid grey !important; } Thank you, --Victoria

由 Victoria-nola 於 修改

被選擇的解決方法

There's an extra : needed after treechildren for this to work in TB 68 (see picture).

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

/* Add bottom border to thread pane (message list) */
#threadTree treechildren::-moz-tree-row {
  border-bottom: 1px solid threedlightshadow !important;
}
從原來的回覆中察看解決方案 👍 1

所有回覆 (2)

more options

選擇的解決方法

There's an extra : needed after treechildren for this to work in TB 68 (see picture).

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

/* Add bottom border to thread pane (message list) */
#threadTree treechildren::-moz-tree-row {
  border-bottom: 1px solid threedlightshadow !important;
}
more options

It worked! Thank you very much.

--Victoria