Mozilla 도움말 검색

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

Learn More

Thunderbird 115 CSS code

  • 2 답장
  • 0 이 문제를 만남
  • 150 보기
  • 최종 답변자: sfhowes

more options

How can I add color to the thread column header buttons (Selected , Date, Subject, Correspondent, Size, Attachment, etc) in Thunderbird 115.

In 102 i had the following entries in the userChrome.css

" /* HEADER ROW - height */

  1. threadCols > treecol {
 height: 42px !important; 

}

/* HEADER ROW - background colors */

  1. threadCols > treecol {
 background-color: #008080 !important; 
 font-size: 15pt !important; 
 font-weight: bold !important;
 color: #FFFFFF !important;
 -moz-appearance: none !important;
 background-image: none !important;

}

  1. threadCols > treecol {
 border-bottom: 2px solid red !important;

} "

Can anyone show me how to do the same in Thunderbird 115.2.2?

I am totally unfamiliar with html etc. so really require input to make the desired adjustments.

Thank you for your help.

Haagen

How can I add color to the thread column header buttons (Selected , Date, Subject, Correspondent, Size, Attachment, etc) in Thunderbird 115. In 102 i had the following entries in the userChrome.css " /* HEADER ROW - height */ #threadCols > treecol { height: 42px !important; } /* HEADER ROW - background colors */ #threadCols > treecol { background-color: #008080 !important; font-size: 15pt !important; font-weight: bold !important; color: #FFFFFF !important; -moz-appearance: none !important; background-image: none !important; } #threadCols > treecol { border-bottom: 2px solid red !important; } " Can anyone show me how to do the same in Thunderbird 115.2.2? I am totally unfamiliar with html etc. so really require input to make the desired adjustments. Thank you for your help. Haagen

선택된 해결법

Try this code:

#subjectColButton, #correspondentColButton, #dateColButton, #attachmentColButton {
  background-color: #87CEFA !important;
  font-weight: bold !important;
}


Add other entries for size, selected etc. See picture.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (2)

more options
more options

선택된 해결법

Try this code:

#subjectColButton, #correspondentColButton, #dateColButton, #attachmentColButton {
  background-color: #87CEFA !important;
  font-weight: bold !important;
}


Add other entries for size, selected etc. See picture.