mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 19:12:27 +08:00
style(next): forms: add support for date and time input fields
This commit is contained in:
parent
789178061b
commit
41e925dc94
@ -140,6 +140,8 @@ input:not([type]),
|
||||
input[type="text"],
|
||||
input[type="number"],
|
||||
input[type="password"],
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
textarea.form-control,
|
||||
textarea,
|
||||
@ -156,6 +158,8 @@ input:not([type]):hover,
|
||||
input[type="text"]:hover,
|
||||
input[type="number"]:hover,
|
||||
input[type="password"]:hover,
|
||||
input[type="date"]:hover,
|
||||
input[type="time"]:hover,
|
||||
input[type="datetime-local"]:hover,
|
||||
textarea.form-control:hover,
|
||||
textarea:hover,
|
||||
@ -168,6 +172,8 @@ input:not([type]):focus,
|
||||
input[type="text"]:focus,
|
||||
input[type="number"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="date"]:focus,
|
||||
input[type="time"]:focus,
|
||||
input[type="datetime-local"]:focus,
|
||||
textarea.form-control:focus,
|
||||
textarea:focus,
|
||||
|
Loading…
x
Reference in New Issue
Block a user