-
Notifications
You must be signed in to change notification settings - Fork 14
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
specificity of input[type="search"] box-sizing #8
Comments
@nikvm It seems, this wont be "fixed" in the original repo, as discussed here which is a shame I think. I've gone through this issue too, having to override it myself with Though I think this is something we need to override ourselves in every project and could probably go into something like input[type="search"] {
box-sizing: border-box;
} |
I'd merge a patch for this normalize issue; agree that it's annoying / wrong. |
Ah that's great news and a big relief. Thanks @necolas for addressing this issue! |
Just for the records: The above mentioned patch is being applied |
For the records again: Version 4.0.0 of normalize.css has landed. In that version, this issue is being addressed:
With #10, there is already a PR to update to version 4.0.0. When #10 is merged, this issue can be closed. |
👍 |
I was styling a search field today and relied on it being set to
box-sizing: border-box
.I noticed that
input[type="search"]
box-sizing
rule trumps the generic rules in inuit-box-sizing.I ended up setting the rule in my component class, which is all right but not expected.
Any thoughts? - Thanks.
The text was updated successfully, but these errors were encountered: