fix(scheduler): run post-completion system actions

This commit is contained in:
NimBold
2026-07-04 17:24:16 +03:30
parent 4a322196de
commit f726b058f7
4 changed files with 186 additions and 62 deletions
+29 -1
View File
@@ -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;