Checkpoint
Some checks failed
Test and build / Test and lint (push) Failing after 36s
Test and build / Build collector (push) Failing after 43s
Test and build / Build receiver (push) Failing after 42s

This commit is contained in:
2026-03-05 15:38:18 +01:00
parent 3106b2cf45
commit 13afa08e8a
108 changed files with 19509 additions and 729 deletions

107
ui/src/pages/APRS.scss Normal file
View File

@@ -0,0 +1,107 @@
.aprs-view-switch {
.btn {
border-color: rgba(173, 205, 255, 0.45);
color: var(--app-text);
}
.btn.btn-primary {
background: rgba(90, 146, 255, 0.5);
border-color: rgba(173, 205, 255, 0.75);
}
.btn:hover,
.btn:focus {
color: #ffffff;
border-color: rgba(225, 237, 255, 0.8);
}
}
.aprs-table-card,
.aprs-detail-card {
background: rgba(8, 24, 56, 0.5);
border: 1px solid rgba(173, 205, 255, 0.2);
color: var(--app-text);
}
.aprs-table-header {
background: rgba(27, 56, 108, 0.45);
border-bottom: 1px solid rgba(173, 205, 255, 0.2);
color: var(--app-text);
font-weight: 600;
}
.aprs-table-body {
height: 100%;
min-height: 0;
}
.aprs-table-scroll {
height: 100%;
max-height: 100%;
overflow-y: auto;
}
.aprs-table {
color: var(--app-text);
thead th {
position: sticky;
top: 0;
z-index: 2;
background: rgba(13, 36, 82, 0.95);
border-color: rgba(173, 205, 255, 0.18);
color: var(--app-text);
}
td {
border-color: rgba(173, 205, 255, 0.12);
vertical-align: middle;
cursor: pointer;
}
tr.is-selected td {
background: rgba(102, 157, 255, 0.16);
}
tr:hover td {
background: rgba(102, 157, 255, 0.08);
}
}
.aprs-detail-stack {
overflow-y: auto;
padding-right: 0.25rem;
}
.aprs-fact-row {
display: grid;
grid-template-columns: 120px 1fr;
gap: 8px;
padding: 4px 0;
}
.aprs-fact-label {
color: var(--app-text-muted);
}
.aprs-fact-value {
color: var(--app-text);
word-break: break-all;
}
.aprs-raw-code {
display: block;
padding: 0.5rem;
background: rgba(0, 0, 0, 0.3);
border-radius: 0.25rem;
white-space: pre-wrap;
word-break: break-all;
color: #b8d1ff;
font-size: 0.85rem;
}
.aprs-map {
.leaflet-container {
background: rgba(13, 36, 82, 0.95);
}
}