feat: add "+ App" shortcut button to sidebar Applications header
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m20s
CI / docker (push) Successful in 1m12s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

Adds a subtle "+ App" button in the sidebar section header for quick
app creation without navigating to the Deployments tab first. Only
visible to OPERATOR and ADMIN roles.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-14 09:10:41 +02:00
parent ac680b7f3f
commit 199d0259cd
2 changed files with 59 additions and 19 deletions

View File

@@ -43,6 +43,34 @@
opacity: 0.6;
}
.appSectionWrap {
position: relative;
}
.addAppBtn {
position: absolute;
top: 6px;
right: 6px;
z-index: 1;
display: flex;
align-items: center;
gap: 2px;
background: none;
border: none;
padding: 2px 6px;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
color: var(--sidebar-muted);
cursor: pointer;
transition: color 0.12s, background 0.12s;
}
.addAppBtn:hover {
color: var(--amber);
background: rgba(255, 255, 255, 0.06);
}
.mainContent {
flex: 1;
display: flex;