style(next): extend the input field style to cover date/time pickers also

This commit is contained in:
Adorian Doran 2025-02-08 00:05:36 +02:00
parent 9f7a218772
commit 1bfce1c8ed

View File

@ -140,6 +140,7 @@ input:not([type]),
input[type="text"], input[type="text"],
input[type="number"], input[type="number"],
input[type="password"], input[type="password"],
input[type="datetime-local"],
textarea.form-control, textarea.form-control,
textarea, textarea,
.tn-input-field { .tn-input-field {
@ -155,6 +156,7 @@ 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="datetime-local"]:hover,
textarea.form-control:hover, textarea.form-control:hover,
textarea:hover, textarea:hover,
.tn-input-field:hover { .tn-input-field:hover {
@ -166,6 +168,7 @@ 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="datetime-local"]:focus,
textarea.form-control:focus, textarea.form-control:focus,
textarea:focus, textarea:focus,
.tn-input-field:focus, .tn-input-field:focus,