diff options
| author | Ken D'Ambrosio <ken@jots.org> | 2026-05-09 08:55:56 +0000 |
|---|---|---|
| committer | Ken D'Ambrosio <ken@jots.org> | 2026-05-09 08:55:56 +0000 |
| commit | 4bd3bb59a96df620f7b06f452ec2287dbcfe5780 (patch) | |
| tree | a3eb3c376af845d82450e07f3e9836a7231cd2fe /public/css | |
| parent | c75beda743dfd6af63f512e928d0889d9ead3973 (diff) | |
Fix video/audio players showing on image lightbox
#lb-video and #lb-audio had explicit display:block via ID selectors, which
outweighed the .hidden class selector and kept the players visible for photos.
Added !important to .hidden so the utility class always wins.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/style.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css index 1f31e42..61462a4 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -151,6 +151,7 @@ main { max-width: 1400px; margin: 0 auto; padding: 24px; } .card-meta { padding: 6px 8px; } .card-caption { font-size: .8rem; color: var(--text-dim); } +.hidden { display: none !important; } .hidden-item { opacity: .45; outline: 1px dashed var(--border); } .empty-album { color: var(--text-dim); text-align: center; padding: 60px 0; } |
