Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

Menu toolbar font

  • 6 відповідей
  • 1 має цю проблему
  • 1 перегляд
  • Остання відповідь від Bugzilla3

more options

I wish to make the Menu toolbar font bold and perhaps a bit bigger. How do I do this?

Also less importantly the background color used to be set by my Walnut theme which is now defunct and replaced by a partial theme with a white background. I would like to change that as well.

See how nice my old TB looked?

Now on Windows 10 2004 and new TB .

I wish to make the Menu toolbar font bold and perhaps a bit bigger. How do I do this? Also less importantly the background color used to be set by my Walnut theme which is now defunct and replaced by a partial theme with a white background. I would like to change that as well. See how nice my old TB looked? Now on Windows 10 2004 and new TB .
Прикріплені знімки екрана

Обране рішення

For the tab text:

#tabs-toolbar .tab-text {
	font-size: 10pt !important;
	font-weight: bold !important;
}

https://gist.github.com/silvercircle/023bded0da891872f956b02b55a581ee

Читати цю відповідь у контексті 👍 0

Усі відповіді (6)

more options

The Menu Bar font can be set with the following code:

menubar > menu
{ font-size: 18pt !important;
  font-weight: bold !important;}


For the background color of the Mail Toolbar:

#mail-bar3
{ background-color: cyan !important; }


Help/Troubleshooting, 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 colors as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Options/General/Config. editor, restart TB.

See also https://addons.thunderbird.net/en-US/thunderbird/addon/walnut-light/

Змінено sfhowes

more options

Great the Menu toolbar is in BOLD !!

How would I make the font of the Mail Tool Bar bold? Also how do I change the background color of the message list pane and tree ? white is not my preference.

And thank you very much.


Should I be separating these questions to different threads?

more options

For the Mail Toolbar:

#mail-bar3
{ background-color: cyan !important; 
font-size: 18px !important; color: red !important; 
font-weight: bold !important;}


Threads and Folder Panes background color:

#folderTree,
#threadTree
{
  background-color: #D3D3D3 !important;
  color: black !important;
}
more options

sfhowes

This great! I have the format I need to adjust those now! One more since I have you :) The Tabs, tab bar would be nice to have a bold font as well!

One thing else I just learned, very important to save the changes to the actual css file before trying in TB. OK I knew this but forgot. Thanks again

more options

Вибране рішення

For the tab text:

#tabs-toolbar .tab-text {
	font-size: 10pt !important;
	font-weight: bold !important;
}

https://gist.github.com/silvercircle/023bded0da891872f956b02b55a581ee

more options

Thanks again and for that link, it looks to be very useful.

I had found users userchrome.css files but they were so complex I was a bit afraid to try to interpret them.