This commit is contained in:
shocknet-justin 2025-10-09 20:57:55 -04:00
parent a01e144987
commit ca72dae919
2 changed files with 11 additions and 0 deletions

View file

@ -28,7 +28,14 @@
/* prevent overlap: hide connect string until revealed; click surface on box */
.qrcode-box #connectString { display: none; margin-top: 6px; }
.qrcode-box.revealed #connectString { display: block; }
.qrcode-box.revealed #connectString {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.qrcode-box { cursor: pointer; }
.qrcode-box.revealed { cursor: default; }
/* QR viewport and veil overlay */
.qrcode-viewport {