diff --git a/public/admin/system-fragment.php b/public/admin/system-fragment.php index 67b9240..9ee7a72 100644 --- a/public/admin/system-fragment.php +++ b/public/admin/system-fragment.php @@ -173,7 +173,7 @@ if ($tab === 'nginx_config') { } ?>
- + diff --git a/public/assets/css/system.css b/public/assets/css/system.css index 0d4d10c..23734ca 100644 --- a/public/assets/css/system.css +++ b/public/assets/css/system.css @@ -105,9 +105,9 @@ font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; } .status-ok { color: var(--accent-green); font-weight: 600; font-size: .85rem; } -.status-warn { color: var(--warning); font-weight: 600; font-size: .85rem; } -.status-err { color: var(--error); font-weight: 600; font-size: .85rem; } -.status-unknown { color: var(--text-tertiary); font-weight: 600; font-size: .85rem; } +.status-warn { color: var(--warning); font-weight: 600; font-size: .85rem; } +.status-err { color: var(--error); font-weight: 600; font-size: .85rem; } +.status-unknown { color: var(--text-tertiary); font-weight: 600; font-size: .85rem; } .srv-section-title { font-size: .82rem; @@ -157,9 +157,9 @@ .disk-bar { height: 100%; border-radius: 3px; - /* width and background-color are set via inline style using --disk-pct and --disk-color */ + /* width and color driven by PHP via --disk-pct and --disk-color inline vars */ width: var(--disk-pct, 0%); - background: var(--disk-color, #4caf50); + background: var(--disk-color, var(--accent-green)); transition: width .3s; } .disk-stats { @@ -170,7 +170,7 @@ margin-top: .25rem; } -/* ── Tab panel loading state ──────────────────────────────────────────────── */ +/* ── Tab panel loading state ───────────────────────────────────────────── */ #sys-tab-panel { min-height: 8rem; /* prevent layout jump while fetching */ position: relative; @@ -256,7 +256,7 @@ } .log-output { background: #0d0d0d; - border: 1px solid var(--admin-border); + border: 1px solid #555; border-radius: 4px; padding: 1rem; overflow-x: auto; @@ -276,7 +276,7 @@ } .log-line + .log-line { border-top: 1px solid rgba(255,255,255,.03); } .log-crit { color: #ff7070; background: rgba(242, 90, 90, 0.12); } -.log-error { color: #f08080; } +.log-error { color: var(--error); } .log-warn { color: var(--warning); } .log-notice { color: #a0c8ff; } .log-line::before { @@ -332,7 +332,7 @@ } .sys-refresh-note a:hover { text-decoration: underline; } -/* ── Cache freshness badges ──────────────────────────────────────────────── */ +/* ── Cache freshness badges ────────────────────────────────────────────── */ .sys-cache-badge { display: inline-block; font-size: .68rem;