Adds a foundational global UI-mode flag — Beginner (default) vs Advanced —
gated by a single toggle on the Services tab title row. First foothold
of a project-wide pattern: any surface that grows extra-technical detail
(mounts, limits, internals, raw IDs, …) will gate it on the same flag,
so a newcomer doesn't see a wall of operator information while a power
user gets everything site-wide with one flip.
How it's wired:
window.LpUi.advanced — { get(), set(on), apply() }
localStorage key — lp.ui.advanced ('0' | '1')
body class — lp-ui--advanced
event — window 'lp-ui-advanced-changed' { advanced }
Surfaces gate their advanced-only DOM via CSS:
body:not(.lp-ui--advanced) .service-rich { display: none; }
So flipping the toggle is instant and DOM-free — no re-render needed.
The Services tab's rich container panel (limits, image, healthcheck,
networks, mounts) is the first thing behind the flag; live CPU%/memory
chips in each row stay visible always because they read just as easily
as a status colour and are useful to everyone.
Title row gets a small slider toggle styled in the project's accent —
unobtrusive, labelled "Advanced". Default OFF (Beginner).
The same _renderRow reorders the log block above the rich-detail block
inside .task-details, so when Advanced is on AND a row is expanded, the
live log appears right where the "Logs" click landed rather than below
a wall of metadata. Helps with the old simple-click feel even when the
extra detail is showing.
Plumbed deliberately to be project-wide so the upcoming first-install
"Beginner vs Advanced" wizard step can seed the flag (planned:
CFG_INSTALL_LEVEL in general config → emit body class server-side at
template render time → no FOUC on a fresh load).
Signed-off-by: librelad <librelad@digitalangels.vip>
426 lines
12 KiB
CSS
426 lines
12 KiB
CSS
/*
|
|
Services tab — rows reuse the .task-item / .task-header / .task-info /
|
|
.task-actions / .task-details / .log-container pattern from the
|
|
task list so the two surfaces look identical. The only service-only
|
|
bits are the status dot inside the status pill, the port chips, and
|
|
a streaming-state hint on the log container.
|
|
*/
|
|
|
|
.services-section {
|
|
padding: 0;
|
|
}
|
|
|
|
/* Mirrors .config-title for visual parity across tabs. */
|
|
.services-title {
|
|
padding: 20px;
|
|
background: transparent;
|
|
border-bottom: 1px solid var(--border-color);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.services-title h3 {
|
|
margin: 0 0 8px 0;
|
|
color: var(--text-primary, #fff);
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.services-title p {
|
|
margin: 0;
|
|
color: var(--text-secondary, #ccc);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.services-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Recessed dark panel wrapping the service rows — mirrors the
|
|
.tasks-container the Tasks tab uses on the app detail page so the
|
|
two tabs share one visual idiom. rgba(bg, 0.2) reads as a sunken
|
|
pocket inside the tab-pane's glass surface. */
|
|
.services-rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.6rem;
|
|
padding: 16px;
|
|
margin: 16px;
|
|
background: rgba(var(--bg-rgb), 0.2);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* ------------------------------------------------------------------ */
|
|
/* Loading + empty + error states */
|
|
/* ------------------------------------------------------------------ */
|
|
.services-loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.6rem;
|
|
padding: 2rem;
|
|
color: var(--text-secondary, var(--text-muted));
|
|
}
|
|
|
|
.services-spinner {
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 2px solid rgba(var(--text-rgb), 0.15);
|
|
border-top-color: var(--accent-color, var(--accent));
|
|
border-radius: 50%;
|
|
animation: services-spin 0.7s linear infinite;
|
|
}
|
|
|
|
@keyframes services-spin { to { transform: rotate(360deg); } }
|
|
|
|
.services-empty {
|
|
text-align: center;
|
|
padding: 2.5rem 1rem;
|
|
color: var(--text-secondary, var(--text-muted));
|
|
}
|
|
|
|
.services-empty-icon {
|
|
font-size: 2rem;
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.services-empty p {
|
|
margin: 0.25rem 0;
|
|
}
|
|
|
|
.services-empty-hint {
|
|
font-size: 0.85rem;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
/* ------------------------------------------------------------------ */
|
|
/* Status dot inside the .task-status pill */
|
|
/* ------------------------------------------------------------------ */
|
|
.service-dot {
|
|
display: inline-block;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
margin-right: 6px;
|
|
vertical-align: middle;
|
|
background: var(--text-muted);
|
|
}
|
|
|
|
@keyframes service-pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.55; }
|
|
}
|
|
|
|
/* ------------------------------------------------------------------ */
|
|
/* Port + IP chips inside .task-info (alongside status / time) */
|
|
/* ------------------------------------------------------------------ */
|
|
.service-port {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 0.72rem;
|
|
background: rgba(var(--accent-rgb), 0.08);
|
|
border: 1px solid rgba(var(--accent-rgb), 0.25);
|
|
color: var(--text-secondary);
|
|
padding: 2px 7px;
|
|
border-radius: 4px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.service-port-arrow {
|
|
opacity: 0.5;
|
|
margin: 0 1px;
|
|
}
|
|
|
|
.service-port-proto {
|
|
margin-left: 4px;
|
|
font-size: 0.65rem;
|
|
opacity: 0.6;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.service-ip {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
background: rgba(var(--text-rgb), 0.05);
|
|
border: 1px solid rgba(var(--text-rgb), 0.08);
|
|
border-radius: 4px;
|
|
padding: 1px 6px;
|
|
font-size: 0.72rem;
|
|
color: var(--text-secondary, var(--text-muted));
|
|
}
|
|
|
|
/* The Open button — flagged with .open on top of .task-btn so the
|
|
shared task-row hover styles still apply but a slightly different
|
|
accent makes it distinguishable from Restart. */
|
|
.task-btn.open {
|
|
color: var(--text-secondary);
|
|
}
|
|
.task-btn.open:hover {
|
|
background: rgba(var(--accent-rgb), 0.15);
|
|
}
|
|
|
|
.service-app-icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ------------------------------------------------------------------ */
|
|
/* Streaming state hint on the log container */
|
|
/* ------------------------------------------------------------------ */
|
|
.service-log-output[data-stream="connecting"]::before {
|
|
content: 'Connecting…';
|
|
color: var(--status-warning);
|
|
display: block;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.service-log-output[data-stream="disconnected"]::before {
|
|
content: '⚠ disconnected — retrying…';
|
|
color: var(--status-warning);
|
|
display: block;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.service-log-output[data-stream="closed"]::after {
|
|
content: '— stream closed —';
|
|
color: var(--text-muted);
|
|
display: block;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
/* Spinner-on-restart while the request is in flight, mirroring the
|
|
subtle “task is doing something” visual cue used by the task list. */
|
|
.task-btn.is-running {
|
|
opacity: 0.6;
|
|
cursor: wait;
|
|
}
|
|
|
|
/* ============================================================
|
|
Live container chips (CPU%, memory) — rendered inline in the
|
|
service row header alongside the existing port/IP chips.
|
|
Updated in place by the periodic stats refresh.
|
|
============================================================ */
|
|
.service-live-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 9px;
|
|
font-size: 0.74rem;
|
|
font-weight: 600;
|
|
font-variant-numeric: tabular-nums;
|
|
color: rgba(var(--text-rgb), 0.85);
|
|
background: rgba(var(--accent-rgb), 0.12);
|
|
border: 1px solid rgba(var(--accent-rgb), 0.25);
|
|
border-radius: 999px;
|
|
transition: color .2s ease, background .2s ease, border-color .2s ease;
|
|
}
|
|
.service-live-chip.warn {
|
|
color: var(--status-warning);
|
|
background: rgba(var(--status-warning-rgb), 0.14);
|
|
border-color: rgba(var(--status-warning-rgb), 0.4);
|
|
}
|
|
.service-live-chip.danger {
|
|
color: var(--status-danger);
|
|
background: rgba(var(--status-danger-rgb), 0.16);
|
|
border-color: rgba(var(--status-danger-rgb), 0.5);
|
|
}
|
|
|
|
/* ============================================================
|
|
Rich container detail panel — limits, image, healthcheck,
|
|
networks, mounts. Rendered inside .task-details above the
|
|
log container so it's discoverable from the existing "Logs"
|
|
expand action. Gated behind the global Advanced UI mode so
|
|
a Beginner doesn't see a wall of technical detail.
|
|
============================================================ */
|
|
.service-rich {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
margin: 8px 0 14px;
|
|
}
|
|
body:not(.lp-ui--advanced) .service-rich { display: none; }
|
|
|
|
/* ============================================================
|
|
Beginner / Advanced toggle in the Services tab title row.
|
|
Project-wide visual; same component will be reused wherever
|
|
else surfaces grow an Advanced-only section.
|
|
============================================================ */
|
|
.services-title {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
}
|
|
.services-title-main { flex: 1; min-width: 0; }
|
|
|
|
.lp-ui-advanced-toggle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
flex-shrink: 0;
|
|
}
|
|
.lp-ui-advanced-toggle input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
.lp-ui-advanced-toggle-track {
|
|
position: relative;
|
|
width: 34px;
|
|
height: 18px;
|
|
background: rgba(var(--text-rgb), 0.18);
|
|
border-radius: 999px;
|
|
transition: background .15s ease;
|
|
flex-shrink: 0;
|
|
}
|
|
.lp-ui-advanced-toggle-thumb {
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
width: 14px;
|
|
height: 14px;
|
|
background: var(--text-primary);
|
|
border-radius: 50%;
|
|
transition: transform .15s ease, background .15s ease;
|
|
}
|
|
.lp-ui-advanced-toggle input:checked + .lp-ui-advanced-toggle-track {
|
|
background: var(--accent);
|
|
}
|
|
.lp-ui-advanced-toggle input:checked + .lp-ui-advanced-toggle-track .lp-ui-advanced-toggle-thumb {
|
|
transform: translateX(16px);
|
|
background: var(--text-on-accent, #0a1426);
|
|
}
|
|
.lp-ui-advanced-toggle-label {
|
|
font-size: 0.78rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.02em;
|
|
color: rgba(var(--text-rgb), 0.7);
|
|
transition: color .15s ease;
|
|
}
|
|
.lp-ui-advanced-toggle:hover .lp-ui-advanced-toggle-label { color: var(--text-primary); }
|
|
.lp-ui-advanced-toggle input:focus-visible + .lp-ui-advanced-toggle-track {
|
|
outline: 2px solid rgba(var(--accent-rgb), 0.6);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.service-rich-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
gap: 10px;
|
|
}
|
|
.service-rich-cell {
|
|
padding: 10px 12px;
|
|
background: rgba(var(--text-rgb), 0.04);
|
|
border: 1px solid rgba(var(--text-rgb), 0.08);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
min-width: 0;
|
|
}
|
|
.service-rich-cell span {
|
|
font-size: 0.66rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: rgba(var(--text-rgb), 0.45);
|
|
font-weight: 700;
|
|
}
|
|
.service-rich-cell strong {
|
|
font-size: 0.88rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
word-break: break-word;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.service-rich-section h4 {
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
margin: 0 0 6px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: rgba(var(--text-rgb), 0.7);
|
|
}
|
|
|
|
.service-rich-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 0.8rem;
|
|
background: rgba(var(--text-rgb), 0.03);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.service-rich-table th {
|
|
text-align: left;
|
|
font-size: 0.66rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: rgba(var(--text-rgb), 0.45);
|
|
padding: 8px 10px;
|
|
border-bottom: 1px solid rgba(var(--text-rgb), 0.08);
|
|
}
|
|
.service-rich-table td {
|
|
padding: 7px 10px;
|
|
border-bottom: 1px solid rgba(var(--text-rgb), 0.04);
|
|
color: rgba(var(--text-rgb), 0.85);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.service-rich-table tr:last-child td { border-bottom: none; }
|
|
|
|
.service-mount-type {
|
|
display: inline-block;
|
|
padding: 1px 7px;
|
|
border-radius: 4px;
|
|
font-size: 0.65rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.service-mount-volume { background: rgba(var(--status-success-rgb), 0.2); color: var(--status-success); }
|
|
.service-mount-bind { background: rgba(var(--accent-rgb), 0.18); color: var(--accent); }
|
|
.service-mount-tmpfs { background: rgba(var(--status-warning-rgb), 0.18); color: var(--status-warning); }
|
|
.service-mount-path {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 0.76rem;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.service-health {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 6px;
|
|
}
|
|
.service-health-pill {
|
|
padding: 2px 10px;
|
|
border-radius: 999px;
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.service-health-healthy { background: rgba(var(--status-success-rgb), 0.18); color: var(--status-success); }
|
|
.service-health-starting { background: rgba(var(--status-warning-rgb), 0.18); color: var(--status-warning); }
|
|
.service-health-unhealthy { background: rgba(var(--status-danger-rgb), 0.18); color: var(--status-danger); }
|
|
.service-health-unknown { background: rgba(var(--text-rgb), 0.10); color: rgba(var(--text-rgb), 0.6); }
|
|
.service-health-fail { color: var(--status-danger); font-size: 0.76rem; font-weight: 600; }
|
|
.service-health-log {
|
|
background: rgba(var(--text-rgb), 0.03);
|
|
border-radius: 6px;
|
|
margin-top: 4px;
|
|
padding: 4px 8px;
|
|
font-size: 0.76rem;
|
|
}
|
|
.service-health-log summary { cursor: pointer; color: rgba(var(--text-rgb), 0.65); }
|
|
.service-health-log pre {
|
|
margin: 6px 0 0;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
font-size: 0.76rem;
|
|
white-space: pre-wrap;
|
|
color: rgba(var(--text-rgb), 0.7);
|
|
}
|