style(next): forms: add support for date and time input fields

This commit is contained in:
Adorian Doran 2025-02-22 02:31:20 +02:00
parent 789178061b
commit 41e925dc94

View File

@ -140,6 +140,8 @@ input:not([type]),
input[type="text"], input[type="text"],
input[type="number"], input[type="number"],
input[type="password"], input[type="password"],
input[type="date"],
input[type="time"],
input[type="datetime-local"], input[type="datetime-local"],
textarea.form-control, textarea.form-control,
textarea, textarea,
@ -156,6 +158,8 @@ input:not([type]):hover,
input[type="text"]:hover, input[type="text"]:hover,
input[type="number"]:hover, input[type="number"]:hover,
input[type="password"]:hover, input[type="password"]:hover,
input[type="date"]:hover,
input[type="time"]:hover,
input[type="datetime-local"]:hover, input[type="datetime-local"]:hover,
textarea.form-control:hover, textarea.form-control:hover,
textarea:hover, textarea:hover,
@ -168,6 +172,8 @@ input:not([type]):focus,
input[type="text"]:focus, input[type="text"]:focus,
input[type="number"]:focus, input[type="number"]:focus,
input[type="password"]:focus, input[type="password"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus, input[type="datetime-local"]:focus,
textarea.form-control:focus, textarea.form-control:focus,
textarea:focus, textarea:focus,