Files
deepdrft/DeepDrftManager/Components/Pages/Tracks/CmsSessionBrowser.razor.css
T
daniel-c-harvey 3ef98aa3ff feat(cms): bring per-medium tab grids to ALL-tab parity (§8.C)
Render the rich CmsAlbumBrowser filtered per medium in the CUTS/SESSIONS/MIXES
tabs via an optional RowActions slot; retire the thin CmsMediumTable. Session
hero and Mix waveform actions preserved; ALL tab and TrackList unchanged.
2026-06-13 22:33:31 -04:00

17 lines
655 B
CSS

/* Hero-thumbnail idiom for the session row's action cell. The hero <div> is authored in this
component's RowActions fragment, so Blazor stamps it with this component's scope attribute even
though CmsAlbumBrowser renders it — this scoped copy reaches it (CSS isolation follows authoring
component, not rendering host). The grid's own cover thumb lives in CmsAlbumBrowser's scoped CSS. */
.cms-album-thumb {
width: 40px;
height: 40px;
border-radius: 4px;
background-size: cover;
background-position: center;
flex-shrink: 0;
}
.cms-album-thumb--fallback {
background-color: var(--mud-palette-action-default-hover);
}