Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Mozilla 도움말 검색

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

자세히 살펴보기

Set background colour in TB Write window

  • 3 답장
  • 0 이 문제를 만남
  • 7 보기
  • 최종 답변자: Ross Palmer

more options

Running TB 128.14.0esr on Linux Mint MATE. In the Create new message (Write) window, I want to change the background colour of the panel that contains From, To, and Subject. This is currently a light grey. What userChrome code can I use to change the colour? Thanks

Running TB 128.14.0esr on Linux Mint MATE. In the Create new message (Write) window, I want to change the background colour of the panel that contains From, To, and Subject. This is currently a light grey. What userChrome code can I use to change the colour? Thanks

선택된 해결법

code to be used in a userChrome.css file

I've used colours indicated using a # followed by relevant number which you can modify as you prefer. I've included various other parts of the same Write new message window which you can use or omit as desired


/* Write window*/

/* Contacts - Side panel */
#abContactsPanel,
#contactsSidebar .sidebar-header {
  background-color: #002633 !important;  
}


/* Whole Header Box with From & To Subject Cc etc. b-ground & text */
#MsgHeadersToolbar {
  background-color:  #00464f     !important;
  color:            White       !important;
}


/* The 'Menu bar' File,View, Edit - and 'Composition toolbar' */
#compose-toolbox toolbar {
  background-color: #00464f        !important;
}


/* Formatting toolbar */
#FormatToolbox,
#FormatToolbar > menulist  {
  background-color: #002633   !important;
  color:            white   !important;
}


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

모든 댓글 (3)

more options

선택된 해결법

code to be used in a userChrome.css file

I've used colours indicated using a # followed by relevant number which you can modify as you prefer. I've included various other parts of the same Write new message window which you can use or omit as desired


/* Write window*/

/* Contacts - Side panel */
#abContactsPanel,
#contactsSidebar .sidebar-header {
  background-color: #002633 !important;  
}


/* Whole Header Box with From & To Subject Cc etc. b-ground & text */
#MsgHeadersToolbar {
  background-color:  #00464f     !important;
  color:            White       !important;
}


/* The 'Menu bar' File,View, Edit - and 'Composition toolbar' */
#compose-toolbox toolbar {
  background-color: #00464f        !important;
}


/* Formatting toolbar */
#FormatToolbox,
#FormatToolbar > menulist  {
  background-color: #002633   !important;
  color:            white   !important;
}


도움이 되셨습니까?

more options

The only areas I'm having a bit of an issue are the drop down menus. But I can live with it. Maybe I'll get it sorted at some point.

도움이 되셨습니까?

more options

Thanks this worked perfectly.

도움이 되셨습니까?

질문하기

글에 답글을 달기 위해서는 계정으로 로그인해야만 합니다. 계정이 아직 없다면 새로운 질문을 올려주세요.