can I change the progress bar appearance?

Discuss application theming and theme development.
Post Reply
User avatar
ugggf
Posts: 47
Joined: November 10th, 2002, 2:59 am

can I change the progress bar appearance?

Post by ugggf »

:?:

Any ideas how to change the size of the progress bar? I' ve already changed the height of status bar from userchrome. What about the progress indicator?
User avatar
laszlo
Posts: 5225
Joined: November 4th, 2002, 6:13 pm
Location: .de
Contact:

Post by laszlo »

How about this?

Code: Select all

.progressmeter-statusbar {
  ...
}
User avatar
David James
Posts: 1321
Joined: November 4th, 2002, 10:19 pm
Location: Ottawa, Ontario, Canada
Contact:

Post by David James »

I for one would also love to know so I can cut down the height of the status bar in the Pinball theme. But don't rush; I'm not working on it for another 2 or 3 weeks :)
Pinball-Firefox maintainer.
http://david.jamesnet.ca/
Debian Sid, KDE 3.3
seb
Posts: 1578
Joined: November 4th, 2002, 11:26 pm
Location: Paris, France
Contact:

Post by seb »

David, did you try this?
#status-bar {
max-height:15px !important;
}

.progressmeter-statusbar {
max-height: 12px !important;
}
User avatar
David James
Posts: 1321
Joined: November 4th, 2002, 10:19 pm
Location: Ottawa, Ontario, Canada
Contact:

Post by David James »

Thanks Seb... now you've gone out and got me to spend some time on this. Sheesh. It is working, btw, though I had to scale down the (i) icon a bit to prevent the statusbar from growing and contracting. The secure site icon does not seem to be a problem at this height, though I suspect if it was reduced anymore it would be. I'll be posting the newly contracted Pinball later today, but I first want to cut out some of the space between the Menu bar items.
Pinball-Firefox maintainer.
http://david.jamesnet.ca/
Debian Sid, KDE 3.3
User avatar
David James
Posts: 1321
Joined: November 4th, 2002, 10:19 pm
Location: Ottawa, Ontario, Canada
Contact:

Post by David James »

Ok, this should make everyone a little happier... Pinball with smaller status bar and menubar padding. Just go to this page to get it.

screenshot
Pinball-Firefox maintainer.
http://david.jamesnet.ca/
Debian Sid, KDE 3.3
User avatar
ugggf
Posts: 47
Joined: November 10th, 2002, 2:59 am

Post by ugggf »

Thanks everybody, that's exactly what I was looking for... :D
User avatar
ugggf
Posts: 47
Joined: November 10th, 2002, 2:59 am

one more question...

Post by ugggf »

Hmm, now I want to change the progress-bar color. Background-color works but cannot change the active part color. Any ideas?
User avatar
rbrimhall
Posts: 332
Joined: November 13th, 2002, 11:20 pm
Location: Memphis, TN

Post by rbrimhall »

Netsabes wrote:David, did you try this?
#status-bar {
max-height:15px !important;
}

.progressmeter-statusbar {
max-height: 12px !important;
}


This works great but how can you decrease font size?
User avatar
laszlo
Posts: 5225
Joined: November 4th, 2002, 6:13 pm
Location: .de
Contact:

Post by laszlo »

You could try something like this:

Code: Select all

#statusbar-display {
  font-size: 80% !important;
}
User avatar
rbrimhall
Posts: 332
Joined: November 13th, 2002, 11:20 pm
Location: Memphis, TN

Post by rbrimhall »

laszlo wrote:You could try something like this:

Code: Select all

#statusbar-display {
  font-size: 80% !important;
}


Works! Used 85%... Thanks!!
Post Reply