Is there a way to increase size of downloads panel font?

User Help for Mozilla Firefox
Post Reply
Negativeions
Posts: 244
Joined: September 17th, 2003, 12:07 pm

Is there a way to increase size of downloads panel font?

Post by Negativeions »

Thanks.
User avatar
therube
Posts: 21714
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Is there a way to increase size of downloads panel font?

Post by therube »

Ctrl++/Ctrl+- does not do it.
I'd imagine that you could do it with CSS, but I wouldn't know how.
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Is there a way to increase size of downloads panel font?

Post by morat »

What do you mean by downloads panel?

1. Library window i.e. Tools > Download
2. Download button in toolbar[id="nav-bar"]

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* Library */

#downloadsRichListBox > richlistitem.download {
  font-size: 18px !important;
}
http://kb.mozillazine.org/UserChrome.css
Negativeions
Posts: 244
Joined: September 17th, 2003, 12:07 pm

Re: Is there a way to increase size of downloads panel font?

Post by Negativeions »

I tried your code morat, thanks. Is there any way to reduce the padding in each entry. Seems like a waste of space for no reason.

Anyways, I was originally talking about the downloads panel. The pull down menu thingy when you click on the downloads button on the toolbar. Isn't that called a panel? I call it a panel because of the old downloads panel tweaks addon called it that. At my resolution setting the downloads panel font is tiny. I need it larger. Thanks.
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Is there a way to increase size of downloads panel font?

Post by morat »

Try these:

Code: Select all

/* Library */

#downloadsRichListBox > richlistitem.download {
  font-size: 18px !important;
  height: 80px !important;
}

Code: Select all

/* Downloads panel */

#downloadsPanel {
  font-size: 18px !important;
}

#downloadsListBox > richlistitem[type="download"] {
  height: 60px !important;
}
It is a panel element so it is a good description.
Negativeions
Posts: 244
Joined: September 17th, 2003, 12:07 pm

Re: Is there a way to increase size of downloads panel font?

Post by Negativeions »

you're awesome, thanks man. How do you know about so many firefox css entries?

How about increasing font of the history panel? Thanks :)
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Is there a way to increase size of downloads panel font?

Post by morat »

Try these:

Code: Select all

/* History panel */

#appMenu_historyMenu > .bookmark-item > .toolbarbutton-text {
  color: orange !important;
  font-size: 18px !important;
}

Code: Select all

/* History panel */

#PanelUI-history * {
  color: orange !important;
  font-size: 18px !important;
}
How do we get DOM info for userChrome in 57+
http://forums.mozillazine.org/viewtopic ... &t=3034448
Negativeions
Posts: 244
Joined: September 17th, 2003, 12:07 pm

Re: Is there a way to increase size of downloads panel font?

Post by Negativeions »

Thanks, both of these seem to do the same thing.

Now one last thing (hopefully).... the font size for the history sidebar. I want it to match the history panel font.

Oh, and also is there a way to widen the history panel so I can see more of the title/url? and the history sidebar while we're at it (beyond user adjustable). Thanks!
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Is there a way to increase size of downloads panel font?

Post by morat »

Negativeions wrote:both of these seem to do the same thing
The first tweak styles only the history entries.

The second tweak styles the entire history panel.
Negativeions
Posts: 244
Joined: September 17th, 2003, 12:07 pm

Re: Is there a way to increase size of downloads panel font?

Post by Negativeions »

Thanks Morat. I still can't really make sense of the link you provided in how I'm supposed to find the css entry for the things I mentioned in my last post. If you come across them let me know. Thanks.
User avatar
Frank Lion
Posts: 21177
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: Is there a way to increase size of downloads panel font?

Post by Frank Lion »

Negativeions wrote:If you come across them let me know. Thanks.
Perhaps he can give your car a couple of coats of wax at the same time.
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
Negativeions
Posts: 244
Joined: September 17th, 2003, 12:07 pm

Re: Is there a way to increase size of downloads panel font?

Post by Negativeions »

??? Do you know how I can do this or not? I'm not a programmer, sorry.
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Is there a way to increase size of downloads panel font?

Post by morat »

Negativeions wrote:a way to widen the history panel
Try this:

Code: Select all

#PanelUI-history {
  max-width: 800px !important;
  width: 800px !important;
}
For the other tweaks... I'm passing the baton on to another user.
Post Reply