mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +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.
43 lines
940 B
CSS
43 lines
940 B
CSS
/* ─── Sidebar offline download queue ─── */
|
|
.sidebar-offline-queue {
|
|
margin: 4px var(--space-1) 0;
|
|
padding: 6px 10px;
|
|
border-radius: var(--radius-md);
|
|
background: var(--accent-dim);
|
|
border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
font-size: 11px;
|
|
color: var(--accent);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar-offline-queue--collapsed {
|
|
justify-content: center;
|
|
padding: 6px;
|
|
}
|
|
|
|
.sidebar-offline-cancel {
|
|
margin-left: auto;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--accent);
|
|
cursor: pointer;
|
|
opacity: 0.6;
|
|
padding: 0;
|
|
transition: opacity 0.15s, background 0.15s;
|
|
}
|
|
.sidebar-offline-cancel:hover {
|
|
opacity: 1;
|
|
background: color-mix(in srgb, var(--accent) 20%, transparent);
|
|
}
|
|
|