Mozilla 도움말 검색

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

자세히 살펴보기

How to change the font of the folder and message list panels?

  • 5 답장
  • 6 이 문제를 만남
  • 19 보기
  • 최종 답변자: sfhowes

more options

Just installed the Supernova 115.3.2 version. No big deal, but I don't quite like the font of the folder and message list panels. They used to look much better before, to my mind. Is there any way to change these fonts?

Just installed the Supernova 115.3.2 version. No big deal, but I don't quite like the font of the folder and message list panels. They used to look much better before, to my mind. Is there any way to change these fonts?

선택된 해결법

Threads and Folder Pane fonts and backgrounds can be changed with css.

/* threads pane bg, font */
table[is="tree-view-table"]{
background: #87CEFA !important;
font-family: Times, serif !important;
font-size: 16px !important;
color: navy !important;
}

/* folder pane font, bg */
#folderPane {
background-color: #87CEFA !important;
font-size: 14px !important;
font-family: Times, serif !important;
color: navy !important;
}



Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the numbers and colours as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

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

모든 댓글 (5)

more options

선택된 해결법

Threads and Folder Pane fonts and backgrounds can be changed with css.

/* threads pane bg, font */
table[is="tree-view-table"]{
background: #87CEFA !important;
font-family: Times, serif !important;
font-size: 16px !important;
color: navy !important;
}

/* folder pane font, bg */
#folderPane {
background-color: #87CEFA !important;
font-size: 14px !important;
font-family: Times, serif !important;
color: navy !important;
}



Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the numbers and colours as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

글쓴이 sfhowes 수정일시

more options

Thanks for this very extensive recipe, it works!

more options

Yes it works thanks! Shouldn't be so tricky to change a font but there you go.

more options

This is all very cool, but it begs the question, "what else can I do?"

I see these 2 things, the folder pane, and the threads pane (although it seems to be called something different.)

I also ran across the toolbar-menubar in another post on this site.

It occurs to me there might be a lot more that can be done here.

Is there any good documentation on everything I can change?

Thanks, Mark.

more options

Cool Javelin said

This is all very cool, but it begs the question, "what else can I do?" I see these 2 things, the folder pane, and the threads pane (although it seems to be called something different.) I also ran across the toolbar-menubar in another post on this site. It occurs to me there might be a lot more that can be done here. Is there any good documentation on everything I can change? Thanks, Mark.

Just about every UI element can be modified with css, but the documentation is scattered among different forums, including this one, mozillazine, elevenforum, reddit etc.