mirror of
https://github.com/smittix/intercept.git
synced 2026-04-25 07:10:00 -07:00
Add WiFi Locate mode for locating access points by BSSID with real-time signal meter, distance estimation, RSSI history chart, and audio proximity tones. Includes hand-off from WiFi detail drawer, environment presets (Free Space/Outdoor/Indoor), and signal-lost detection. Also includes: - Mobile navigation reorganized into labeled groups (SIG/TRK/SPC/WIFI/INTEL/SYS) - flask-limiter made optional with graceful degradation - Fix radiosonde setup missing semver Python dependency - Documentation updates (FEATURES, USAGE, UI_GUIDE, GitHub Pages site) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
767 lines
17 KiB
CSS
767 lines
17 KiB
CSS
/* ============================================
|
|
RESPONSIVE UTILITIES - iNTERCEPT
|
|
Shared responsive foundation for all pages
|
|
============================================ */
|
|
|
|
/* ============== CSS VARIABLES ============== */
|
|
:root {
|
|
/* Touch targets */
|
|
--touch-min: 44px;
|
|
--touch-comfortable: 48px;
|
|
|
|
/* Responsive spacing */
|
|
--spacing-xs: clamp(4px, 1vw, 8px);
|
|
--spacing-sm: clamp(8px, 2vw, 12px);
|
|
--spacing-md: clamp(12px, 3vw, 20px);
|
|
--spacing-lg: clamp(16px, 4vw, 32px);
|
|
|
|
/* Responsive typography */
|
|
--font-xs: clamp(10px, 2.5vw, 11px);
|
|
--font-sm: clamp(11px, 2.8vw, 12px);
|
|
--font-base: clamp(13px, 3vw, 14px);
|
|
--font-md: clamp(14px, 3.5vw, 16px);
|
|
--font-lg: clamp(16px, 4vw, 20px);
|
|
--font-xl: clamp(20px, 5vw, 28px);
|
|
--font-2xl: clamp(24px, 6vw, 40px);
|
|
|
|
/* Header height for calculations */
|
|
--header-height: 52px;
|
|
--nav-height: 44px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
:root {
|
|
--header-height: 60px;
|
|
--nav-height: 48px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
:root {
|
|
--header-height: 96px;
|
|
--nav-height: 0px;
|
|
}
|
|
}
|
|
|
|
/* ============== VIEWPORT HEIGHT FIX ============== */
|
|
/* Handles iOS Safari address bar and dynamic viewport */
|
|
.full-height {
|
|
height: 100dvh;
|
|
height: 100vh; /* Fallback */
|
|
}
|
|
|
|
@supports (-webkit-touch-callout: none) {
|
|
.full-height {
|
|
height: -webkit-fill-available;
|
|
}
|
|
}
|
|
|
|
/* ============== HAMBURGER BUTTON ============== */
|
|
.hamburger-btn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: var(--touch-min);
|
|
height: var(--touch-min);
|
|
padding: 10px;
|
|
background: transparent;
|
|
border: 1px solid var(--border-color, #1f2937);
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
z-index: 1001;
|
|
flex-shrink: 0;
|
|
transition: background 0.2s ease, border-color 0.2s ease;
|
|
}
|
|
|
|
.hamburger-btn:hover {
|
|
background: var(--bg-tertiary, #151a23);
|
|
border-color: var(--accent-cyan, #4a9eff);
|
|
}
|
|
|
|
.hamburger-btn span {
|
|
display: block;
|
|
width: 18px;
|
|
height: 2px;
|
|
background: var(--accent-cyan, #4a9eff);
|
|
margin: 2px 0;
|
|
border-radius: 1px;
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
|
|
.hamburger-btn.active span:nth-child(1) {
|
|
transform: rotate(45deg) translate(4px, 4px);
|
|
}
|
|
|
|
.hamburger-btn.active span:nth-child(2) {
|
|
opacity: 0;
|
|
}
|
|
|
|
.hamburger-btn.active span:nth-child(3) {
|
|
transform: rotate(-45deg) translate(4px, -4px);
|
|
}
|
|
|
|
/* Hide hamburger on desktop */
|
|
@media (min-width: 1024px) {
|
|
.hamburger-btn {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* ============== MOBILE DRAWER ============== */
|
|
.mobile-drawer {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: min(360px, 100vw);
|
|
height: 100dvh;
|
|
height: 100vh; /* Fallback */
|
|
background: var(--bg-secondary, #0f1218);
|
|
border-right: 1px solid var(--border-color, #1f2937);
|
|
transform: translateX(-100%);
|
|
transition: transform 0.3s ease;
|
|
z-index: 1000;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.mobile-drawer.open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
/* Show sidebar normally on desktop */
|
|
@media (min-width: 1024px) {
|
|
.mobile-drawer {
|
|
position: static;
|
|
transform: none;
|
|
width: auto;
|
|
height: auto;
|
|
padding-top: 0;
|
|
z-index: auto;
|
|
}
|
|
}
|
|
|
|
/* ============== DRAWER OVERLAY ============== */
|
|
.drawer-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(2px);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
z-index: 999;
|
|
}
|
|
|
|
.drawer-overlay.visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
/* Hide overlay on desktop */
|
|
@media (min-width: 1024px) {
|
|
.drawer-overlay {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* ============== TOUCH TARGETS ============== */
|
|
@media (max-width: 1023px) {
|
|
/* Ensure minimum touch target size for interactive elements */
|
|
button,
|
|
.btn,
|
|
.preset-btn,
|
|
.mode-nav-btn,
|
|
.control-btn,
|
|
.nav-action-btn,
|
|
.icon-btn {
|
|
min-height: var(--touch-min);
|
|
min-width: var(--touch-min);
|
|
}
|
|
|
|
select,
|
|
input[type="text"],
|
|
input[type="number"],
|
|
input[type="search"] {
|
|
min-height: var(--touch-min);
|
|
padding: 10px 12px;
|
|
font-size: 16px; /* Prevents iOS zoom on focus */
|
|
}
|
|
|
|
.checkbox-group label,
|
|
.radio-group label {
|
|
min-height: var(--touch-min);
|
|
padding: 10px 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
/* ============== RESPONSIVE UTILITIES ============== */
|
|
/* Hide on mobile */
|
|
.hide-mobile {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.hide-mobile {
|
|
display: initial;
|
|
}
|
|
}
|
|
|
|
/* Hide on tablet and up */
|
|
.show-mobile-only {
|
|
display: initial;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.show-mobile-only {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* Hide on desktop */
|
|
.hide-desktop {
|
|
display: initial;
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.hide-desktop {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* Show only on desktop */
|
|
.show-desktop-only {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.show-desktop-only {
|
|
display: initial;
|
|
}
|
|
}
|
|
|
|
/* ============== SCROLLABLE AREAS ============== */
|
|
.scroll-x {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
.scroll-x::-webkit-scrollbar {
|
|
height: 4px;
|
|
}
|
|
|
|
.scroll-x::-webkit-scrollbar-thumb {
|
|
background: var(--border-color, #1f2937);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Hide scrollbar on mobile for cleaner look */
|
|
@media (max-width: 767px) {
|
|
.scroll-x-mobile-hidden {
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.scroll-x-mobile-hidden::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* ============== MOBILE NAVIGATION BAR ============== */
|
|
.mobile-nav-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 6px 10px;
|
|
background: var(--bg-tertiary, #151a23);
|
|
border-bottom: 1px solid var(--border-color, #1f2937);
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.mobile-nav-bar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-nav-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
padding: 8px 12px;
|
|
background: var(--bg-card, #121620);
|
|
border: 1px solid var(--border-color, #1f2937);
|
|
border-radius: 6px;
|
|
color: var(--text-secondary, #9ca3af);
|
|
font-size: var(--font-xs);
|
|
font-family: inherit;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
min-height: 36px;
|
|
}
|
|
|
|
.mobile-nav-btn:hover,
|
|
.mobile-nav-btn.active {
|
|
background: var(--bg-elevated, #1a202c);
|
|
border-color: var(--accent-cyan, #4a9eff);
|
|
color: var(--text-primary, #e8eaed);
|
|
}
|
|
|
|
.mobile-nav-btn svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ============== MOBILE NAV GROUPS ============== */
|
|
.mobile-nav-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mobile-nav-group-label {
|
|
font-size: 9px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--text-tertiary, #6b7280);
|
|
padding: 4px 6px 4px 8px;
|
|
white-space: nowrap;
|
|
border-left: 2px solid var(--border-color, #1f2937);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.mobile-nav-group:first-child .mobile-nav-group-label {
|
|
border-left: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
/* ============== MOBILE NAV UTILITIES ============== */
|
|
.mobile-nav-utils {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
padding-left: 8px;
|
|
border-left: 2px solid var(--accent-cyan, #4a9eff);
|
|
}
|
|
|
|
/* Hide mobile nav utilities on desktop (desktop has .nav-utilities) */
|
|
@media (min-width: 1024px) {
|
|
.mobile-nav-utils {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* ============== TABLET: WRAP MOBILE NAV ============== */
|
|
@media (min-width: 768px) and (max-width: 1023px) {
|
|
.mobile-nav-bar {
|
|
flex-wrap: wrap;
|
|
overflow-x: visible;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
/* Hide mobile nav bar on desktop */
|
|
@media (min-width: 1024px) {
|
|
.mobile-nav-bar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* ============== RESPONSIVE GRID UTILITIES ============== */
|
|
.grid-responsive {
|
|
display: grid;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
/* 1 column base */
|
|
.grid-1-2 {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
@media (min-width: 480px) {
|
|
.grid-1-2 {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
.grid-2-3 {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.grid-2-3 {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|
|
|
|
/* ============== TYPOGRAPHY RESPONSIVE ============== */
|
|
.text-responsive-xs { font-size: var(--font-xs); }
|
|
.text-responsive-sm { font-size: var(--font-sm); }
|
|
.text-responsive-base { font-size: var(--font-base); }
|
|
.text-responsive-md { font-size: var(--font-md); }
|
|
.text-responsive-lg { font-size: var(--font-lg); }
|
|
.text-responsive-xl { font-size: var(--font-xl); }
|
|
.text-responsive-2xl { font-size: var(--font-2xl); }
|
|
|
|
/* Ensure minimum readable sizes for tiny text */
|
|
.text-min-readable {
|
|
font-size: max(10px, var(--font-xs));
|
|
}
|
|
|
|
/* ============== MOBILE LAYOUT FIXES ============== */
|
|
@media (max-width: 1023px) {
|
|
/* Fix main content to allow scrolling on mobile */
|
|
.main-content {
|
|
height: auto !important;
|
|
min-height: calc(100dvh - var(--header-height) - var(--nav-height));
|
|
overflow-y: auto !important;
|
|
overflow-x: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.sidebar {
|
|
padding: 10px;
|
|
gap: 10px;
|
|
}
|
|
|
|
.output-panel {
|
|
min-height: 58vh;
|
|
}
|
|
|
|
.output-header {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.header-controls {
|
|
width: 100%;
|
|
gap: 8px;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.header-controls .stats {
|
|
min-width: max-content;
|
|
}
|
|
|
|
/* Container should not clip content */
|
|
.container {
|
|
overflow: visible;
|
|
height: auto;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
/* Layout containers need to stack vertically on mobile */
|
|
.wifi-layout-container,
|
|
.bt-layout-container {
|
|
flex-direction: column !important;
|
|
height: auto !important;
|
|
max-height: none !important;
|
|
min-height: auto !important;
|
|
overflow: visible !important;
|
|
padding: 10px !important;
|
|
}
|
|
|
|
/* Visual panels should be scrollable, not clipped */
|
|
.wifi-visuals,
|
|
.bt-visuals-column {
|
|
max-height: none !important;
|
|
overflow: visible !important;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
/* Device lists should have reasonable height on mobile */
|
|
.wifi-device-list,
|
|
.bt-device-list {
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* Visual panels should stack in single column on mobile when visible */
|
|
.wifi-visuals,
|
|
.bt-visuals-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
/* Only apply flex when aircraft visuals are shown (via JS setting display: grid) */
|
|
#aircraftVisuals[style*="grid"] {
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
gap: 10px;
|
|
}
|
|
|
|
/* APRS visuals - only when visible */
|
|
#aprsVisuals[style*="flex"] {
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
.wifi-visual-panel {
|
|
grid-column: auto !important;
|
|
}
|
|
|
|
.bt-main-area {
|
|
flex-direction: column !important;
|
|
min-height: auto !important;
|
|
}
|
|
|
|
.bt-side-panels {
|
|
width: 100% !important;
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
.bt-detail-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
|
|
}
|
|
|
|
.bt-row-secondary {
|
|
padding-left: 0 !important;
|
|
white-space: normal !important;
|
|
}
|
|
|
|
.bt-row-actions {
|
|
padding-left: 0 !important;
|
|
justify-content: flex-start !important;
|
|
}
|
|
|
|
.bt-list-summary {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
|
|
}
|
|
}
|
|
|
|
/* ============== MOBILE MAP FIXES ============== */
|
|
@media (max-width: 1023px) {
|
|
/* Aircraft map container needs explicit height on mobile */
|
|
.aircraft-map-container {
|
|
height: 300px !important;
|
|
min-height: 300px !important;
|
|
width: 100% !important;
|
|
}
|
|
|
|
#aircraftMap {
|
|
height: 100% !important;
|
|
width: 100% !important;
|
|
min-height: 250px;
|
|
}
|
|
|
|
/* APRS map container */
|
|
#aprsMap {
|
|
min-height: 300px !important;
|
|
height: 300px !important;
|
|
width: 100% !important;
|
|
}
|
|
|
|
/* Satellite embed */
|
|
.satellite-dashboard-embed {
|
|
height: 400px !important;
|
|
min-height: 400px !important;
|
|
}
|
|
|
|
/* Map panels should be full width */
|
|
.wifi-visual-panel[style*="grid-column: span 2"] {
|
|
grid-column: auto !important;
|
|
}
|
|
|
|
/* Make map container full width when it has ACARS sidebar */
|
|
.wifi-visual-panel[style*="display: flex"][style*="gap: 0"] {
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
/* ACARS sidebar should be below map on mobile */
|
|
.main-acars-sidebar {
|
|
width: 100% !important;
|
|
max-width: none !important;
|
|
border-left: none !important;
|
|
border-top: 1px solid var(--border-color, #1f2937) !important;
|
|
}
|
|
|
|
.main-acars-sidebar.collapsed {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.main-acars-content {
|
|
max-height: 200px !important;
|
|
}
|
|
}
|
|
|
|
/* ============== LEAFLET MOBILE TOUCH FIXES ============== */
|
|
.leaflet-container {
|
|
touch-action: pan-x pan-y;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.leaflet-control-zoom {
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
.leaflet-control-zoom a {
|
|
min-width: var(--touch-min, 44px) !important;
|
|
min-height: var(--touch-min, 44px) !important;
|
|
line-height: var(--touch-min, 44px) !important;
|
|
font-size: 18px !important;
|
|
}
|
|
|
|
/* ============== MOBILE HEADER STATS ============== */
|
|
@media (max-width: 1023px) {
|
|
.header-stats {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Simplify header on mobile */
|
|
header h1 {
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
header h1 .tagline,
|
|
header h1 .version-badge {
|
|
display: none;
|
|
}
|
|
|
|
header .subtitle {
|
|
font-size: 10px !important;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
header .logo svg {
|
|
width: 30px !important;
|
|
height: 30px !important;
|
|
}
|
|
}
|
|
|
|
/* ============== MOBILE MODE PANELS ============== */
|
|
@media (max-width: 1023px) {
|
|
/* Mode panel grids should be single column */
|
|
.data-grid,
|
|
.stats-grid,
|
|
.sensor-grid {
|
|
grid-template-columns: 1fr !important;
|
|
}
|
|
|
|
/* Section headers should be easier to tap */
|
|
.section h3 {
|
|
min-height: var(--touch-min);
|
|
padding: 12px !important;
|
|
}
|
|
|
|
/* Tables need horizontal scroll */
|
|
.message-table,
|
|
.sensor-table {
|
|
display: block;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* Ensure messages list is scrollable */
|
|
#messageList,
|
|
#sensorGrid,
|
|
.aprs-list {
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
}
|
|
|
|
/* ============== WELCOME PAGE MOBILE ============== */
|
|
@media (max-width: 767px) {
|
|
.welcome-container {
|
|
padding: 15px !important;
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.welcome-header {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.welcome-logo svg {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.welcome-title {
|
|
font-size: 24px !important;
|
|
}
|
|
|
|
.welcome-content {
|
|
grid-template-columns: 1fr !important;
|
|
}
|
|
|
|
.mode-grid {
|
|
grid-template-columns: repeat(2, 1fr) !important;
|
|
gap: 8px !important;
|
|
}
|
|
|
|
.mode-card {
|
|
padding: 12px 8px !important;
|
|
}
|
|
|
|
.mode-icon {
|
|
font-size: 20px !important;
|
|
}
|
|
|
|
.mode-name {
|
|
font-size: 11px !important;
|
|
}
|
|
|
|
.mode-desc {
|
|
font-size: 9px !important;
|
|
}
|
|
|
|
.changelog-release {
|
|
padding: 10px !important;
|
|
}
|
|
}
|
|
|
|
/* ============== TSCM MODE MOBILE ============== */
|
|
@media (max-width: 1023px) {
|
|
.tscm-layout {
|
|
flex-direction: column !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
.tscm-spectrum-panel,
|
|
.tscm-detection-panel {
|
|
width: 100% !important;
|
|
max-width: none !important;
|
|
height: auto !important;
|
|
min-height: 300px;
|
|
}
|
|
}
|
|
|
|
/* ============== LISTENING POST MOBILE ============== */
|
|
@media (max-width: 1023px) {
|
|
.radio-controls-section {
|
|
flex-direction: column !important;
|
|
gap: 15px;
|
|
}
|
|
|
|
.knobs-row {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.radio-module-box {
|
|
width: 100% !important;
|
|
}
|
|
}
|