fix: QR overlay on map — transparent background, 10% opacity white modules

Map shows through the QR code. Dark modules stay solid, white modules
at 10% opacity. No border/shadow/padding on the overlay container.
This commit is contained in:
you
2026-03-23 16:28:24 +00:00
parent aab3e57e9f
commit bb387c3958
+4 -1
View File
@@ -1117,8 +1117,11 @@ button.ch-item.ch-item-encrypted .ch-badge { filter: grayscale(0.6); }
[data-theme="dark"] .node-qr svg rect[fill="#ffffff"] { fill: var(--card-bg); }
[data-theme="dark"] .node-qr svg rect[fill="#000000"] { fill: var(--text); }
.node-map-qr-wrap { position: relative; }
.node-map-qr-overlay { position: absolute; bottom: 8px; right: 8px; z-index: 400; background: var(--card-bg); border: 1px solid var(--border); border-radius: 6px; padding: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.node-map-qr-overlay { position: absolute; bottom: 8px; right: 8px; z-index: 400; background: none; border: none; padding: 0; }
.node-map-qr-overlay svg { max-width: 64px; display: block; }
.node-map-qr-overlay svg rect[fill="#ffffff"] { fill-opacity: 0.1; }
[data-theme="dark"] .node-map-qr-overlay svg rect[fill="#ffffff"] { fill-opacity: 0.1; }
[data-theme="dark"] .node-map-qr-overlay svg rect[fill="#000000"] { fill: var(--text); }
/* Replay on Live Map button in packet detail */
.detail-actions {