mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
671 lines
23 KiB
CSS
671 lines
23 KiB
CSS
/**
|
|
* DX Cluster Bandmap Stylesheet
|
|
* Breakpoints: 768px (tablet), 576px (mobile)
|
|
*/
|
|
|
|
/* ===========================================
|
|
1. CSS VARIABLES & GLOBAL
|
|
=========================================== */
|
|
|
|
:root {
|
|
--cat-purple: #8b5cf6;
|
|
--spot-fresh-blue: #3981b2;
|
|
--spot-expiring-red: rgba(220, 53, 69, 0.25);
|
|
--spot-new-green: rgba(25, 135, 84, 0.2);
|
|
--spot-hover-blue: rgba(13, 110, 253, 0.15);
|
|
}
|
|
|
|
html { overflow-y: scroll; }
|
|
|
|
/* ===========================================
|
|
2. ANIMATIONS
|
|
=========================================== */
|
|
|
|
@keyframes blink-once {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.3; }
|
|
}
|
|
|
|
.blink-once { animation: blink-once 0.6s ease-in-out; }
|
|
|
|
/* ===========================================
|
|
3. BADGE STYLES
|
|
=========================================== */
|
|
|
|
.band-count-badge,
|
|
.mode-count-badge,
|
|
.quick-filter-count-badge {
|
|
display: inline-block;
|
|
min-width: 1.8em;
|
|
text-align: center;
|
|
padding: 0.15em 0.25em;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.text-bg-gold { background-color: #FFD700 !important; color: #fff !important; border: 1px solid #FFA500 !important; text-shadow: 0 0 2px rgba(0,0,0,0.3); }
|
|
.text-bg-silver { background-color: #A8A8A8 !important; color: #fff !important; border: 1px solid #E0E0E0 !important; }
|
|
.text-bg-bronze { background-color: #CD7F32 !important; color: #fff !important; border: 1px solid #8B4513 !important; }
|
|
|
|
.badge.text-bg-success { border: 1px solid #198754 !important; }
|
|
.badge.text-bg-primary { border: 1px solid #0a58ca !important; }
|
|
.badge.text-bg-info { border: 1px solid #087990 !important; }
|
|
.badge.text-bg-warning { border: 1px solid #cc9a06 !important; }
|
|
.badge.text-bg-danger { border: 1px solid #b02a37 !important; }
|
|
.badge.text-bg-dark { border: 1px solid #000 !important; }
|
|
.badge.text-bg-secondary { border: 1px solid #41464b !important; }
|
|
|
|
.spottable .badge i {
|
|
vertical-align: middle;
|
|
line-height: 1;
|
|
display: inline-block;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.spottable .badge i.fa-medal { margin-left: 1px; }
|
|
|
|
/* ===========================================
|
|
4. SPOT TABLE - BASE
|
|
=========================================== */
|
|
|
|
#bandmapContainer {
|
|
max-width: 1910px !important;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#bandmapContainer .table-responsive {
|
|
overflow: auto;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: var(--bs-card-cap-bg, var(--bs-secondary-bg));
|
|
border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0,0,0,0.125));
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.dataTables_wrapper {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.spottable {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
font-family: 'Consolas', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', 'Source Code Pro', monospace;
|
|
font-variant-numeric: slashed-zero;
|
|
font-size: calc(1rem - 2px);
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.spottable th,
|
|
.spottable td {
|
|
padding-left: 4px !important;
|
|
padding-right: 4px !important;
|
|
}
|
|
|
|
.spottable td {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.spottable thead th {
|
|
font-weight: normal;
|
|
font-size: calc(1rem - 1px);
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* Ensure sort markers are consistent across all sortable columns */
|
|
.spottable thead th.dt-orderable-asc,
|
|
.spottable thead th.dt-orderable-desc {
|
|
padding-right: 22px !important;
|
|
}
|
|
|
|
.spottable thead th span.dt-column-order {
|
|
right: 6px !important;
|
|
}
|
|
|
|
.spottable thead tr {
|
|
border-top: 1px solid var(--bs-border-color);
|
|
border-bottom: 1px solid var(--bs-border-color);
|
|
}
|
|
|
|
.spottable tbody tr,
|
|
.spottable tbody tr td {
|
|
border: none;
|
|
cursor: alias !important;
|
|
}
|
|
|
|
.spottable tbody tr:last-child { border-bottom: 1px solid var(--bs-border-color); }
|
|
.spottable tbody a, tbody a { color: inherit; text-decoration: none; }
|
|
.spottable tbody tr a, .spottable tbody tr td a { cursor: pointer !important; }
|
|
|
|
.spottable tbody tr.dataTables_empty,
|
|
.spottable tbody tr.dataTables_empty td,
|
|
.spottable tbody td.dt-empty { cursor: default !important; }
|
|
|
|
.spottable tbody tr td:nth-child(8) i:hover {
|
|
opacity: 0.7;
|
|
transform: scale(1.1);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.spottable .flag-emoji {
|
|
font-family: "Twemoji Country Flags", "Helvetica", "Comic Sans", sans-serif;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.spottable img.emoji {
|
|
height: 20px;
|
|
width: 20px;
|
|
margin: 0 0.05em 0 0.1em;
|
|
vertical-align: -0.25em;
|
|
}
|
|
|
|
.spottable .column-hidden { display: none !important; }
|
|
.spottable .column-fill { width: 100% !important; min-width: 150px !important; }
|
|
|
|
/* ===========================================
|
|
5. SPOT TABLE - COLUMNS
|
|
=========================================== */
|
|
|
|
.spottable th:nth-child(1), .spottable td:nth-child(1) { width: 50px; }
|
|
.spottable th:nth-child(2), .spottable td:nth-child(2) { width: 75px; }
|
|
.spottable th:nth-child(3), .spottable td:nth-child(3) { width: 90px; }
|
|
.spottable th:nth-child(4), .spottable td:nth-child(4) { width: 70px; }
|
|
.spottable th:nth-child(5), .spottable td:nth-child(5) { width: 60px; }
|
|
.spottable th:nth-child(6), .spottable td:nth-child(6) { width: 115px; }
|
|
.spottable th:nth-child(7), .spottable td:nth-child(7) { width: 40px; }
|
|
.spottable th:nth-child(8), .spottable td:nth-child(8) { width: 50px; }
|
|
.spottable th:nth-child(9), .spottable td:nth-child(9) { width: 50px; }
|
|
.spottable th:nth-child(10), .spottable td:nth-child(10) { width: 150px; }
|
|
.spottable th:nth-child(11), .spottable td:nth-child(11) { width: 115px; }
|
|
.spottable th:nth-child(12), .spottable td:nth-child(12) { width: 50px; }
|
|
.spottable th:nth-child(13), .spottable td:nth-child(13) { width: 50px; }
|
|
.spottable th:nth-child(14), .spottable td:nth-child(14) { width: 100px; }
|
|
.spottable th:nth-child(15), .spottable td:nth-child(15) { width: 135px; }
|
|
.spottable th:nth-child(16), .spottable td:nth-child(16) { min-width: 70px; width: 100%; }
|
|
|
|
.spottable th:nth-child(7), .spottable td:nth-child(7),
|
|
.spottable th:nth-child(8), .spottable td:nth-child(8),
|
|
.spottable th:nth-child(9), .spottable td:nth-child(9),
|
|
.spottable th:nth-child(11), .spottable td:nth-child(11),
|
|
.spottable th:nth-child(13), .spottable td:nth-child(13),
|
|
.spottable th:nth-child(14), .spottable td:nth-child(14) { text-align: center; }
|
|
|
|
.spottable td:nth-child(6), .spottable td:nth-child(12) { font-size: calc(1rem - 2px); }
|
|
.spottable td:nth-child(7), .spottable td:nth-child(13) { font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', Arial, sans-serif; }
|
|
.spottable td:nth-child(16) { overflow: visible; white-space: nowrap; }
|
|
.spottable td:nth-child(17) { white-space: normal; word-wrap: break-word; overflow-wrap: break-word; font-size: calc(1rem - 4px); }
|
|
|
|
/* ===========================================
|
|
6. SPOT TABLE - ROW STATES
|
|
=========================================== */
|
|
|
|
.spottable tbody tr.fresh {
|
|
transition: all 500ms ease;
|
|
--bs-table-bg: var(--spot-fresh-blue);
|
|
--bs-table-accent-bg: var(--spot-fresh-blue);
|
|
}
|
|
|
|
.spottable tbody tr.spot-expiring {
|
|
transition: all 300ms ease;
|
|
--bs-table-bg: var(--spot-expiring-red) !important;
|
|
--bs-table-accent-bg: var(--spot-expiring-red) !important;
|
|
background-color: var(--spot-expiring-red) !important;
|
|
}
|
|
|
|
.spottable tbody tr.spot-very-new {
|
|
transition: all 300ms ease;
|
|
--bs-table-bg: var(--spot-new-green) !important;
|
|
--bs-table-accent-bg: var(--spot-new-green) !important;
|
|
background-color: var(--spot-new-green) !important;
|
|
}
|
|
|
|
.spottable tbody tr:hover {
|
|
--bs-table-bg: var(--spot-hover-blue) !important;
|
|
--bs-table-accent-bg: var(--spot-hover-blue) !important;
|
|
background-color: var(--spot-hover-blue) !important;
|
|
transition: all 150ms ease;
|
|
}
|
|
|
|
.spottable tbody tr.dataTables_empty:hover,
|
|
.spottable tbody tr.dataTables_empty:hover td {
|
|
--bs-table-bg: transparent !important;
|
|
--bs-table-accent-bg: transparent !important;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* ===========================================
|
|
7. SPOT TABLE - CAT CONTROL
|
|
=========================================== */
|
|
|
|
.spottable.cat-sorting-locked thead th {
|
|
cursor: not-allowed !important;
|
|
pointer-events: none;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.spottable.cat-sorting-locked thead th.sorting_asc::after,
|
|
.spottable.cat-sorting-locked thead th.sorting_desc::after { opacity: 1 !important; }
|
|
|
|
.cat-frequency-gradient { transition: background-color 0.3s ease !important; }
|
|
.cat-frequency-gradient:hover { filter: brightness(0.95); }
|
|
|
|
.spottable tbody tr.cat-frequency-gradient,
|
|
.spottable tbody tr.cat-frequency-gradient.fresh,
|
|
.spottable tbody tr.cat-frequency-gradient.spot-expiring,
|
|
.spottable tbody tr.cat-frequency-gradient.spot-very-new,
|
|
.spottable tbody tr.cat-frequency-gradient:nth-of-type(odd),
|
|
.spottable tbody tr.cat-frequency-gradient:nth-of-type(even) {
|
|
background-color: var(--bs-table-bg) !important;
|
|
--bs-table-accent-bg: transparent !important;
|
|
--bs-table-striped-bg: transparent !important;
|
|
}
|
|
|
|
.spottable tbody tr.cat-nearest-below,
|
|
.spottable tbody tr.cat-nearest-below td { border-top: 2px solid var(--cat-purple) !important; }
|
|
.spottable tbody tr.cat-nearest-below { box-shadow: 0 -2px 0 0 var(--cat-purple) !important; }
|
|
|
|
.spottable tbody tr.cat-nearest-above,
|
|
.spottable tbody tr.cat-nearest-above td { border-bottom: 2px solid var(--cat-purple) !important; }
|
|
.spottable tbody tr.cat-nearest-above { box-shadow: 0 2px 0 0 var(--cat-purple) !important; }
|
|
|
|
/* ===========================================
|
|
8. STATUS BAR
|
|
=========================================== */
|
|
|
|
.status-bar {
|
|
font-size: calc(1rem - 1px);
|
|
font-family: 'Consolas', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', 'Source Code Pro', monospace;
|
|
font-weight: 500;
|
|
color: var(--bs-body-color);
|
|
background-color: var(--bs-body-bg);
|
|
border-radius: 8px;
|
|
margin: 0.25rem 0;
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.status-bar-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 15px;
|
|
}
|
|
|
|
.status-bar-left {
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
#statusMessage { cursor: help; }
|
|
|
|
.status-bar-right {
|
|
flex: 0 0 auto;
|
|
min-width: 100px;
|
|
margin-left: 10px;
|
|
text-align: right;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* ===========================================
|
|
9. MENU BAR & CONTROLS
|
|
=========================================== */
|
|
|
|
.menu-bar {
|
|
margin: 3px 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
/* Compact mode - hide rows */
|
|
.menu-bar .compact-hidden { display: none !important; }
|
|
|
|
.menu-bar .d-flex { overflow: visible; min-height: fit-content; gap: 0.4rem !important; }
|
|
.menu-bar .btn-sm { padding: 0.25rem 0.5rem; font-size: 0.875rem; }
|
|
.menu-bar .radios.form-select-sm { height: calc(1.5em + 0.5rem + 2px); padding: 0.25rem; font-size: 0.875rem; min-width: 330px; }
|
|
.menu-bar > div:last-child { justify-content: flex-end; }
|
|
.menu-bar > div.mb-2 { margin-bottom: 0.4rem !important; }
|
|
|
|
/* Search input always matches table font */
|
|
.menu-bar .input-group input.form-control {
|
|
font-family: 'Consolas', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', 'Source Code Pro', monospace;
|
|
font-size: calc(1rem - 1px);
|
|
}
|
|
|
|
.menu-bar #radio_status {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1;
|
|
min-height: 0 !important;
|
|
align-self: center;
|
|
}
|
|
|
|
.menu-bar #radio_status #radio_cat_state {
|
|
line-height: 1.4;
|
|
padding: 0.2rem;
|
|
margin: 0;
|
|
display: inline-flex !important;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
#radio_status { min-height: 1.8rem; }
|
|
|
|
#radio_status #radio_cat_state:not(.card) {
|
|
border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0,0,0,0.125));
|
|
border-radius: 6px;
|
|
padding: 0.3rem;
|
|
margin: 0;
|
|
background-color: var(--bs-card-cap-bg, var(--bs-secondary-bg));
|
|
}
|
|
|
|
#radio_status #radio_cat_state:not(.card) > div { margin: 0 !important; padding: 0 !important; }
|
|
|
|
/* Compact card header in normal mode */
|
|
.card-header { padding: 0.1rem 0.5rem !important; min-height: 0 !important; }
|
|
.card-header h5 { font-size: 1rem !important; margin: 0 !important; line-height: 1.2 !important; }
|
|
.card-header .headerLogo { height: 22px !important; }
|
|
.card-header .d-flex { gap: 0.5rem !important; }
|
|
.card-header .fa-question-circle, .card-header #fullscreenIcon, .card-header #compactModeIcon { font-size: 0.9rem !important; }
|
|
.card-header a[style*="padding: 0.5rem"] { padding: 0.2rem !important; margin: -0.2rem !important; }
|
|
#fullscreenToggleWrapper { padding: 0.2rem !important; margin: -0.2rem !important; }
|
|
#fullscreenToggle { padding: 0.2rem !important; min-width: 28px !important; min-height: 28px !important; }
|
|
#compactModeToggle { padding: 0.2rem !important; min-width: 28px !important; min-height: 28px !important; display: inline-flex; align-items: center; justify-content: center; }
|
|
#compactModeToggle:hover { background-color: rgba(0,0,0,0.08) !important; border-radius: 0.25rem; }
|
|
.card-body.pt-1 { padding: 0.4rem 8px !important; }
|
|
|
|
#fullscreenToggle, #fullscreenToggleWrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer !important;
|
|
}
|
|
|
|
#fullscreenToggleWrapper {
|
|
position: relative;
|
|
z-index: 10;
|
|
border-radius: 0.25rem;
|
|
transition: background-color 150ms ease;
|
|
}
|
|
|
|
#fullscreenToggleWrapper:hover { background-color: rgba(0,0,0,0.08) !important; }
|
|
#fullscreenToggle { min-width: 48px; min-height: 48px; font-size: 1.2rem; flex-shrink: 0; }
|
|
#fullscreenToggle:hover { background-color: transparent !important; }
|
|
#fullscreenIcon { pointer-events: none; font-size: 1.4rem !important; }
|
|
|
|
.fullscreen-wavelog-text { pointer-events: auto; flex-shrink: 1; white-space: nowrap; cursor: pointer; }
|
|
.fullscreen-wavelog-text:hover { text-decoration: underline !important; opacity: 0.8; }
|
|
.bandmap-logo-fullscreen { display: none; }
|
|
|
|
.search-icon-clickable { cursor: pointer; }
|
|
.search-icon-clickable:hover { background-color: var(--bs-secondary-bg); }
|
|
|
|
/* ===========================================
|
|
10. FILTER DROPDOWNS
|
|
=========================================== */
|
|
|
|
select[multiple] { height: auto; min-height: 350px; max-height: 700px; }
|
|
select[multiple].filter-short { min-height: 150px; max-height: 220px; }
|
|
select[multiple] option:checked { background-color: var(--bs-primary); color: white; }
|
|
|
|
.dropdown-menu .mb-3 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
min-height: 100px;
|
|
}
|
|
|
|
.dropdown-menu .filter-label-bottom { margin-top: auto; margin-bottom: 0.25rem; text-align: left; }
|
|
.dropdown-menu select.form-select, .dropdown-menu select { margin-bottom: 0; flex-shrink: 0; }
|
|
|
|
.filter-tip {
|
|
background-color: var(--bs-card-cap-bg, var(--bs-secondary-bg));
|
|
color: var(--bs-body-color);
|
|
border: 2px solid var(--bs-dark, #212529);
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
margin-bottom: 15px;
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.filter-label-small { font-size: 1rem; margin-bottom: 0.25rem; font-weight: 500; }
|
|
|
|
/* ===========================================
|
|
11. FULLSCREEN MODE
|
|
=========================================== */
|
|
|
|
.bandmap-fullscreen {
|
|
position: fixed;
|
|
inset: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 9999;
|
|
overflow: hidden;
|
|
background: var(--bs-body-bg, #fff);
|
|
max-width: none !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.bandmap-fullscreen .bandmap-logo-fullscreen { display: inline-block; }
|
|
|
|
.bandmap-fullscreen .card {
|
|
height: 100vh;
|
|
margin: 0;
|
|
border-radius: 0;
|
|
border: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.bandmap-fullscreen .card-header { flex: 0 0 auto; }
|
|
|
|
.bandmap-fullscreen .card-body {
|
|
flex: 1;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
padding: 0.5rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
.bandmap-fullscreen #radio_status { flex: 0 0 auto; margin: 0 !important; padding: 0 !important; min-height: 2.5rem; }
|
|
.bandmap-fullscreen #radio_status:not(:empty) { margin: 0 0 0.5rem 0 !important; }
|
|
.bandmap-fullscreen #radio_status #radio_cat_state:not(.card) { margin: 0 !important; }
|
|
|
|
.bandmap-fullscreen .menu-bar { flex: 0 0 auto; margin: 0 0 0.5rem 0 !important; }
|
|
.bandmap-fullscreen .menu-bar #radio_status { min-height: 0 !important; margin: 0 !important; }
|
|
|
|
/* Restore larger sizing in fullscreen mode */
|
|
.bandmap-fullscreen .menu-bar .d-flex { gap: 0.5rem !important; }
|
|
.bandmap-fullscreen .menu-bar .btn-sm { padding: 0.25rem 0.5rem; font-size: 0.875rem; }
|
|
.bandmap-fullscreen .menu-bar .radios.form-select-sm { height: calc(1.5em + 0.5rem + 2px); padding: 0.25rem; font-size: 0.875rem; min-width: 330px; }
|
|
.bandmap-fullscreen .menu-bar > div.mb-2 { margin-bottom: 0.5rem !important; }
|
|
.bandmap-fullscreen .menu-bar #radio_status #radio_cat_state { font-size: 0.875rem; padding: 0.25rem; }
|
|
.bandmap-fullscreen .card-header { padding: 0.35rem 1rem !important; }
|
|
.bandmap-fullscreen .card-header h5 { font-size: 1.15rem !important; line-height: 1.4 !important; }
|
|
.bandmap-fullscreen .card-header .headerLogo { height: 32px !important; }
|
|
.bandmap-fullscreen .card-header .d-flex { gap: 1rem !important; }
|
|
.bandmap-fullscreen .card-header .fa-question-circle, .bandmap-fullscreen .card-header #fullscreenIcon, .bandmap-fullscreen .card-header #compactModeIcon { font-size: 1.2rem !important; }
|
|
.bandmap-fullscreen .card-header a[style*="padding: 0.5rem"] { padding: 0.5rem !important; margin: -0.5rem !important; }
|
|
.bandmap-fullscreen #fullscreenToggleWrapper { padding: 0.5rem !important; margin: -0.5rem !important; }
|
|
.bandmap-fullscreen #fullscreenToggle { padding: 0.5rem !important; min-width: 48px !important; min-height: 48px !important; }
|
|
.bandmap-fullscreen #compactModeToggle { padding: 0.5rem !important; min-width: 48px !important; min-height: 48px !important; }
|
|
.bandmap-fullscreen .card-body.pt-1 { padding: 0.75rem 15px !important; }
|
|
|
|
.bandmap-fullscreen .menu-bar > div > div[style*="max-width: 70%"] {
|
|
max-width: none !important;
|
|
flex: 1 1 auto !important;
|
|
min-width: 400px !important;
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
.bandmap-fullscreen .status-bar {
|
|
flex: 0 0 auto;
|
|
margin: 0 !important;
|
|
width: 100% !important;
|
|
padding: 0.25rem 0.5rem !important;
|
|
min-height: calc(1.5em + 0.5rem + 2px);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.bandmap-fullscreen .status-bar-left { white-space: normal !important; overflow: visible !important; }
|
|
.bandmap-fullscreen .status-bar-right { min-width: 150px; }
|
|
.bandmap-fullscreen .table-responsive { flex: 1 1 auto; min-height: 0; overflow: auto; margin: 0 !important; }
|
|
|
|
.bandmap-fullscreen .dataTables_processing { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10001; }
|
|
.bandmap-fullscreen .dropdown-menu { z-index: 10002; position: fixed; }
|
|
.bandmap-fullscreen .tooltip, body.fullscreen-active .tooltip { z-index: 10003 !important; }
|
|
body.fullscreen-active .modal, body.fullscreen-active .modal-backdrop { z-index: 10050 !important; }
|
|
body.fullscreen-active .modal-backdrop + .modal { z-index: 10051 !important; }
|
|
|
|
body.fullscreen-active { overflow: hidden; }
|
|
|
|
body.fullscreen-active #page-wrapper,
|
|
body.fullscreen-active nav,
|
|
body.fullscreen-active .navbar,
|
|
body.fullscreen-active header,
|
|
body.fullscreen-active #bandmapContainer > .d-flex.align-items-center.mb-3,
|
|
body.fullscreen-active #bandmapContainer > .messages { display: none !important; }
|
|
|
|
body.fullscreen-active .fullscreen-wavelog-text { display: inline !important; }
|
|
|
|
/* ===========================================
|
|
12. RESPONSIVE - LARGE DESKTOP (≤1400px) - Hide button labels
|
|
=========================================== */
|
|
|
|
@media (max-width: 1400px) {
|
|
/* Hide button text labels - show only icons */
|
|
.menu-bar .btn span.d-none.d-sm-inline,
|
|
.menu-bar .btn span.d-none.d-md-inline,
|
|
.menu-bar .btn span.d-none.d-lg-inline { display: none !important; }
|
|
|
|
/* Hide "de:" label */
|
|
.menu-bar small.text-muted { display: none !important; }
|
|
}
|
|
|
|
/* ===========================================
|
|
13. RESPONSIVE - DESKTOP/LAPTOP (≤1200px)
|
|
=========================================== */
|
|
|
|
@media (max-width: 1200px) {
|
|
/* Make menu-bar a single flex container with all items flowing together */
|
|
.menu-bar {
|
|
display: flex !important;
|
|
flex-wrap: wrap !important;
|
|
gap: 0.35rem !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
/* Compact buttons at this breakpoint */
|
|
.menu-bar .btn-sm { padding: 0.15rem 0.35rem; font-size: 0.8rem; }
|
|
.menu-bar .radios.form-select-sm { height: calc(1.4em + 0.4rem + 2px); padding: 0.15rem 0.25rem; font-size: 0.8rem; }
|
|
|
|
/* Remove row structure - make each row's items flow directly (except status-search-row and hidden rows) */
|
|
.menu-bar > div.d-flex:not(.compact-hidden):not(.status-search-row) {
|
|
display: contents !important;
|
|
}
|
|
|
|
/* Status bar and search always stay together as their own row */
|
|
.menu-bar .status-search-row {
|
|
display: flex !important;
|
|
flex-basis: 100% !important;
|
|
width: 100% !important;
|
|
order: 999; /* Always at the bottom */
|
|
}
|
|
|
|
/* Remove spacers and auto-margins */
|
|
.menu-bar .flex-grow-1 { display: none !important; }
|
|
.menu-bar .ms-auto { margin-left: 0 !important; }
|
|
|
|
/* Remove bottom margins from former rows */
|
|
.menu-bar > div.mb-2 { margin-bottom: 0 !important; }
|
|
|
|
/* Nested flex containers should also flow (except when parent is hidden or status-search-row) */
|
|
.menu-bar > div:not(.compact-hidden):not(.status-search-row) .d-flex.flex-wrap { display: contents !important; }
|
|
|
|
/* Compact status bar and search at this breakpoint */
|
|
.status-bar {
|
|
padding: 3px 8px;
|
|
margin: 0.15rem 0;
|
|
border-radius: 6px;
|
|
}
|
|
.menu-bar .input-group input.form-control {
|
|
padding: 0.15rem 0.35rem;
|
|
}
|
|
.menu-bar .input-group .btn {
|
|
padding: 0.15rem 0.35rem;
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
/* ===========================================
|
|
13. RESPONSIVE - TABLET (≤768px)
|
|
=========================================== */
|
|
|
|
@media (max-width: 768px) {
|
|
.dropdown-menu { min-width: 95vw; max-width: 95vw; }
|
|
select[multiple] { min-height: 180px; max-height: 375px; }
|
|
select[multiple].filter-short { min-height: 100px; max-height: 150px; }
|
|
|
|
.status-bar { font-size: 0.8rem; padding: 5px 10px; }
|
|
.status-bar-inner { gap: 10px; }
|
|
.status-bar-right { min-width: 80px; font-size: 0.75rem; }
|
|
|
|
.menu-bar .d-flex { gap: 0.3rem !important; }
|
|
.card-body.pt-1 { padding-left: 10px; padding-right: 10px; }
|
|
|
|
#toggleLotwFilter .d-none.d-sm-inline,
|
|
#toggleNewContinentFilter .d-none.d-sm-inline,
|
|
#toggleDxccNeededFilter .d-none.d-sm-inline,
|
|
#toggleNewCallsignFilter .d-none.d-sm-inline,
|
|
#toggleContestFilter .d-none.d-sm-inline,
|
|
#toggleGeoHunterFilter .d-none.d-sm-inline,
|
|
#toggleFreshFilter .d-none.d-sm-inline { display: none !important; }
|
|
|
|
/* Table columns - tablet */
|
|
.spottable { table-layout: auto !important; }
|
|
.spottable th:nth-child(10), .spottable td:nth-child(10) { width: 100% !important; min-width: 150px !important; }
|
|
}
|
|
|
|
/* ===========================================
|
|
14. RESPONSIVE - MOBILE (≤576px)
|
|
=========================================== */
|
|
|
|
@media (max-width: 576px) {
|
|
select[multiple] { min-height: 150px; max-height: 300px; }
|
|
.card-body.pt-1 { padding-left: 5px; padding-right: 5px; }
|
|
|
|
.menu-bar > div:last-child > div:first-child { flex: 1 1 100% !important; max-width: 100% !important; margin-bottom: 0.5rem; }
|
|
.menu-bar > div:last-child .input-group { flex: 1 1 100% !important; max-width: 100% !important; }
|
|
.menu-bar .d-flex, .menu-bar .d-flex.gap-2 { gap: 0.2rem !important; }
|
|
.menu-bar > div { overflow: visible !important; min-height: auto !important; }
|
|
|
|
.d-none.d-sm-inline { display: none !important; }
|
|
|
|
.status-bar { font-size: 0.7rem; padding: 3px 6px; }
|
|
.status-bar-right { margin-left: 5px; }
|
|
|
|
/* Table columns - mobile */
|
|
.spottable th:nth-child(1), .spottable td:nth-child(1) { width: 50px !important; }
|
|
.spottable th:nth-child(3), .spottable td:nth-child(3) { width: 90px !important; }
|
|
.spottable th:nth-child(6), .spottable td:nth-child(6) { width: 100px !important; }
|
|
.spottable th:nth-child(10), .spottable td:nth-child(10) { width: 100% !important; min-width: 150px !important; }
|
|
}
|