Fix styles for select[multiple] form controls #8406
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi there!
I had a small problem when using a filter with multiple selection turned on
It currently looks like this:
As you can see, the
<select multiple>element is getting a white background with white text when in dark mode.The rule in plugin.js is supposed to kick in and apply some tailwind styles to make things look good in dark mode i.e.
.. but the specificity of the base input styles near the top of plugin.js is getting in the way of applying
dark:bg-gray-700properly. It's stuck withbackground-color: #fff.It looks like it is a CSS specificity issue because the rule matches both the
selectand[multiple]rules.This PR removes the
[multiple]selector on the base input style.. I think it should already be covered by theselectselector?Thanks!