add-on which would allow the drop downs to be colored etc?

Announce and Discuss the Latest Theme and Extension Releases.
Post Reply
rms8
Posts: 15
Joined: October 1st, 2011, 11:50 am

add-on which would allow the drop downs to be colored etc?

Post by rms8 »

Does ANYONE know of an add-on which would allow the drop downs to be colored and the font to be changed in those drop downs (color, style, highlight...)

Noia4 used to allow this, but sadly it wont work beyond FF32.0.3.
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: add-on which would allow the drop downs to be colored et

Post by Aris »

Install Stylish add-on and add this code to a new style:

Code: Select all

/*AGENT_SHEET*/
menupopup {
   -moz-appearance: none !important;
   border: none !important;
   background: lightblue !important;
}
menupopup * {
   color: red !important;
}
menupopup *[disabled] {
   opacity:0.8 !important;
}


Change colors 'lightblue' and 'red' to whatever you like (e.g. color names, hexcodes, hsl(a) or rgb(a) values).
rms8
Posts: 15
Joined: October 1st, 2011, 11:50 am

Re: add-on which would allow the drop downs to be colored et

Post by rms8 »

Aris wrote:Install Stylish add-on and add this code to a new style:

Code: Select all

/*AGENT_SHEET*/
menupopup {
   -moz-appearance: none !important;
   border: none !important;
   background: lightblue !important;
}
menupopup * {
   color: red !important;
}
menupopup *[disabled] {
   opacity:0.8 !important;
}


Change colors 'lightblue' and 'red' to whatever you like (e.g. color names, hexcodes, hsl(a) or rgb(a) values).




VERY, VERY NICE !!!! Pretty darn close. THANKS !

Anyway to curve the corners of the menus?
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: add-on which would allow the drop downs to be colored et

Post by Aris »

Sure, change the border-radius value:

Code: Select all

/*AGENT_SHEET*/
menupopup {
   -moz-appearance: none !important;
   border: none !important;
   border-radius: 3px !important;
   background: lightblue !important;
}
menupopup * {
   color: red !important;
}
menupopup *[disabled] {
   opacity:0.8 !important;
}
rms8
Posts: 15
Joined: October 1st, 2011, 11:50 am

Re: add-on which would allow the drop downs to be colored et

Post by rms8 »

TY!

Looks really great! Guess I may be moving on to 34......

Thanks Aris
Post Reply