mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-11 03:59:09 +00:00
fix(scheduler): run post-completion system actions
This commit is contained in:
+29
-1
@@ -271,12 +271,40 @@
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
input:not([type]),
|
||||
input[type="date"],
|
||||
input[type="datetime-local"],
|
||||
input[type="email"],
|
||||
input[type="month"],
|
||||
input[type="number"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
input[type="tel"],
|
||||
input[type="text"],
|
||||
input[type="time"],
|
||||
input[type="url"],
|
||||
input[type="week"],
|
||||
textarea {
|
||||
user-select: auto;
|
||||
-webkit-user-select: auto;
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"],
|
||||
input[type="range"],
|
||||
input[type="color"],
|
||||
input[type="file"],
|
||||
label:has(input[type="checkbox"]:not(:disabled)),
|
||||
label:has(input[type="radio"]:not(:disabled)) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input:disabled,
|
||||
label:has(input:disabled) {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
:focus-visible {
|
||||
outline: 2px solid hsl(var(--accent-color) / 0.5);
|
||||
outline-offset: 2px;
|
||||
|
||||
Reference in New Issue
Block a user