Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

hard time seeing

  • 1 답장
  • 0 이 문제를 만남
  • 15 보기
  • 최종 답변자: david

more options

Hello,

I really enjoy using Thunderbird as my email program; I have been using it for years. I currently use Thunderbird 102.5.0. However, my eyesight has gotten poorer after my stroke, and I am having trouble differentiating unread emails from read emails. I was wondering if there was a way that I could change the bold for unread/unbold for read to something else, like different colors or fonts for read vs. unread, or maybe making the green unread dot a different, more bold color or size?

Thank you,

George Hutton

Hello, I really enjoy using Thunderbird as my email program; I have been using it for years. I currently use Thunderbird 102.5.0. However, my eyesight has gotten poorer after my stroke, and I am having trouble differentiating unread emails from read emails. I was wondering if there was a way that I could change the bold for unread/unbold for read to something else, like different colors or fonts for read vs. unread, or maybe making the green unread dot a different, more bold color or size? Thank you, George Hutton

모든 댓글 (1)

more options

In config editor set toolkit.legacyUserProfileCustomizations.stylesheets to true to allow use of the chrome folder. In profile, add folder named chrome (lower-case) In folder, add file named userChrome.css (case-sensitive) In that simple text file, add the following: I set the colors a bit wild, with blue font and yellow background, so please change to your preference. Same goes for size. after saving, thunderbird must be closed and restarted to see changes. Config editor is at settings>general and scroll to bottom. If you want special colors and know the HTML number, replace the blue and yellow with numbers preceded with # (e.g.l, #0000ff is blue, #FF0000 is red. More colors available by web search for html color chart THE FOLLOWING CODE is for userChrome.css:

 /* Make unread messages blue text and italic */
 treechildren::-moz-tree-cell-text(unread) {
   color: blue !important;
    font-style: italic !important;
    font-size:  16px;
    font-weight: bold !important;  background-color: yellow !important;
  }