So I've been editing the CSS from the selectMenu UI plugin for jQuery.
I have a separate file with all my CSS in it. I'd like to always include it on each page request but have it ONLY apply to my select menus, not my other jquery UI elements.
How do I accomplish this?
I've put a class called "myClass" on the container for the link and the wrapper span that contains the UL. Here's an example.
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
border: 1px solid #DDDDDD;
color: #a8a8a8;
font-weight: bold;
}
What do I add to this class so it only applies to elements underneath the "myClass" div?