Hide grid cell labels until hover to prevent competing with image size

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-21 01:19:34 +00:00
parent ee080b8f15
commit 2060c84198

View File

@@ -1405,10 +1405,12 @@ nav {
color: #fff;
text-align: center;
font-family: var(--font-mono);
background: linear-gradient(transparent, rgba(0,0,0,0.55));
background: linear-gradient(transparent, rgba(0,0,0,0.65));
border-radius: 0 0 3px 3px;
padding: 6px 2px 2px;
pointer-events: none;
opacity: 0;
transition: opacity 0.1s;
}
/* ===== GRID TYPE PILL ===== */
@@ -1443,6 +1445,10 @@ nav {
cursor: pointer;
}
.grid-cell:hover .grid-cell-label {
opacity: 1;
}
.cell-inventory-overlay {
position: fixed;
background: var(--surface);