We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

搜索 | 用户支持

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

详细了解

TB message list display format

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

more options

I have a friend who has persisted with Eudora all these years but finally is about to bite the bullet and use TB. She misses the "ruled page" format of inboxes/outboxes that she found helpful in Eudora because of a slight visual impairment. This is nothing more than a horizontal line separating one message entry from the next in a message list.

Is there any way to add this functionality to TB's display format? Add-on? Alternate CSS? TIA for any insight

I have a friend who has persisted with Eudora all these years but finally is about to bite the bullet and use TB. She misses the "ruled page" format of inboxes/outboxes that she found helpful in Eudora because of a slight visual impairment. This is nothing more than a horizontal line separating one message entry from the next in a message list. Is there any way to add this functionality to TB's display format? Add-on? Alternate CSS? TIA for any insight

被采纳的解决方案

Help/Troubleshooting, Profile Folder, Open Folder, close TB, create a subfolder named chrome, and in chrome create a new document with a text editor, save it as File type: All files *.*, named userChrome.css, copy the above code into the css document.

Config. editor is under Options/General at the bottom.

定位到答案原位置 👍 0

所有回复 (4)

more options

Add this to userChrome.css in the chrome subfolder of the profile folder:

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

Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Config. editor.

To add zebra striping:

/* add zebra striping */
treechildren::-moz-tree-row(odd) {
  border: 1px solid transparent !important;
  background-color: #FFFFFF !important;
  min-height: 18px !important;
  height: 1.3em !important;
}

treechildren::-moz-tree-row(even) {
  border: 1px solid transparent !important;
  background-color: #F4F4F4 !important;
  min-height: 18px !important;
  height: 1.3em !important;
}
more options

Thanks for your quick response, sfhowes. However, I do not have "userChrome.css" anywhere on this machine (old Win7 SP1) or on my alternate desktop Win10 latest. Both run TB 78.3.3 (32-bit) and both machines have both latest Chrome and latest Firefox installed and used frequently.

From the looks of your solution and my limited ability to interpret the code, it's probable it will do what I want. But nothing can happen until I find that stylesheet.

more options

选择的解决方案

Help/Troubleshooting, Profile Folder, Open Folder, close TB, create a subfolder named chrome, and in chrome create a new document with a text editor, save it as File type: All files *.*, named userChrome.css, copy the above code into the css document.

Config. editor is under Options/General at the bottom.

more options

Thanks a 1e6. After a little tweaking of the highlight color I have exactly what I was looking for. Stay safe