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.
17 lines
410 B
CSS
17 lines
410 B
CSS
/* ─── Sidebar device-sync queue ─── */
|
|
.sidebar-sync-queue {
|
|
background: color-mix(in srgb, var(--success, #4ade80) 10%, var(--bg-sidebar));
|
|
border-color: color-mix(in srgb, var(--success, #4ade80) 25%, transparent);
|
|
color: var(--success, #4ade80);
|
|
}
|
|
|
|
@keyframes spin-slow {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.spin-slow {
|
|
animation: spin-slow 2s linear infinite;
|
|
flex-shrink: 0;
|
|
}
|
|
|