mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
18bf3adb1f
layout.css (3209 LOC) → 29 per-section files in src/styles/layout/ + an index.css that imports them in original cascade order. Same mechanic as theme.css + components.css splits: top-level sections detected by single-dash or 3+ dash header decoration. Concatenating in @import order reproduces the original byte stream (+1 trailing newline, cosmetic). Generated via /tmp/split-layout-css.mjs.
35 lines
775 B
CSS
35 lines
775 B
CSS
/* ─── Offline Storage Full Banner ─── */
|
|
.offline-storage-full-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 10px 16px;
|
|
margin: 0 0 1rem 0;
|
|
background: color-mix(in srgb, var(--color-danger, #e53935) 12%, var(--bg-card));
|
|
border: 1px solid color-mix(in srgb, var(--color-danger, #e53935) 40%, transparent);
|
|
border-radius: var(--radius-md);
|
|
font-size: 13px;
|
|
color: var(--text-primary);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.offline-storage-full-banner span {
|
|
flex: 1;
|
|
}
|
|
|
|
.offline-storage-full-dismiss {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
padding: 0 2px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.offline-storage-full-dismiss:hover {
|
|
color: var(--text-primary);
|
|
}
|
|
|