ui(deploy): StatusCard for Deployment tab

Status badge, replica count, URL, JAR/checksum grid, and stop/start
actions for the latest deployment. CSS added to AppDeploymentPage.module.css.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-22 23:02:44 +02:00
parent e96c3cd0cf
commit 98a7b7819f
2 changed files with 87 additions and 0 deletions

View File

@@ -219,6 +219,33 @@
font-size: 13px;
}
/* StatusCard */
.statusCard {
border: 1px solid var(--border);
border-radius: 6px;
padding: 14px;
background: var(--bg-surface);
display: flex;
flex-direction: column;
gap: 12px;
}
.statusCardHeader { display: flex; align-items: center; gap: 8px; }
.statusCardGrid { display: grid; grid-template-columns: 100px 1fr; gap: 6px 12px; font-size: 13px; }
.statusCardActions { display: flex; gap: 8px; }
/* DeploymentTab */
.deploymentTab {
display: flex;
flex-direction: column;
gap: 12px;
flex: 1 1 auto;
min-height: 0;
}
.logFill { flex: 1 1 auto; min-height: 200px; }
/* HistoryDisclosure */
.historyRow { margin-top: 16px; }
/* Env vars list */
.envVarsList {
display: flex;