Release ForgeFlow 0.6.0

This commit is contained in:
NuklearRabbit
2026-07-25 05:59:07 +02:00
parent cf1f67a823
commit 9d3933c878
48 changed files with 2208 additions and 466 deletions
+13 -1
View File
@@ -66,6 +66,7 @@ button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-
.boot-screen { height: 100vh; display: grid; place-content: center; justify-items: center; gap: 10px; color: var(--text-muted); }
.boot-screen strong { color: var(--text); font-size: 16px; }
.boot-brand-logo { width: 72px; height: 56px; object-fit: contain; filter: drop-shadow(0 10px 28px rgba(0,174,255,.24)); }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(145deg, var(--primary), var(--primary-strong)); color: #07152e; font-weight: 800; font-size: 20px; box-shadow: 0 8px 30px rgba(91,143,249,.25); }
.app-shell { height: 100vh; display: grid; grid-template-rows: 48px minmax(0,1fr) 25px; background: var(--bg); }
@@ -532,7 +533,10 @@ kbd { min-width: 24px; padding: 2px 5px; border: 1px solid var(--line); border-b
.update-card, .server-card { align-items: flex-start; flex-direction: column; }
}
.setup-brand-logo { width: 150px; height: auto; display: block; margin-bottom: 12px; }
.setup-brand-logo { width: 180px; max-height: 76px; object-fit: contain; object-position: left center; display: block; margin-bottom: 12px; }
.setup-brand-logo-light { display: none; }
html[data-theme="light"] .setup-brand-logo-dark { display: none; }
html[data-theme="light"] .setup-brand-logo-light { display: block; }
/* v0.5 viewport-safe dialogs */
@@ -553,3 +557,11 @@ kbd { min-width: 24px; padding: 2px 5px; border: 1px solid var(--line); border-b
.form-grid { grid-template-columns: 1fr; }
.field.full, .check-field.full { grid-column: 1; }
}
/* ForgeFlow 0.6 recovery and DockerMan controls */
.git-tools-grid .troubleshooting-panel { grid-column: 1 / -1; }
.troubleshooting-summary { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--text-muted); }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.deploy-card .card-actions { flex-wrap: wrap; }
.field small { display: block; margin-top: 5px; color: var(--text-faint); line-height: 1.35; }