加入二维码设置

This commit is contained in:
ywb
2026-05-20 20:02:31 +08:00
parent f05d6ea059
commit 084faad1b2
5 changed files with 738 additions and 325 deletions
+39
View File
@@ -735,3 +735,42 @@ a:hover { text-decoration: underline; }
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.3); opacity: 0.7; }
}
/* 二维码位置点 */
.qr-dot {
width: 12px !important;
height: 12px !important;
background: #ff9800 !important;
border: 2px solid #fff !important;
border-radius: 3px !important;
box-shadow: 0 0 8px #ff9800, 0 0 14px #ff980088 !important;
animation: qr-pulse 2s ease-in-out infinite !important;
z-index: 10 !important;
}
@keyframes qr-pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.2); opacity: 0.6; }
}
/* 机器行:有机/无机器 切换 */
.machine-toggle {
display: flex;
align-items: center;
gap: 6px;
cursor: pointer;
user-select: none;
}
.machine-toggle input[type="checkbox"] {
accent-color: #4caf50;
width: 16px;
height: 16px;
cursor: pointer;
}
.machine-status.on {
color: #4caf50;
font-size: 12px;
}
.machine-status.off {
color: #666;
font-size: 12px;
}