-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(forms): input-group and validation icons #32968
Conversation
Fixes #30131 Issue mentions `form-control` but it impacts `.custom-select` — but not `textarea` since it has a qualifying type selector that increases its specificty. So another way could be to set `select.custom-select` and `input.form-control`. Would there be any other tag concerned by those classes?
Not stoked about the |
IMHO And I don't think we should spend time to work around this, since it's only in v4. Going further might lead to smuch more side effects. |
Fixes #30131
Issue mentions
.form-control
but it also impacts.custom-select
— but nottextarea
(as you may see in this reduced test case) since it has a qualifying type selector that increases its specificity.So another way could be to set
select.custom-select
andinput.form-control
. Would there be any other tag concerned by those classes?