3ef98aa3ff
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.
17 lines
655 B
CSS
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);
|
|
}
|