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:
@@ -1405,10 +1405,12 @@ nav {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: var(--font-mono);
|
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;
|
border-radius: 0 0 3px 3px;
|
||||||
padding: 6px 2px 2px;
|
padding: 6px 2px 2px;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===== GRID TYPE PILL ===== */
|
/* ===== GRID TYPE PILL ===== */
|
||||||
@@ -1443,6 +1445,10 @@ nav {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid-cell:hover .grid-cell-label {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.cell-inventory-overlay {
|
.cell-inventory-overlay {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
background: var(--surface);
|
background: var(--surface);
|
||||||
|
|||||||
Reference in New Issue
Block a user