Replace the All Services grid as the landing view with a Nextcloud-style welcome dashboard: - Greeting (time-of-day), "Welcome to Your Sovereign Digital & Financial Life" headline, version + role meta line - Status cards: Systems Operational, Network (LAN/WAN/hostname), Bitcoin sync progress with ETA, and available-updates card - Calm drifting orb background animation (transform-only, disabled under prefers-reduced-motion) - Services grid stays mounted but hidden until the user browses (Browse button, search, or a nav category); Dashboard nav item returns to the welcome view - Move role badge and autolaunch preference out of the sidebar; autolaunch toggle now lives in the Systems Operational modal - Remove LAN/WAN chip from the topbar; IPs live on the Network card
104 lines
2.2 KiB
CSS
104 lines
2.2 KiB
CSS
/* ── Topbar (replaces the old header-bar + ip-bar) ──────────────── */
|
|
|
|
.topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
padding: 13px 26px;
|
|
background: var(--surface);
|
|
border-bottom: 1px solid var(--border);
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
z-index: 5;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 1.02rem;
|
|
font-weight: 800;
|
|
letter-spacing: -0.01em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* ── Search ─────────────────────────────────────────────────────── */
|
|
|
|
.search-box {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 99px;
|
|
padding: 8px 16px;
|
|
flex: 1;
|
|
max-width: 400px;
|
|
min-width: 140px;
|
|
margin-left: 18px;
|
|
color: var(--text-3);
|
|
transition: border-color 0.15s, box-shadow 0.15s;
|
|
}
|
|
|
|
.search-box:focus-within {
|
|
border-color: rgba(66, 243, 154, 0.35);
|
|
box-shadow: 0 0 0 3px rgba(66, 243, 154, 0.09);
|
|
}
|
|
|
|
.search-box svg { width: 15px; height: 15px; flex-shrink: 0; }
|
|
|
|
.search-box input {
|
|
background: none;
|
|
border: 0;
|
|
outline: 0;
|
|
color: var(--text);
|
|
width: 100%;
|
|
font: inherit;
|
|
font-size: 0.87rem;
|
|
}
|
|
|
|
.search-box input::placeholder { color: var(--text-3); }
|
|
|
|
.top-actions {
|
|
display: flex;
|
|
gap: 9px;
|
|
margin-left: auto;
|
|
order: 5;
|
|
}
|
|
|
|
/* ── Legacy badges (still used inside dialogs) ──────────────────── */
|
|
|
|
.role-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 7px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid var(--border-strong);
|
|
color: var(--text-2);
|
|
font-size: 0.72rem;
|
|
font-weight: 750;
|
|
padding: 6px 12px;
|
|
border-radius: 99px;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.os-version-badge {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
color: var(--text-2);
|
|
font-size: 0.66rem;
|
|
font-weight: 600;
|
|
padding: 2px 9px;
|
|
border-radius: 99px;
|
|
border: 1px solid var(--border);
|
|
letter-spacing: 0.02em;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.btn-header-reboot {
|
|
padding: 5px 10px;
|
|
font-size: 0.72rem;
|
|
}
|
|
}
|