Is userchrome.css no longer valid?

User Help for Seamonkey and Mozilla Suite
Post Reply
User avatar
fixit7
Posts: 233
Joined: May 19th, 2015, 3:11 pm

Is userchrome.css no longer valid?

Post by fixit7 »

This is my userchrome.css. My bookmarks pull down should have black text on a white background.
Instead I have white text on a dark grey.

@namespace url("http://www.mozilla.org/keymaster/gateke ... s.only.xul"); /* set default namespace to XUL */

/*
This increase size of font in Bookmarks Menu Popup
*/

menupopup#bookmarksMenuPopup * {
font-size: 13pt !important
}

/* This changes foreground color of bookmarks

@namespace url("http://www.mozilla.org/keymaster/gateke ... s.only.xul"); .menu-iconic-text{ color: #000000 !important; }

/*
Change background color of bookmarks menu to white
/*
#bookmarksMenuPopup * {background: white !important}
User avatar
fixit7
Posts: 233
Joined: May 19th, 2015, 3:11 pm

Re: Is userchrome.css no longer valid?

Post by fixit7 »

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

Re: Is userchrome.css no longer valid?

Post by therube »

Yes, userchrome.css is still valid.

You're code, well I suppose that's a different story (& one I wouldn't know).

Has your code worked before & now stopped?
Or is it new code to you?

You have @namespace in there twice.
Is that intended?
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
User avatar
therube
Posts: 21714
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Is userchrome.css no longer valid?

Post by therube »

You had some syntax issues.

Don't know if this is "right", but at least it works, somewhat:

Code: Select all

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



/*
This increase size of font in Bookmarks Menu Popup
*/

menupopup#bookmarksMenuPopup * {
font-size: 13pt !important
}

/* This changes foreground color of bookmarks */

.menu-iconic-text{ color: #000000 !important; }

/*
Change background color of bookmarks menu to white
*/

#bookmarksMenuPopup * {background: white !important}
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
User avatar
fixit7
Posts: 233
Joined: May 19th, 2015, 3:11 pm

Re: Is userchrome.css no longer valid?

Post by fixit7 »

I tried yours but it did not work.

Did it work for you?
User avatar
therube
Posts: 21714
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Is userchrome.css no longer valid?

Post by therube »

Image
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
Post Reply