Trying to change TabsToolbar background in Linux

Discuss application theming and theme development.
Post Reply
User avatar
specialk
Posts: 19
Joined: December 11th, 2004, 6:50 am
Location: Baltimore Md

Trying to change TabsToolbar background in Linux

Post by specialk »

I have an .XPI theme I'm trying to modify. It handles both windows and linux and I've been able to get a forestgreen TabsToolbar in windows but I can't for the life of me get it to work in Linux Mint 17 Cinnamon.
I've tried all sorts of these lines one at a time of course. The first one is what works in Windows but for the life of me I can't get Linux to do anything but a grey color. I'm hoping someone has worked with Linux.

#TabsToolbar {
background-image: linear-gradient(rgb(34,139,34),rgb(34,139,34)) !important;
}

#TabsToolbar {
background: forestgreen !important;
}

#main-window #navigator-toolbox #TabsToolbar:not(:-moz-lwtheme){
background: forestgreen !important;
}

#TabsToolbar[tabsontop=true] {
background: forestgreen !important;
}

#navigator-toolbox[tabsontop="true"] #TabsToolbar {
background: forestgreen !important;
}
User avatar
Frank Lion
Posts: 21173
Joined: April 23rd, 2004, 6:59 pm
Location: ... The Exorcist....United Kingdom
Contact:

Re: Trying to change TabsToolbar background in Linux

Post by Frank Lion »

Slap a few of these in there - viewtopic.php?p=13337153#p13337153 Sounds like the OS is taking priority in Linux and you need the moz-app: none !imp on that code.
"The only thing necessary for the triumph of evil, is for good men to do nothing." - Edmund Burke (attrib.)
.
User avatar
specialk
Posts: 19
Joined: December 11th, 2004, 6:50 am
Location: Baltimore Md

Re: Trying to change TabsToolbar background in Linux

Post by specialk »

Fabulous, this fixed the issue.
-moz-appearance: none !important;
Inserted it before the actual background statement.

Thanks a ton. Drove me batty.
Post Reply