Show grid cell image in component detail inventory entries

Grid-type inventory entries now display the warped cell image from the
grid as a read-only thumbnail (highlighted with accent border) alongside
any user-uploaded images for that entry.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-21 00:20:41 +00:00
parent b66b2f95d3
commit 99299ed9f2
2 changed files with 32 additions and 0 deletions

View File

@@ -370,6 +370,21 @@ nav {
gap: 0.4rem;
}
.cell-thumb-link {
display: block;
border: 2px solid var(--accent, #5b9cf6);
border-radius: 3px;
overflow: hidden;
flex-shrink: 0;
}
.cell-thumb-link .thumb-img {
display: block;
width: 64px;
height: 64px;
object-fit: cover;
}
/* ===== SECTION TOOLBAR ===== */
.section-toolbar {