Add typed task input forms

This commit is contained in:
ajp_anton
2026-08-08 18:39:09 +00:00
parent 56d6194324
commit 0549ed1b0d
8 changed files with 521 additions and 16 deletions
+31
View File
@@ -55,6 +55,37 @@ a {
margin: .2rem 0;
}
.tasks form {
min-width: 16rem;
}
.task-input {
margin: .5rem 0;
}
.task-input label,
.task-input fieldset label {
display: block;
}
.task-input input,
.task-input select {
box-sizing: border-box;
font: inherit;
max-width: 100%;
}
.task-input fieldset {
border: 0;
margin: 0;
padding: 0;
}
.input-error {
color: #b00020;
margin: .2rem 0;
}
.run-summary {
font-size: .9rem;
opacity: .75;