From a87f66cc0c503c7b6521a68ed3de6d3a781802c3 Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 8 Jan 2026 12:34:12 +0000 Subject: [PATCH] Enlarge Selected Target panel for aircraft photos - Increased max-height from 280px to 480px - Added styling for photo container with cyan border - Photo limited to 140px height with cover fit Co-Authored-By: Claude Opus 4.5 --- static/css/adsb_dashboard.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/static/css/adsb_dashboard.css b/static/css/adsb_dashboard.css index cb642b7..e7c98b5 100644 --- a/static/css/adsb_dashboard.css +++ b/static/css/adsb_dashboard.css @@ -346,7 +346,7 @@ body { /* Selected aircraft panel */ .selected-aircraft { flex-shrink: 0; - max-height: 280px; + max-height: 480px; overflow-y: auto; } @@ -354,6 +354,18 @@ body { padding: 12px; } +#aircraftPhotoContainer { + margin-bottom: 12px; +} + +#aircraftPhotoContainer img { + max-height: 140px; + width: 100%; + object-fit: cover; + border-radius: 6px; + border: 1px solid rgba(0, 212, 255, 0.3); +} + .selected-callsign { font-family: 'Orbitron', monospace; font-size: 20px;