Add BLE layer: firmware, coordinator support, dashboard tab

This commit is contained in:
bot
2026-04-27 14:21:02 +03:00
parent 2ebafc5584
commit 1ca2dc21f5
8 changed files with 807 additions and 13 deletions
+27
View File
@@ -607,6 +607,33 @@ td.disassoc-type { color: var(--orange); }
border-bottom: 1px solid var(--border);
}
/* ── BLE ── */
.ble-type-apple { color: #a8c8ff; }
.ble-type-samsung { color: #7eb3ff; }
.ble-type-other { color: var(--text-muted); }
.ble-addr-public { color: var(--green); font-size: 10px; }
.ble-addr-random { color: var(--text-muted); font-size: 10px; }
.ble-breakdown-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 4px;
}
.ble-breakdown-chip {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 4px;
padding: 4px 10px;
font-size: 11px;
color: var(--text-muted);
}
.ble-breakdown-chip strong {
color: var(--text);
font-size: 13px;
margin-right: 4px;
}
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }