ui: hide device/resolution/codec chip groups at ≤1024px

Wraps each group (separator + chips) in a display:contents span so it
flows naturally at full width and collapses cleanly at the 1024px breakpoint,
leaving server badges and media type visible at intermediate sizes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Gmer4Lfe
2026-05-31 22:06:21 -04:00
co-authored by Claude Sonnet 4.6
parent 52cc6b4721
commit 279e6be282
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -215,6 +215,8 @@
#vv-parity-card { grid-column: auto !important; }
#vv-storage-card { grid-column: auto !important; }
#vv-array-card { grid-column: auto !important; }
/* Streams header: hide device/resolution/codec groups, keep server badges + media type */
.vv-chip-group-device, .vv-chip-group-res, .vv-chip-group-codec { display: none; }
}
/* Containers+VMs: single column when viewport is narrow */
@@ -769,6 +771,8 @@ mark { background: #5d4037; color: #ffcc80; border-radius: 2px; }
.vv-chip-codec { color: #b38820; background: #201500; border-color: #483300; }
/* legacy fallback */
.vv-device-chip { color: #666; background: #181818; border-color: #252525; }
/* chip group wrappers — inline so they flow with the badge row */
.vv-chip-group-device, .vv-chip-group-res, .vv-chip-group-codec { display: contents; }
.vv-stream-empty { color: #555; font-style: italic; font-size: 12px; margin: 4px 0; }
.vv-stream-empty span { font-size: 11px; color: #444; }
.vv-stream-row { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #282828; }