Changeset 0.33.0 (#207)

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit is contained in:
2026-03-19 21:37:32 +00:00
committed by xcaliber
parent b1266b0d7c
commit ed3e9363f2
42 changed files with 2527 additions and 129 deletions

View File

@@ -151,3 +151,51 @@
color: var(--text-2, #999);
min-width: 56px;
}
/* ── Admin Dashboard (v0.33.0) ───────────── */
.dashboard-provider-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 12px;
}
.dashboard-provider-card {
background: var(--bg-surface, #1a1a1d);
border: 1px solid var(--border, #2a2a2e);
border-radius: 8px;
padding: 12px 14px;
}
.dashboard-db-pool {
background: var(--bg-surface, #1a1a1d);
border: 1px solid var(--border, #2a2a2e);
border-radius: 8px;
padding: 14px;
}
.dashboard-pool-bar {
height: 8px;
background: var(--bg-raised, #2a2a2e);
border-radius: 4px;
overflow: hidden;
}
.dashboard-pool-fill {
height: 100%;
background: var(--accent, #b38a4e);
border-radius: 4px;
transition: width 0.3s ease;
}
.dashboard-errors {
display: flex;
flex-direction: column;
gap: 1px;
background: var(--border, #2a2a2e);
border: 1px solid var(--border, #2a2a2e);
border-radius: 8px;
overflow: hidden;
}
.dashboard-error-row {
display: flex;
align-items: center;
gap: 12px;
padding: 8px 12px;
background: var(--bg-secondary, #151517);
font-size: 12px;
}