Grid viewer: improve cell labels and add green inventory count badge

Labels now overlay image with gradient background and visible colour.
Green badge top-right shows number of inventory entries for that cell.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 01:22:05 +00:00
parent 8fa4a54f9e
commit e1c517c023
2 changed files with 36 additions and 1 deletions

View File

@@ -1483,10 +1483,33 @@ nav {
}
.grid-cell-label {
position: absolute;
bottom: 0;
left: 0;
right: 0;
font-size: 0.65rem;
color: var(--text-faint);
color: #ccc;
text-align: center;
font-family: var(--font-mono);
background: linear-gradient(transparent, rgba(0,0,0,0.7));
border-radius: 0 0 3px 3px;
padding: 6px 2px 2px;
pointer-events: none;
}
.grid-cell-count {
position: absolute;
top: 3px;
right: 3px;
background: #2e7d4f;
color: #fff;
font-size: 0.6rem;
font-weight: 700;
font-family: var(--font-mono);
padding: 1px 5px;
border-radius: 8px;
pointer-events: none;
line-height: 1.5;
}
/* ===== GRID TYPE PILL ===== */