• dan@lemm.ee
    link
    fedilink
    English
    arrow-up
    8
    ·
    1 year ago

    You can access the option elements inside the select via the dom and style them there. In most browsers on a Mac (which that looks like?) those selects are actually implemented as separate windows - not even part of the browser, so you’re going to struggle to access them directly.

      • dan@lemm.ee
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        1 year ago

        Did I say it was a native dropdown? Nope. I said it was implemented as a separate window.

        You can demonstrate that by trying to take a screenshot of the whole window when you have an open dropdown (cmd + shift + 4, then press space to select a window), and you’ll see the contents of the dropdown aren’t in the resulting screenshot (but are if you select an area or screenshot the whole screen).

        Regardless, the fix is the same: use the inspector tab to navigate to the option element inside the select in the DOM itself, you can manipulate the elements there, although if you want to change the styling supported CSS styles are extremely limited. If you really want to control the appearance of a select element you’re probably going to have to render them yourself.