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 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-08 12:34:12 +00:00
parent c05756357f
commit a87f66cc0c

View File

@@ -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;