Clear Downloads button text color

Discuss application theming and theme development.
Post Reply
Fabius85
Posts: 2
Joined: December 12th, 2013, 4:52 am

Clear Downloads button text color

Post by Fabius85 »

Hi! I need some help with a really small change i need to make to a theme.
I need to change the text color of "Clear Downloads" button:
Image
Possibly both when it's enabled (downloads list contains items) and when it's disabled (downloads list is yet empty).
It seems that unlike all other "Library" toolbar buttons, it's color is not affected by chrome://browser/skin/places/organizer.css

Code: Select all

#placesMenu > menu {
  color: white;
}

So how do i change it?
Thanks in advance!
Fabius85
Posts: 2
Joined: December 12th, 2013, 4:52 am

Re: Clear Downloads button text color

Post by Fabius85 »

No matter, i spent an hour trying to find a way to fix this and then, as soon as i posted here, i figured out it was:

Code: Select all

#clearDownloadsButton {
  color: white;
}

#clearDownloadsButton[disabled] {
  color: #A3A3A3;
}
Post Reply