Is there a way to style a menulist in XUL?
I’m using this code but the image is appearing inside the dropdownlist and keeping the original style of the arrow.
menulist,menupopup{
-moz-appearance: none !important;
list-style-image: url("chrome://myExt/skin/images/lang.png") !important;
}
Thanks in advance,
What you are apparently attempting to style isn’t the
<menulist>tag itself but the anonymous<dropmarker>tag inside it. This will work:For more information on anonymous nodes see XUL implicit elements.