Skip to content
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

Align empty date/time inputs in Safari iOS #14977

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,15 @@ exports[`\`@import 'tailwindcss'\` is replaced with the generated CSS 1`] = `
-webkit-appearance: none;
}

input:where([type="date"], [type="time"], [type="datetime-local"], [type="month"], [type="week"]) {
display: inline-block;
}

::-webkit-date-and-time-value {
vertical-align: middle;
text-align: inherit;
min-height: 1lh;
display: inline-block;
}

::-webkit-datetime-edit {
Expand Down
18 changes: 14 additions & 4 deletions packages/tailwindcss/preflight.css
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,23 @@ progress {
}

/*
1. Ensure date/time inputs have the same height when empty in iOS Safari.
2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
Ensure the empty date/time inputs are correctly aligned in iOS Safari.
*/
input:where([type="date"], [type="time"], [type="datetime-local"], [type="month"], [type="week"]) {
display: inline-block;
}

/*
1. Ensure the empty date/time inputs are correctly aligned in iOS Safari.
2. Ensure date/time inputs have the same height when empty in iOS Safari.
3. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
min-height: 1lh; /* 1 */
text-align: inherit; /* 2 */
vertical-align: middle; /* 1 */
min-height: 1lh; /* 2 */
text-align: inherit; /* 3 */
display: inline-block; /* 1 */
}

/*
Expand Down