What package(s) are you using?
Detailed description
In Chrome on Windows a <select> background needs to be set to fit the <color>, otherwise the options can become unreadable. This is very OS and browser-specific; e.g. it is not a problem for Firefox on Windows or Chrome on Mac.
Affected is the <Select> component with the inline class set without mouse hover in a dark theme. E.g. used in <Pagination>.
With hover (CSS sets background):

Without hover:

Steps to reproduce the issue
- Use dark theme
- Add
<Pagination>
- Open one of the dropdowns
- Move mouse away
The official component page demonstrates this behavior.
Additional information
Relevant CSS that seems to cause this:
.bx--select--inline .bx--select-input {
...
background-color: transparent;
...
}
The select already has an explicit background otherwise.
What package(s) are you using?
carbon-componentscarbon-components-reactcarbon-components-svelteDetailed description
In Chrome on Windows a
<select>background needs to be set to fit the<color>, otherwise the options can become unreadable. This is very OS and browser-specific; e.g. it is not a problem for Firefox on Windows or Chrome on Mac.Affected is the
<Select>component with the inline class set without mouse hover in a dark theme. E.g. used in<Pagination>.With hover (CSS sets background):

Without hover:

Steps to reproduce the issue
<Pagination>The official component page demonstrates this behavior.
Additional information
Relevant CSS that seems to cause this:
The select already has an explicit background otherwise.