dev-multi-env: modularized environments (#1)

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-01-17 22:38:36 +00:00
parent 3eb9863c3e
commit b08495815f
8 changed files with 1785 additions and 225 deletions

View File

@@ -127,28 +127,33 @@ select {
font-size: 12px;
}
.button-row {
display: grid;
grid-template-columns: minmax(64px, 0.8fr) minmax(0, 1.4fr) minmax(64px, 0.8fr);
.env-row {
display: flex;
align-items: flex-end;
}
.env-row .env-field {
flex: 1;
margin: 0;
}
.task-row {
display: flex;
align-items: flex-end;
gap: 8px;
}
.button-row button {
white-space: nowrap;
.task-row button {
padding: 6px 15px;
}
.button-row .primary {
padding: 6px 8px;
.task-row .task-field {
flex: 1;
margin: 0;
}
.stop-row {
display: flex;
justify-content: stretch;
margin-top: 4px;
}
.stop-row button {
width: 100%;
.task-row select {
min-width: 0;
}
.hidden {
@@ -192,7 +197,7 @@ button:active {
border: 1px solid var(--border);
}
.stop-row .ghost {
.stop-btn {
background: #c0392b;
border-color: #c0392b;
color: #fff6f2;