Make toolbar fonts bold in FF 57

Discussion about official Mozilla Firefox builds
Post Reply
josegotme
Posts: 407
Joined: December 23rd, 2008, 11:43 am

Make toolbar fonts bold in FF 57

Post by josegotme »

How can this be done? No addons like the old FF. Need a css script no doubt.
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: Make toolbar fonts bold in FF 57

Post by Aris »

I assume you want bold text for bookmarks and menubar items, right?

Code: Select all

#main-menubar > menu > :-moz-any(label,description),
#PlacesToolbarItems toolbarbutton > :-moz-any(label,description) {
  font-weight: bold !important;
}
You can add code to your userChrome.css inside browsers profile folder.
josegotme
Posts: 407
Joined: December 23rd, 2008, 11:43 am

Re: Make toolbar fonts bold in FF 57

Post by josegotme »

Thank you. It works just fine. Anyway to make Tabs bold?
User avatar
MarkRH
Posts: 1358
Joined: September 12th, 2007, 2:30 am
Location: Edmond, OK
Contact:

Re: Make toolbar fonts bold in FF 57

Post by MarkRH »

This will make all the tabs bold:

Code: Select all

tab {
    font-weight: bold !important;
}
Just the selected one:

Code: Select all

tab [selected] {
    font-weight: bold !important;
}
Post Reply