This commit is contained in:
2026-09-06 09:39:25 +00:00
parent e57337a15c
commit fc0c45e04d
6 changed files with 34 additions and 1 deletions
+23
View File
@@ -1412,6 +1412,29 @@ input[type="file"]:focus {
fill: currentColor;
}
.lightbox-save-hint {
position: absolute;
z-index: 4;
left: 50%;
bottom: 1rem;
width: min(78vw, 34rem);
padding: 0.65rem 0.9rem;
border-radius: 999px;
background: rgba(20, 20, 20, 0.78);
color: #fff;
font-size: 0.85rem;
text-align: center;
opacity: 0;
pointer-events: none;
transform: translate(-50%, 0.5rem);
transition: opacity 220ms ease, transform 220ms ease;
}
.lightbox-save-hint.is-visible {
opacity: 1;
transform: translate(-50%, 0);
}
.lightbox-nav {
top: 50%;
transform: translateY(-50%);