tailwindcss 4.0.0-alpha.32 → 4.0.0-alpha.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib.d.mts +1 -1
- package/dist/lib.js +9 -9
- package/dist/lib.mjs +7 -7
- package/index.css +9 -3
- package/package.json +2 -2
- package/preflight.css +9 -3
package/index.css
CHANGED
@@ -721,6 +721,7 @@
|
|
721
721
|
1. Ensure date/time inputs have the same height when empty in iOS Safari.
|
722
722
|
2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
|
723
723
|
*/
|
724
|
+
|
724
725
|
::-webkit-date-and-time-value {
|
725
726
|
min-height: 1lh; /* 1 */
|
726
727
|
text-align: inherit; /* 2 */
|
@@ -729,6 +730,7 @@
|
|
729
730
|
/*
|
730
731
|
Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
|
731
732
|
*/
|
733
|
+
|
732
734
|
::-webkit-datetime-edit {
|
733
735
|
display: inline-flex;
|
734
736
|
}
|
@@ -736,6 +738,11 @@
|
|
736
738
|
/*
|
737
739
|
Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
|
738
740
|
*/
|
741
|
+
|
742
|
+
::-webkit-datetime-edit-fields-wrapper {
|
743
|
+
padding: 0;
|
744
|
+
}
|
745
|
+
|
739
746
|
::-webkit-datetime-edit,
|
740
747
|
::-webkit-datetime-edit-year-field,
|
741
748
|
::-webkit-datetime-edit-month-field,
|
@@ -744,9 +751,8 @@
|
|
744
751
|
::-webkit-datetime-edit-minute-field,
|
745
752
|
::-webkit-datetime-edit-second-field,
|
746
753
|
::-webkit-datetime-edit-millisecond-field,
|
747
|
-
::-webkit-datetime-edit-meridiem-field
|
748
|
-
|
749
|
-
padding: 0;
|
754
|
+
::-webkit-datetime-edit-meridiem-field {
|
755
|
+
padding-block: 0;
|
750
756
|
}
|
751
757
|
|
752
758
|
/*
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "tailwindcss",
|
3
|
-
"version": "4.0.0-alpha.
|
3
|
+
"version": "4.0.0-alpha.33",
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
@@ -67,7 +67,7 @@
|
|
67
67
|
"@types/node": "^20.14.8",
|
68
68
|
"lightningcss": "^1.26.0",
|
69
69
|
"dedent": "1.5.3",
|
70
|
-
"@tailwindcss/oxide": "4.0.0-alpha.
|
70
|
+
"@tailwindcss/oxide": "4.0.0-alpha.33"
|
71
71
|
},
|
72
72
|
"scripts": {
|
73
73
|
"lint": "tsc --noEmit",
|
package/preflight.css
CHANGED
@@ -248,6 +248,7 @@ progress {
|
|
248
248
|
1. Ensure date/time inputs have the same height when empty in iOS Safari.
|
249
249
|
2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
|
250
250
|
*/
|
251
|
+
|
251
252
|
::-webkit-date-and-time-value {
|
252
253
|
min-height: 1lh; /* 1 */
|
253
254
|
text-align: inherit; /* 2 */
|
@@ -256,6 +257,7 @@ progress {
|
|
256
257
|
/*
|
257
258
|
Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
|
258
259
|
*/
|
260
|
+
|
259
261
|
::-webkit-datetime-edit {
|
260
262
|
display: inline-flex;
|
261
263
|
}
|
@@ -263,6 +265,11 @@ progress {
|
|
263
265
|
/*
|
264
266
|
Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
|
265
267
|
*/
|
268
|
+
|
269
|
+
::-webkit-datetime-edit-fields-wrapper {
|
270
|
+
padding: 0;
|
271
|
+
}
|
272
|
+
|
266
273
|
::-webkit-datetime-edit,
|
267
274
|
::-webkit-datetime-edit-year-field,
|
268
275
|
::-webkit-datetime-edit-month-field,
|
@@ -271,9 +278,8 @@ progress {
|
|
271
278
|
::-webkit-datetime-edit-minute-field,
|
272
279
|
::-webkit-datetime-edit-second-field,
|
273
280
|
::-webkit-datetime-edit-millisecond-field,
|
274
|
-
::-webkit-datetime-edit-meridiem-field
|
275
|
-
|
276
|
-
padding: 0;
|
281
|
+
::-webkit-datetime-edit-meridiem-field {
|
282
|
+
padding-block: 0;
|
277
283
|
}
|
278
284
|
|
279
285
|
/*
|