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.
16 lines
518 B
CSS
16 lines
518 B
CSS
/* Hero-thumbnail idiom for the session row's action cell. The cover thumb lives in CmsMediumTable's
|
|
own scoped CSS; this scoped copy reaches only the hero <div> rendered in this component's
|
|
ActionContent markup (Blazor CSS isolation is per-component). */
|
|
.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);
|
|
}
|