mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 14:50:00 -07:00
feat: add military/civilian classification filter to ADS-B history
Add client-side and server-side military aircraft detection using ICAO hex ranges and callsign prefixes (matching live dashboard logic). History table shows MIL/CIV badges with filtering dropdown, and exports respect the classification filter. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -414,6 +414,37 @@ body {
|
||||
background: rgba(74, 158, 255, 0.1);
|
||||
}
|
||||
|
||||
.aircraft-row.military {
|
||||
background: rgba(85, 107, 47, 0.12);
|
||||
}
|
||||
|
||||
.aircraft-row.military:hover {
|
||||
background: rgba(85, 107, 47, 0.22);
|
||||
}
|
||||
|
||||
.mil-badge,
|
||||
.civ-badge {
|
||||
display: inline-block;
|
||||
font-size: 9px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.8px;
|
||||
padding: 2px 6px;
|
||||
border-radius: 3px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.mil-badge {
|
||||
background: rgba(85, 107, 47, 0.35);
|
||||
color: #a3b86c;
|
||||
border: 1px solid rgba(85, 107, 47, 0.6);
|
||||
}
|
||||
|
||||
.civ-badge {
|
||||
background: rgba(74, 158, 255, 0.15);
|
||||
color: var(--text-dim);
|
||||
border: 1px solid rgba(74, 158, 255, 0.25);
|
||||
}
|
||||
|
||||
.mono {
|
||||
font-family: var(--font-mono);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user