Refine task form controls
Build custom container images / build (map[base_image:php:8-fpm-alpine build_args:PHP_VERSION=8 context:php8-pgsql fingerprint_command:{ apk info -v | LC_ALL=C sort; find /usr/local/lib/php/extensions /usr/local/etc/php/conf.d -type f -exec sha256sum {} + | LC_ALL=C sort; } name:ph… (push) Successful in 48s
Build custom container images / build (map[base_image:postgres:18 build_args:PG_VERSION=18 POSTGIS_VERSION=3 VCHORD_VERSION=0.5.3 context:postgres fingerprint_command:{ dpkg-query -W -f='${binary:Package}=${Version}\n' | LC_ALL=C sort; find /usr/lib/postgresql -type f -exec sha256su… (push) Successful in 1m41s
Build custom container images / build (map[base_image:python:3 build_args:PYTHON_VERSION=3 context:python-tools fingerprint_command:{ dpkg-query -W -f='${binary:Package}=${Version}\n' | LC_ALL=C sort; pip freeze | LC_ALL=C sort; } name:python-tools oci_labels:org.opencontainers.ima… (push) Successful in 1m19s

This commit is contained in:
ajp_anton
2026-08-18 03:19:07 +00:00
parent c1146cfcf5
commit b256147d28
3 changed files with 41 additions and 19 deletions
+27 -15
View File
@@ -61,15 +61,18 @@ a {
align-items: end;
display: grid;
gap: .75rem;
grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
grid-template-columns: minmax(20rem, 1fr) auto;
min-width: 0;
}
.task-input {
margin: 0;
.task-options {
display: grid;
gap: .75rem;
min-width: 0;
}
.task-input { margin: 0; }
.task-input label,
.task-input fieldset label {
display: block;
@@ -110,22 +113,31 @@ button {
}
.task-action {
align-items: stretch;
border-left: 1px solid color-mix(in srgb, currentColor 15%, transparent);
display: flex;
gap: .4rem;
grid-column: -1;
grid-row: 1;
margin-left: .25rem;
padding-left: .75rem;
justify-self: end;
}
.task-action select,
.task-action button {
.split-button {
display: inline-flex;
}
.split-button select,
.split-button button,
.task-action > button {
margin: 0;
white-space: nowrap;
}
.split-button select {
border-bottom-right-radius: 0;
border-right: 0;
border-top-right-radius: 0;
}
.split-button button {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.visually-hidden {
height: 1px;
margin: -1px;
@@ -179,11 +191,11 @@ button:disabled {
@media (max-width: 42rem) {
.task-form {
grid-template-columns: minmax(0, 1fr) auto;
grid-template-columns: 1fr;
}
.task-action {
grid-column: 2;
justify-self: start;
}
}