Update TechDJ: fix viewer controls, boost listener volume, improve deck sync

This commit is contained in:
3nd3r
2026-01-04 08:14:52 -06:00
parent e4f27c012d
commit 4a1844ae1b
4 changed files with 860 additions and 87 deletions

View File

@@ -2177,6 +2177,66 @@ input[type=range] {
text-shadow: 0 0 10px var(--secondary-magenta);
}
/* DJ Controller Lock UI */
.dj-control-section {
padding: 15px;
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 243, 255, 0.25);
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 10px;
}
.dj-control-status {
font-family: 'Orbitron', sans-serif;
font-size: 0.9rem;
color: var(--primary-cyan);
}
.dj-control-btn {
padding: 12px;
background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
border: 2px solid var(--primary-cyan);
color: var(--primary-cyan);
font-family: 'Orbitron', sans-serif;
font-size: 0.9rem;
font-weight: bold;
cursor: pointer;
border-radius: 8px;
transition: all 0.3s;
box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}
.dj-control-btn:hover {
background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
box-shadow: 0 0 25px rgba(0, 243, 255, 0.35);
transform: translateY(-1px);
}
.dj-control-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
box-shadow: none;
transform: none;
}
.dj-control-hint {
font-family: 'Rajdhani', sans-serif;
font-size: 0.8rem;
color: var(--text-dim);
opacity: 0.8;
}
/* Viewer mode: dim + prevent accidental interactions */
body.viewer-mode .deck,
body.viewer-mode .mixer-section,
body.viewer-mode .library-section,
body.viewer-mode #settings-panel {
opacity: 0.6;
pointer-events: none;
}
/* Listener Info */
.listener-info {
background: rgba(0, 0, 0, 0.3);