Hello - thanks for your reply - yes I found the option to disable it. I am however struggling with something else I wonder if you could help with at all? I'm trying to change the colour blue (default I believe) of the highlighter on variant dropdowns. I've tried to add CSS.
.selectselect:focus,
.selectselect:hover {
background-color: #32cd32 !important;
color: white !important;
outline: 2px solid black !important;
box-shadow: none !important;
}
.selectselect option:checked {
background-color: #32cd32 !important;
color: white !important;
}
.selectselect:focus-visible {
outline: 2px solid black !important;
box-shadow: none !important;
}
.selectselect option:hover,
.selectselect option:focus {
background-color: #32cd32 !important;
color: white !important;
}
I was looking to change the colour initially and was using this to test if it would work, but although the background variants change to green, the highlighter remains blue.
Any help appreciated 🙂