[SOLVED] Combobox options in dark theme are not visible in Chrome

I’m working on linux mint, It’s even reproducible in f7 examples, just add a theme-dark class in inspector to the parent, the options will not be visible, as the text-color and background-color are both white. This only happens in chrome and not firefox. Is there a quick fix for it? Thanks in advance.

Solved it with this:

.theme-dark option {
	background-color:  #111;
}

Couldn’t find the right css variable. But it works anyway now!

1 Like