diff --git a/cmd/repeater/static/app.js b/cmd/repeater/static/app.js index 3d0d7e0..75240c1 100644 --- a/cmd/repeater/static/app.js +++ b/cmd/repeater/static/app.js @@ -286,14 +286,11 @@ function updateStatusDisplay(status) { // Update Ethernet uplink badge const ethernetStatus = document.getElementById('ethernetStatus'); - const ethernetDot = ethernetStatus.querySelector('.status-dot'); const ethernetText = ethernetStatus.querySelector('.status-text'); if (status.ethernetStatus?.active) { - ethernetDot.className = 'status-dot active'; ethernetText.textContent = `Ethernet · ${status.ethernetStatus.ipv4 || status.ethernetStatus.interface}`; ethernetStatus.hidden = false; } else { - ethernetDot.className = 'status-dot offline'; ethernetStatus.hidden = true; } diff --git a/cmd/repeater/static/index.html b/cmd/repeater/static/index.html index dd89abb..b0f96b8 100644 --- a/cmd/repeater/static/index.html +++ b/cmd/repeater/static/index.html @@ -22,16 +22,16 @@
- - Chargement… + + Disconnected
- - Chargement… + + Hotspot actif
diff --git a/cmd/repeater/static/style.css b/cmd/repeater/static/style.css index 5967985..dbad213 100644 --- a/cmd/repeater/static/style.css +++ b/cmd/repeater/static/style.css @@ -131,11 +131,6 @@ body { animation: blink 1.2s ease-in-out infinite; } -.status-dot.loading { - background: var(--text-tertiary); - animation: pulse 1.5s ease-in-out infinite; -} - @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; }