a7e2335c20
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.
15 lines
462 B
CSS
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);
|
|
}
|