Files
deepdrft/DeepDrftManager/Components/Pages/Tracks/CmsMediumTable.razor.css
T
daniel-c-harvey a7e2335c20 Add Edit action to medium browsers; extract CmsMediumBrowserBase + CmsMediumTable
Session/Mix browsers share base (load/state/thumb) and a shared table shell carrying the per-row Edit link to BatchEdit; subclasses supply only their medium action.
2026-06-13 11:08:43 -04:00

15 lines
462 B
CSS

/* Cover-thumbnail idiom shared by the medium browsers' tables. Blazor CSS isolation is per-component,
so this scoped copy of the album-browser thumb classes reaches only this component's own markup. */
.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);
}