diff --git a/application/views/bandmap/list.php b/application/views/bandmap/list.php index ca7ebe963..ba85628f4 100644 --- a/application/views/bandmap/list.php +++ b/application/views/bandmap/list.php @@ -103,12 +103,12 @@ /* Column widths - consolidated selectors */ .spottable th:nth-child(1), .spottable td:nth-child(1) { width: 50px; } /* Age (minutes) */ - .spottable th:nth-child(2), .spottable td:nth-child(2) { width: 50px; } /* Band */ + .spottable th:nth-child(2), .spottable td:nth-child(2) { width: 53px; } /* Band */ .spottable th:nth-child(3), .spottable td:nth-child(3) { width: 90px; } /* Frequency */ .spottable th:nth-child(4), .spottable td:nth-child(4) { width: 60px; } /* Mode */ .spottable th:nth-child(5), .spottable td:nth-child(5) { width: 120px; } /* Callsign */ .spottable th:nth-child(6), .spottable td:nth-child(6) { width: 40px; } /* Continent */ - .spottable th:nth-child(7), .spottable td:nth-child(7) { width: 45px; } /* CQ Zone */ + .spottable th:nth-child(7), .spottable td:nth-child(7) { width: 50px; } /* CQ Zone */ .spottable th:nth-child(8), .spottable td:nth-child(8) { width: 50px; } /* Flag */ .spottable th:nth-child(9), .spottable td:nth-child(9) { width: 150px; } /* Entity (DXCC name) */ .spottable th:nth-child(10), .spottable td:nth-child(10) { width: 60px; } /* DXCC Number */ @@ -162,6 +162,17 @@ white-space: nowrap; } + /* Center alignment for specific columns */ + .spottable th:nth-child(6), .spottable td:nth-child(6), /* Continent (spotted) */ + .spottable th:nth-child(7), .spottable td:nth-child(7), /* CQ Zone (spotted) */ + .spottable th:nth-child(8), .spottable td:nth-child(8), /* Flag */ + .spottable th:nth-child(10), .spottable td:nth-child(10), /* DXCC Number */ + .spottable th:nth-child(12), .spottable td:nth-child(12), /* de Cont (spotter) */ + .spottable th:nth-child(13), .spottable td:nth-child(13) /* de CQZ (spotter) */ + { + text-align: center; + } + /* Responsive: On smallest screens, Entity column fills remaining space */ @media (max-width: 500px) { .spottable { @@ -308,6 +319,11 @@ margin-bottom: 5px; } + /* Ensure CAT tracking and search box stay right-aligned when wrapping */ + .menu-bar > div:last-child { + justify-content: flex-end; + } + .card-body.pt-1 { padding-left: 15px; padding-right: 15px; @@ -480,15 +496,14 @@