-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
Temporal inputs are 2px taller than other textual inputs in Chrome #18842
Comments
To be clear, this is NOT causally related to #17308. |
Is there any update on this? |
Same here !!!!! On Oct 31, 2016 9:49 PM, "Chris Rebert" [email protected] wrote:
|
can't find the temporal input types in the new docs except for the reboot page |
yes, issue is still present for (and as an aside, |
turns out that only giving all inputs an explicit |
Relevant: https://bugs.chromium.org/p/chromium/issues/detail?id=417606 It's unfortunately
It's a terrible solution on its own when you think about how critical that spinner is for
Before - http://jsbin.com/kigayoyeja/1/edit?html,css,output Did I miss any input types? |
inline css isn't great but I've done this incase it's any use to anyone:
|
- Inherit box-sizing and set `box-sizing: border-box;` on body This makes it possible for 3th party components to use `box-sizing: content-box` by just applying the box-sizing to the wrapper - Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Remove `max-width` from `legend` (`width` already represent)
- Inherit box-sizing and set `box-sizing: border-box;` on body This makes it possible for 3th party components to use `box-sizing: content-box` by just applying the box-sizing to the wrapper - Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Remove `max-width` from `legend` (`width` already represent)
- Inherit box-sizing and set `box-sizing: border-box;` on body This makes it possible for 3th party components to use `box-sizing: content-box` by just applying the box-sizing to the wrapper - Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Additional resets and theming options for `legend` - Add date & color inputs to reboot page - Use the same borders for text search, text inputs, textareas and date inputs - Move code styling to reboot
- Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Additional resets and theming options for `legend` - Add date & color inputs to reboot page - Use the same borders for text search, text inputs, textareas and date inputs - Move code styling to reboot
- Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Additional resets and theming options for `legend` - Add date & color inputs to reboot page - Use the same borders for text search, text inputs, textareas and date inputs - Move code styling to reboot
- Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Additional resets and theming options for `legend` - Add date & color inputs to reboot page - Use the same borders for text search, text inputs, textareas and date inputs - Move code styling to reboot
In Chrome,
<input class="form-control">
s with atype
ofdatetime-local
,date
,month
,week
, ortime
are 40px tall, but<input type="text" class="form-control">
(and similar) are 38px tall. They ought to all match.Looks like the temporal inputs use Flexbox internally; that's likely a factor.
The text was updated successfully, but these errors were encountered: