mirror of
https://github.com/l5yth/potato-mesh.git
synced 2026-03-28 17:42:48 +01:00
2342 lines
38 KiB
CSS
2342 lines
38 KiB
CSS
/*
|
|
* Copyright © 2025-26 l5yth & contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
:root {
|
|
--bg: #f6f3ee;
|
|
--bg2: #ffffff;
|
|
--fg: #0c0f12;
|
|
--muted: #5c6773;
|
|
--card: rgba(0, 0, 0, 0.03);
|
|
--line: rgba(12, 15, 18, 0.08);
|
|
--accent: #2b6cb0;
|
|
--row-alt: rgba(0, 0, 0, 0.02);
|
|
--table-head-bg: rgba(0, 0, 0, 0.06);
|
|
--table-head-fg: var(--fg);
|
|
--input-bg: #ffffff;
|
|
--input-fg: var(--fg);
|
|
--input-border: rgba(12, 15, 18, 0.18);
|
|
--input-placeholder: rgba(12, 15, 18, 0.45);
|
|
--control-accent: var(--accent);
|
|
--pad: 16px;
|
|
--map-tile-filter-light: grayscale(1) saturate(0) brightness(0.92) contrast(1.05);
|
|
--map-tile-filter-dark: grayscale(1) invert(1) brightness(0.9) contrast(1.08);
|
|
}
|
|
|
|
html {
|
|
color-scheme: light;
|
|
}
|
|
|
|
html[data-theme='dark'] {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body.dark {
|
|
--bg: #0e1418;
|
|
--bg2: #0e141b;
|
|
--fg: #e6ebf0;
|
|
--muted: #9aa7b4;
|
|
--card: rgba(255, 255, 255, 0.04);
|
|
--line: rgba(255, 255, 255, 0.1);
|
|
--accent: #5fa8ff;
|
|
--row-alt: rgba(255, 255, 255, 0.05);
|
|
--table-head-bg: rgba(255, 255, 255, 0.06);
|
|
--table-head-fg: var(--fg);
|
|
--input-bg: #1e262c;
|
|
--input-fg: var(--fg);
|
|
--input-border: rgba(230, 235, 240, 0.24);
|
|
--input-placeholder: rgba(230, 235, 240, 0.55);
|
|
--control-accent: var(--accent);
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background-color: var(--bg);
|
|
color: var(--fg);
|
|
transition: background-color 160ms ease, color 160ms ease;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent);
|
|
}
|
|
|
|
hr {
|
|
border-color: var(--line);
|
|
}
|
|
|
|
.card,
|
|
.panel,
|
|
.box {
|
|
background: var(--card);
|
|
backdrop-filter: blur(2px);
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
border: 1px solid var(--line);
|
|
}
|
|
|
|
thead th {
|
|
background: var(--table-head-bg);
|
|
color: var(--table-head-fg);
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--line);
|
|
padding: 8px;
|
|
}
|
|
|
|
tbody td {
|
|
padding: 8px;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
tbody tr:nth-child(even) td {
|
|
background: var(--row-alt);
|
|
}
|
|
|
|
.leaflet-container {
|
|
background: transparent !important;
|
|
color: var(--fg);
|
|
}
|
|
|
|
.neighbor-connection-line {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.trace-connection-line {
|
|
stroke-dasharray: 6 6;
|
|
}
|
|
|
|
.leaflet-tooltip.trace-tooltip {
|
|
background: var(--bg2);
|
|
color: var(--fg);
|
|
border: 1px solid var(--line);
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
|
|
padding: 6px 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.trace-tooltip__content {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.trace-tooltip__arrow {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.neighbor-snr {
|
|
margin-left: 4px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
--map-tiles-filter: var(--map-tile-filter-light);
|
|
}
|
|
|
|
.page-shell {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
padding: var(--pad);
|
|
padding-bottom: calc(96px + var(--pad));
|
|
gap: var(--pad);
|
|
}
|
|
|
|
.page-shell--full-screen {
|
|
padding: 0;
|
|
padding-bottom: 0;
|
|
gap: 0;
|
|
}
|
|
|
|
.page-shell--full-screen .site-header,
|
|
.page-shell--full-screen .row.meta,
|
|
.page-shell--full-screen .app-footer {
|
|
padding-left: var(--pad);
|
|
padding-right: var(--pad);
|
|
}
|
|
|
|
.page-shell--full-screen .site-header {
|
|
padding-top: var(--pad);
|
|
}
|
|
|
|
.page-shell--full-screen .row.meta {
|
|
padding-bottom: var(--pad);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.page-shell--full-screen .app-footer {
|
|
padding-top: var(--pad);
|
|
padding-bottom: var(--pad);
|
|
}
|
|
|
|
.page-main {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--pad);
|
|
min-height: 0;
|
|
}
|
|
|
|
.page-main--dashboard {
|
|
padding: 0;
|
|
}
|
|
|
|
.page-main--full-screen {
|
|
padding: 0;
|
|
gap: var(--pad);
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
.site-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
min-height: 56px;
|
|
padding: 4px 0;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.site-header__left,
|
|
.site-header__right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.site-header__left {
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.site-header__right {
|
|
flex: 0 0 auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.site-title {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.site-title-text {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.site-title img {
|
|
width: 36px;
|
|
height: 36px;
|
|
display: block;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.site-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.site-nav__link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
color: var(--fg);
|
|
text-decoration: none;
|
|
border: 1px solid transparent;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.site-nav__link:hover {
|
|
background: var(--card);
|
|
}
|
|
|
|
.site-nav__link.is-active {
|
|
border-color: var(--accent);
|
|
color: var(--accent);
|
|
background: transparent;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.site-nav__link:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: none;
|
|
}
|
|
|
|
.menu-toggle:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.mobile-menu {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 1200;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mobile-menu[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-menu__backdrop {
|
|
flex: 1 1 auto;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
opacity: 0;
|
|
transition: opacity 200ms ease;
|
|
}
|
|
|
|
.mobile-menu__panel {
|
|
width: min(320px, 86vw);
|
|
background: var(--bg2);
|
|
color: var(--fg);
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
transform: translateX(100%);
|
|
transition: transform 220ms ease;
|
|
box-shadow: -12px 0 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.mobile-menu__header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.mobile-menu__title {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.mobile-menu__close:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.mobile-nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.mobile-nav__link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 8px 10px;
|
|
border-radius: 10px;
|
|
color: var(--fg);
|
|
text-decoration: none;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.mobile-nav__link.is-active {
|
|
border-color: var(--accent);
|
|
color: var(--accent);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.mobile-nav__link:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.mobile-menu.is-open {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.mobile-menu.is-open .mobile-menu__backdrop {
|
|
opacity: 1;
|
|
}
|
|
|
|
.mobile-menu.is-open .mobile-menu__panel {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.menu-open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line);
|
|
color: var(--fg);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.section-link:hover {
|
|
border-color: var(--accent);
|
|
color: var(--accent);
|
|
}
|
|
|
|
.section-link:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.meta {
|
|
color: #555;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.instance-selector {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.instance-select {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
background-color: var(--input-bg);
|
|
color: var(--input-fg);
|
|
border: 1px solid var(--input-border);
|
|
border-radius: 8px;
|
|
padding: 6px 32px 6px 12px;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
min-width: 220px;
|
|
background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
|
|
linear-gradient(135deg, var(--muted) 50%, transparent 50%);
|
|
background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px);
|
|
background-size: 6px 6px, 6px 6px;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.instance-select:focus {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.visually-hidden {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.site-header {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.site-header__left {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.site-header__left--federation {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.site-nav {
|
|
display: none;
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.instance-selector {
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.instance-select {
|
|
width: 100%;
|
|
}
|
|
|
|
.instance-select {
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.pill {
|
|
display: inline-block;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
background: #eee;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#map {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 60vh;
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
display: block;
|
|
}
|
|
|
|
.map-panel.is-fullscreen,
|
|
.map-panel:fullscreen,
|
|
.map-panel:-webkit-full-screen,
|
|
.map-panel:-moz-full-screen,
|
|
.map-panel:-ms-fullscreen,
|
|
#map.is-fullscreen,
|
|
#map:fullscreen,
|
|
#map:-webkit-full-screen,
|
|
#map:-moz-full-screen,
|
|
#map:-ms-fullscreen {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
min-width: 100vw;
|
|
min-height: 100vh;
|
|
max-width: 100vw;
|
|
max-height: 100vh;
|
|
margin: 0;
|
|
border: none;
|
|
border-radius: 0;
|
|
background: #000;
|
|
}
|
|
|
|
.map-panel.is-fullscreen,
|
|
.map-panel:fullscreen,
|
|
.map-panel:-webkit-full-screen,
|
|
.map-panel:-moz-full-screen,
|
|
.map-panel:-ms-fullscreen {
|
|
display: block;
|
|
}
|
|
|
|
.map-panel.is-fullscreen #map,
|
|
.map-panel:fullscreen #map,
|
|
.map-panel:-webkit-full-screen #map,
|
|
.map-panel:-moz-full-screen #map,
|
|
.map-panel:-ms-fullscreen #map,
|
|
#map.is-fullscreen,
|
|
#map:fullscreen,
|
|
#map:-webkit-full-screen,
|
|
#map:-moz-full-screen,
|
|
#map:-ms-fullscreen {
|
|
height: 100vh !important;
|
|
width: 100vw !important;
|
|
min-height: 100vh;
|
|
min-width: 100vw;
|
|
max-height: 100vh;
|
|
max-width: 100vw;
|
|
border: none;
|
|
border-radius: 0;
|
|
flex: none;
|
|
}
|
|
|
|
.map-panel.is-fullscreen .map-toolbar,
|
|
.map-panel:fullscreen .map-toolbar,
|
|
.map-panel:-webkit-full-screen .map-toolbar,
|
|
.map-panel:-moz-full-screen .map-toolbar,
|
|
.map-panel:-ms-fullscreen .map-toolbar {
|
|
top: 16px;
|
|
right: 16px;
|
|
}
|
|
|
|
#map[data-map-status="placeholder"] {
|
|
background: repeating-linear-gradient(
|
|
135deg,
|
|
rgba(0, 0, 0, 0.02),
|
|
rgba(0, 0, 0, 0.02) 12px,
|
|
rgba(0, 0, 0, 0.04) 12px,
|
|
rgba(0, 0, 0, 0.04) 24px
|
|
);
|
|
}
|
|
|
|
#map .map-placeholder-message {
|
|
text-align: center;
|
|
color: #555;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
#map .map-placeholder-message strong {
|
|
display: block;
|
|
margin-bottom: 6px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
#map .map-placeholder-message span {
|
|
display: block;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
body.dark #map .map-placeholder-message {
|
|
color: #ddd;
|
|
}
|
|
|
|
#map .map-status-message {
|
|
position: absolute;
|
|
top: 12px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
backdrop-filter: blur(6px);
|
|
pointer-events: none;
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
background: rgba(255, 255, 255, 0.9);
|
|
color: #333;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
|
z-index: 1200;
|
|
}
|
|
|
|
body.dark #map[data-map-status="placeholder"] {
|
|
background: repeating-linear-gradient(
|
|
135deg,
|
|
rgba(255, 255, 255, 0.02),
|
|
rgba(255, 255, 255, 0.02) 12px,
|
|
rgba(255, 255, 255, 0.06) 12px,
|
|
rgba(255, 255, 255, 0.06) 24px
|
|
);
|
|
}
|
|
|
|
body.dark #map .map-status-message {
|
|
border-color: rgba(255, 255, 255, 0.16);
|
|
background: rgba(0, 0, 0, 0.65);
|
|
color: #eee;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
body.dark .map-toolbar button {
|
|
background: rgba(36, 36, 36, 0.88);
|
|
color: #f1f1f1;
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
body.dark .map-toolbar button:hover {
|
|
background: rgba(52, 52, 52, 0.9);
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 4px 6px;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
position: sticky;
|
|
top: 0;
|
|
background: #fafafa;
|
|
}
|
|
|
|
.mono {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
gap: var(--pad);
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.map-row {
|
|
display: flex;
|
|
gap: var(--pad);
|
|
align-items: stretch;
|
|
}
|
|
|
|
.full-screen-section {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.map-panel--full {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.map-panel--full #map {
|
|
flex: 1 1 auto;
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.full-screen-section--map {
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.full-screen-section--map .map-panel {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.view-map .page-main--full-screen {
|
|
gap: 0;
|
|
}
|
|
|
|
.view-nodes .page-main--full-screen {
|
|
gap: 0;
|
|
}
|
|
|
|
.view-map .full-screen-section--map {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
}
|
|
|
|
.view-map .full-screen-section--map .map-panel {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
.view-map .full-screen-section--map .map-panel #map {
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
}
|
|
|
|
.view-nodes .full-screen-section--nodes {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
body.view-map .map-panel--full #map {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.chat-panel--full {
|
|
flex: 1 1 auto;
|
|
max-width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0;
|
|
max-height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.full-screen-section--chat .chat-panel {
|
|
height: 100%;
|
|
}
|
|
|
|
.view-chat .page-main--full-screen {
|
|
gap: 0;
|
|
}
|
|
|
|
.view-chat .full-screen-section--chat {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
min-height: 0;
|
|
}
|
|
|
|
.view-chat .full-screen-section--chat .chat-panel {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
.chat-panel--disabled {
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: var(--pad) calc(var(--pad) * 2);
|
|
min-height: 50vh;
|
|
}
|
|
|
|
.chat-disabled-message {
|
|
font-size: 1rem;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.nodes-table-wrapper {
|
|
width: 100%;
|
|
}
|
|
|
|
.map-panel {
|
|
position: relative;
|
|
flex: 1 1 0%;
|
|
min-width: 0;
|
|
display: block;
|
|
}
|
|
|
|
.map-toolbar {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
display: flex;
|
|
gap: 8px;
|
|
z-index: 1300;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.map-toolbar button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
background: rgba(255, 255, 255, 0.95);
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
|
font-size: 13px;
|
|
line-height: 1.2;
|
|
transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease,
|
|
box-shadow 160ms ease;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.map-toolbar button:hover {
|
|
background: rgba(245, 245, 245, 0.95);
|
|
}
|
|
|
|
.map-toolbar button svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
display: block;
|
|
fill: currentColor;
|
|
}
|
|
|
|
#mapFullscreenToggle .icon-fullscreen-exit {
|
|
display: none;
|
|
}
|
|
|
|
#mapFullscreenToggle[aria-pressed='true'] .icon-fullscreen-exit {
|
|
display: block;
|
|
}
|
|
|
|
#mapFullscreenToggle[aria-pressed='true'] .icon-fullscreen-enter {
|
|
display: none;
|
|
}
|
|
|
|
.chat-panel {
|
|
flex: 0 0 33%;
|
|
max-width: 33%;
|
|
height: 60vh;
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
font-size: 12px;
|
|
background: var(--bg2);
|
|
}
|
|
|
|
.chat-panel.chat-panel--full {
|
|
flex: 1 1 auto;
|
|
max-width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.chat-tablist {
|
|
display: flex;
|
|
gap: 4px;
|
|
padding: 6px 6px 0;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.chat-tab {
|
|
flex: 1;
|
|
border: none;
|
|
background: transparent;
|
|
color: inherit;
|
|
padding: 6px 8px;
|
|
border-radius: 6px 6px 0 0;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
transition: background-color 120ms ease, color 120ms ease;
|
|
}
|
|
|
|
.chat-tab:is(:focus-visible, :hover) {
|
|
background: rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.chat-tab.is-active {
|
|
background: var(--bg2);
|
|
color: var(--accent);
|
|
border-bottom: 2px solid var(--accent);
|
|
}
|
|
|
|
.chat-tabpanels {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chat-tabpanel {
|
|
flex: 1 1 auto;
|
|
padding: 6px;
|
|
overflow-y: auto;
|
|
min-height: 0;
|
|
}
|
|
|
|
.chat-empty {
|
|
margin: 12px 0;
|
|
color: var(--muted);
|
|
font-style: italic;
|
|
}
|
|
|
|
.chat-entry-node {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
color: #555;
|
|
}
|
|
|
|
.chat-entry-copy {
|
|
font-style: normal;
|
|
}
|
|
|
|
.chat-entry-reply {
|
|
color: var(--muted);
|
|
font-style: italic;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.chat-entry-msg {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.chat-entry-date {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.short-name {
|
|
display: inline-block;
|
|
border-radius: 4px;
|
|
padding: 0 2px;
|
|
}
|
|
|
|
.short-name[data-node-info] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.short-info-overlay {
|
|
position: absolute;
|
|
background: #fff;
|
|
color: #111;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
|
|
padding: 8px 10px 10px;
|
|
font-size: 11px;
|
|
line-height: 1.4;
|
|
min-width: 200px;
|
|
max-width: 240px;
|
|
z-index: 20000;
|
|
}
|
|
|
|
.short-info-overlay[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.short-info-overlay .short-info-close {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 4px;
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 14px;
|
|
line-height: 1;
|
|
padding: 2px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
color: inherit;
|
|
}
|
|
|
|
.short-info-overlay .short-info-close:hover {
|
|
background: rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.short-info-sats {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-weight: inherit;
|
|
color: inherit;
|
|
padding: 0;
|
|
margin: 0;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.short-info-sats__icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: currentColor;
|
|
}
|
|
|
|
.short-info-sats__glyph {
|
|
display: block;
|
|
filter: grayscale(1);
|
|
}
|
|
|
|
body.dark .short-info-sats__glyph {
|
|
filter: invert(1) grayscale(1);
|
|
}
|
|
|
|
.short-info-sats__count {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
letter-spacing: 0.1px;
|
|
}
|
|
|
|
.node-detail-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.65);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
z-index: 15000;
|
|
}
|
|
|
|
.node-detail-overlay[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.node-detail-overlay__dialog {
|
|
width: 90vw;
|
|
height: 90vh;
|
|
max-width: 1400px;
|
|
max-height: 960px;
|
|
background: var(--bg2);
|
|
color: var(--fg);
|
|
border-radius: 16px;
|
|
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
|
|
padding: 32px 24px 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.node-detail-overlay__close {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
border: none;
|
|
background: rgba(0, 0, 0, 0.05);
|
|
color: inherit;
|
|
font-size: 18px;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
.node-detail-overlay__close:hover {
|
|
background: rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.node-detail-overlay__content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.node-detail-overlay__status {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.node-detail-overlay__status--error {
|
|
color: #c62828;
|
|
}
|
|
|
|
body.dark .node-detail-overlay__dialog {
|
|
background: var(--bg2);
|
|
color: var(--fg);
|
|
}
|
|
|
|
body.dark .node-detail-overlay__close {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
body.dark .node-detail-overlay__close:hover {
|
|
background: rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
.charts-page {
|
|
padding: 24px var(--pad) 48px;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.charts-page__intro {
|
|
padding: 0 4px 12px;
|
|
}
|
|
|
|
.charts-page__intro h2 {
|
|
margin: 0 0 6px;
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.charts-page__intro p {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.charts-page__content {
|
|
min-height: 320px;
|
|
}
|
|
|
|
.charts-page__status {
|
|
margin: 18px 0;
|
|
font-size: 1rem;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.charts-page__status--error {
|
|
color: #c62828;
|
|
}
|
|
|
|
.node-detail {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 24px 0 40px;
|
|
}
|
|
|
|
.node-detail__header {
|
|
margin-bottom: 12px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.node-detail__title {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.node-detail__badge {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.node-detail__table {
|
|
margin: 20px 0 32px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.node-detail__table table {
|
|
width: 100%;
|
|
}
|
|
|
|
.node-detail__charts {
|
|
padding: 0 20px;
|
|
margin: 12px 0 24px;
|
|
}
|
|
|
|
.node-detail__charts-grid {
|
|
display: grid;
|
|
gap: 24px;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(100%, 640px), 1fr));
|
|
}
|
|
|
|
.node-detail__chart {
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
background: var(--card);
|
|
padding: 18px 20px 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.node-detail__chart-header {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
font-size: 1rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.node-detail__chart-header h4 {
|
|
margin: 0;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.node-detail__chart-header span {
|
|
color: var(--muted);
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.node-detail__chart svg {
|
|
width: 100%;
|
|
height: auto;
|
|
max-height: 420px;
|
|
}
|
|
|
|
.node-detail__chart-axis line {
|
|
stroke: var(--line);
|
|
stroke-width: 1;
|
|
}
|
|
|
|
.node-detail__chart-axis text,
|
|
.node-detail__chart-axis-label {
|
|
fill: var(--muted);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.node-detail__chart-grid-line {
|
|
stroke: rgba(12, 15, 18, 0.08);
|
|
stroke-width: 1;
|
|
}
|
|
|
|
body.dark .node-detail__chart-grid-line {
|
|
stroke: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.node-detail__chart-point {
|
|
stroke: none;
|
|
}
|
|
|
|
.node-detail__chart-legend {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px 18px;
|
|
}
|
|
|
|
.node-detail__chart-legend-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.node-detail__chart-legend-swatch {
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 999px;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.node-detail__chart-legend-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.node-detail__chart-legend-text small {
|
|
color: var(--muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.node-detail__identifier {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.node-long-link {
|
|
color: inherit;
|
|
text-decoration: underline;
|
|
text-decoration-thickness: 1px;
|
|
}
|
|
|
|
.node-long-link:focus,
|
|
.node-long-link:hover {
|
|
text-decoration-thickness: 2px;
|
|
}
|
|
|
|
.node-detail__status,
|
|
.node-detail__error,
|
|
.node-detail__noscript {
|
|
margin: 16px 0;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.node-detail__error {
|
|
color: #b00020;
|
|
}
|
|
|
|
.node-detail__content {
|
|
display: grid;
|
|
gap: 24px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.node-detail__neighbors-grid {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
@media (min-width: 720px) {
|
|
.node-detail__neighbors-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
.node-detail__neighbors-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.node-detail__neighbors-title {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.node-detail__neighbors-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.node-detail__neighbors-list li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.node-detail__neighbor-snr {
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
color: var(--muted);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.node-detail__trace-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.node-detail__trace {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.node-detail__trace-arrow {
|
|
color: var(--muted);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.node-detail__section h3 {
|
|
margin: 0 0 10px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.node-detail__list {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.node-detail__row {
|
|
display: grid;
|
|
grid-template-columns: minmax(140px, 200px) 1fr;
|
|
gap: 8px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.node-detail__row dt {
|
|
font-weight: 600;
|
|
color: var(--muted);
|
|
margin: 0;
|
|
}
|
|
|
|
.node-detail__row dd {
|
|
margin: 0;
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.node-detail__list li {
|
|
margin-bottom: 4px;
|
|
font-family: ui-monospace, Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.short-info-content {
|
|
margin: 0;
|
|
}
|
|
|
|
.meta-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.refresh-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: start;
|
|
width: 100%;
|
|
}
|
|
|
|
.refresh-info {
|
|
margin: 0;
|
|
color: #555;
|
|
}
|
|
|
|
.refresh-info--hidden {
|
|
display: none;
|
|
}
|
|
|
|
.refresh-row--no-info {
|
|
grid-template-columns: auto;
|
|
}
|
|
|
|
.refresh-row--no-info .refresh-actions {
|
|
justify-self: start;
|
|
}
|
|
|
|
.refresh-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-self: end;
|
|
}
|
|
|
|
.auto-refresh-toggle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.controls--full-screen {
|
|
flex: 1 1 auto;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.controls label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.controls .filter-input {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
flex: 1 1 260px;
|
|
position: relative;
|
|
}
|
|
|
|
.filter-input input[type="text"] {
|
|
flex: 1 1 auto;
|
|
width: 100%;
|
|
padding-right: 28px;
|
|
}
|
|
|
|
.filter-clear {
|
|
position: absolute;
|
|
right: 6px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--muted);
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
|
|
.filter-clear:hover {
|
|
background: rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
body.dark .filter-clear:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.filter-clear:focus-visible {
|
|
outline: 2px solid #4a90e2;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
button:not(.chat-tab):not(.sort-button) {
|
|
padding: 6px 10px;
|
|
border: 1px solid #ccc;
|
|
background: #fff;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
color: var(--fg);
|
|
}
|
|
|
|
.icon-button {
|
|
width: 36px;
|
|
height: 36px;
|
|
padding: 0;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
line-height: 1;
|
|
}
|
|
|
|
button:not(.chat-tab):not(.sort-button):hover {
|
|
background: #f6f6f6;
|
|
}
|
|
|
|
.sort-button {
|
|
padding: 0;
|
|
border: none;
|
|
background: none;
|
|
color: inherit;
|
|
font: inherit;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.sort-button:hover {
|
|
background: none;
|
|
}
|
|
|
|
.sort-button:focus-visible {
|
|
outline: 2px solid #4a90e2;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.sort-header {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.sort-header:focus-visible {
|
|
outline: 2px solid #4a90e2;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.sort-indicator {
|
|
font-size: 0.75em;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
th[aria-sort] .sort-indicator {
|
|
opacity: 1;
|
|
}
|
|
|
|
label {
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
|
|
input[type="text"] {
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--input-border);
|
|
border-radius: 6px;
|
|
background: var(--input-bg);
|
|
color: var(--input-fg);
|
|
transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease,
|
|
box-shadow 160ms ease;
|
|
}
|
|
|
|
input[type="text"]::placeholder {
|
|
color: var(--input-placeholder);
|
|
}
|
|
|
|
input[type="text"]:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
input[type="checkbox"],
|
|
input[type="radio"] {
|
|
accent-color: var(--control-accent);
|
|
transition: accent-color 160ms ease, background-color 160ms ease;
|
|
}
|
|
|
|
.legend {
|
|
position: relative;
|
|
background: #fff;
|
|
color: var(--fg);
|
|
padding: 8px 10px 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
min-width: 160px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.legend-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 4px;
|
|
margin-bottom: 6px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.legend-title {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.legend-items {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.legend-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font: inherit;
|
|
color: inherit;
|
|
background: transparent;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
padding: 3px 6px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
text-align: left;
|
|
}
|
|
|
|
.legend-item:hover {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.legend-item:focus-visible {
|
|
outline: 2px solid #4a90e2;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.legend-item[aria-pressed="true"] {
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
background: rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.legend-swatch {
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.legend-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.legend-toggle {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.legend-toggle-button {
|
|
font-size: 12px;
|
|
color: var(--fg);
|
|
}
|
|
|
|
#map .leaflet-tile-pane,
|
|
#map .leaflet-layer,
|
|
#map .leaflet-tile.map-tiles {
|
|
opacity: 0.75;
|
|
filter: var(--map-tiles-filter, var(--map-tile-filter-light));
|
|
-webkit-filter: var(--map-tiles-filter, var(--map-tile-filter-light));
|
|
}
|
|
|
|
.leaflet-popup-content-wrapper,
|
|
.leaflet-popup-tip {
|
|
background: #fff;
|
|
color: #333;
|
|
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
#nodes {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.app-footer {
|
|
position: fixed;
|
|
inset-block-end: 0;
|
|
inset-inline: 0;
|
|
width: 100%;
|
|
background: #fafafa;
|
|
border-top: 1px solid #ddd;
|
|
font-size: 12px;
|
|
z-index: 4100;
|
|
}
|
|
|
|
.app-footer .footer-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
max-width: 960px;
|
|
padding: 6px var(--pad);
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.app-footer .footer-separator {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.app-footer .footer-links {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.app-footer .footer-brand {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.app-footer a {
|
|
color: inherit;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.app-footer .footer-content {
|
|
padding: 10px 12px;
|
|
justify-content: center;
|
|
gap: 4px 8px;
|
|
}
|
|
|
|
.app-footer .footer-links {
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.app-footer .footer-separator {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.info-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.45);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: var(--pad);
|
|
z-index: 13000;
|
|
}
|
|
|
|
.info-overlay[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.info-dialog {
|
|
background: #fff;
|
|
color: #111;
|
|
max-width: 420px;
|
|
width: min(100%, 420px);
|
|
border-radius: 12px;
|
|
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
|
|
position: relative;
|
|
padding: 20px 24px;
|
|
outline: none;
|
|
}
|
|
|
|
.info-dialog:focus {
|
|
outline: 2px solid #4a90e2;
|
|
outline-offset: 4px;
|
|
}
|
|
|
|
.info-close {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
padding: 4px;
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.info-close:hover {
|
|
background: rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.info-title {
|
|
margin: 0 0 8px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.info-intro {
|
|
margin: 0 0 12px;
|
|
font-size: 14px;
|
|
color: #444;
|
|
}
|
|
|
|
.info-details {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.info-details dt {
|
|
font-weight: 600;
|
|
margin-top: 12px;
|
|
color: #222;
|
|
}
|
|
|
|
.info-details dd {
|
|
margin: 4px 0 0;
|
|
}
|
|
|
|
.info-details dd a {
|
|
color: inherit;
|
|
word-break: break-word;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.row {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: var(--pad);
|
|
}
|
|
|
|
.site-title img {
|
|
width: 44px;
|
|
height: 44px;
|
|
}
|
|
|
|
.map-row {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.controls {
|
|
order: 2;
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto auto;
|
|
align-items: center;
|
|
width: 100%;
|
|
gap: 12px;
|
|
}
|
|
|
|
.controls .filter-input {
|
|
width: 100%;
|
|
}
|
|
|
|
.controls button {
|
|
justify-self: end;
|
|
}
|
|
|
|
.meta-info {
|
|
order: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.refresh-row {
|
|
grid-template-columns: 1fr;
|
|
row-gap: 8px;
|
|
}
|
|
|
|
.refresh-actions {
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 8px;
|
|
justify-self: start;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
#map {
|
|
order: 1;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 50vh;
|
|
}
|
|
|
|
.chat-panel {
|
|
order: 2;
|
|
flex: none;
|
|
max-width: 100%;
|
|
height: 30vh;
|
|
}
|
|
|
|
.legend {
|
|
max-width: min(240px, 80vw);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1679px) {
|
|
.nodes-col--node-id,
|
|
.nodes-col--frequency,
|
|
.nodes-col--modem-preset {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1559px) {
|
|
.nodes-col--temperature,
|
|
.nodes-col--humidity,
|
|
.nodes-col--pressure {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1319px) {
|
|
.nodes-col--latitude,
|
|
.nodes-col--longitude,
|
|
.nodes-col--last-position {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1109px) {
|
|
.nodes-col--voltage,
|
|
.nodes-col--air-util-tx,
|
|
.nodes-col--altitude {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 899px) {
|
|
.nodes-col--uptime,
|
|
.nodes-col--frequency,
|
|
.nodes-col--modem-preset {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 659px) {
|
|
.nodes-col--battery,
|
|
.nodes-col--channel-util,
|
|
.nodes-col--hw-model {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
body.dark {
|
|
background: #111;
|
|
color: #eee;
|
|
--map-tiles-filter: var(--map-tile-filter-dark);
|
|
}
|
|
|
|
body.dark .meta {
|
|
color: #bbb;
|
|
}
|
|
|
|
body.dark .refresh-info {
|
|
color: #bbb;
|
|
}
|
|
|
|
body.dark .pill {
|
|
background: #444;
|
|
}
|
|
|
|
body.dark #map {
|
|
border-color: #444;
|
|
}
|
|
|
|
body.dark .chat-panel {
|
|
border-color: #444;
|
|
background: #222;
|
|
color: #eee;
|
|
}
|
|
|
|
body.dark .chat-tablist {
|
|
border-bottom-color: rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
body.dark .chat-tab {
|
|
color: #ddd;
|
|
background: transparent;
|
|
border-color: transparent;
|
|
}
|
|
|
|
body.dark .chat-tab:is(:focus-visible, :hover) {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
body.dark .chat-tab.is-active {
|
|
background: #222;
|
|
color: var(--accent);
|
|
border-bottom-color: var(--accent);
|
|
}
|
|
|
|
body.dark .chat-empty {
|
|
color: #888;
|
|
}
|
|
|
|
body.dark th {
|
|
background: #222;
|
|
}
|
|
|
|
body.dark button:not(.chat-tab):not(.sort-button) {
|
|
background: #333;
|
|
border-color: #444;
|
|
color: #eee;
|
|
}
|
|
|
|
body.dark button:not(.chat-tab):not(.sort-button):hover {
|
|
background: #444;
|
|
}
|
|
|
|
body.dark .sort-button {
|
|
background: none;
|
|
border: none;
|
|
color: inherit;
|
|
}
|
|
|
|
body.dark .sort-header {
|
|
color: inherit;
|
|
}
|
|
|
|
body.dark .sort-button:hover {
|
|
background: none;
|
|
}
|
|
|
|
body.dark label {
|
|
color: #ddd;
|
|
}
|
|
|
|
body.dark .legend {
|
|
background: #333;
|
|
border-color: #444;
|
|
color: #eee;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
body.dark .legend-toggle-button {
|
|
background: #333;
|
|
border-color: #444;
|
|
color: #eee;
|
|
}
|
|
|
|
body.dark .legend-toggle-button:hover {
|
|
background: #444;
|
|
}
|
|
|
|
body.dark .legend-item:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
body.dark .legend-item[aria-pressed="true"] {
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
background: rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
body.dark .leaflet-popup-content-wrapper,
|
|
body.dark .leaflet-popup-tip {
|
|
background: #333;
|
|
color: #eee;
|
|
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
body.dark footer {
|
|
background: #222;
|
|
border-top-color: #444;
|
|
color: #eee;
|
|
}
|
|
|
|
body.dark a {
|
|
color: #9bd;
|
|
}
|
|
|
|
body.dark .chat-entry-node {
|
|
color: #777;
|
|
}
|
|
|
|
body.dark .chat-entry-msg {
|
|
color: #bbb;
|
|
}
|
|
|
|
body.dark .chat-entry-reply {
|
|
color: #999;
|
|
}
|
|
|
|
body.dark .short-name {
|
|
color: #555;
|
|
}
|
|
|
|
body.dark .chat-entry-date {
|
|
color: #bbb;
|
|
}
|
|
|
|
body.dark .info-overlay {
|
|
background: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
body.dark .info-dialog {
|
|
background: #1c1c1c;
|
|
color: #eee;
|
|
border: 1px solid #444;
|
|
}
|
|
|
|
body.dark .info-intro {
|
|
color: #bbb;
|
|
}
|
|
|
|
body.dark .info-details dt {
|
|
color: #ddd;
|
|
}
|
|
|
|
body.dark .info-close:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
body.dark .short-info-overlay {
|
|
background: #1c1c1c;
|
|
border-color: #444;
|
|
color: #eee;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
body.dark .short-info-overlay .short-info-close:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
#map .leaflet-tile-pane,
|
|
#map .leaflet-layer,
|
|
#map .leaflet-tile.map-tiles {
|
|
filter: var(--map-tiles-filter, var(--map-tile-filter-light));
|
|
-webkit-filter: var(--map-tiles-filter, var(--map-tile-filter-light));
|
|
}
|
|
|
|
body.dark #map .leaflet-tile-pane,
|
|
body.dark #map .leaflet-layer,
|
|
body.dark #map .leaflet-tile.map-tiles {
|
|
filter: var(--map-tiles-filter, var(--map-tile-filter-dark));
|
|
-webkit-filter: var(--map-tiles-filter, var(--map-tile-filter-dark));
|
|
}
|
|
|
|
/* ===========================
|
|
Federation Page Styles
|
|
=========================== */
|
|
|
|
.header-federation {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.federation-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
text-decoration: none;
|
|
padding: 4px 8px;
|
|
border-radius: 8px;
|
|
transition: background-color 160ms ease, transform 160ms ease;
|
|
}
|
|
|
|
.federation-link:hover {
|
|
background: var(--hover-bg, rgba(255, 255, 255, 0.1));
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.federation-page {
|
|
padding: 24px var(--pad) 48px;
|
|
max-width: none;
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.federation-page--full-width {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.federation-page__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
|
|
.federation-page__map-row {
|
|
width: 100%;
|
|
height: 400px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.federation-page__map-row .map-panel {
|
|
height: 100%;
|
|
}
|
|
|
|
.federation-page__map-row #map {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.instances-table-wrapper {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#instances {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
#instances th,
|
|
#instances td {
|
|
padding: 10px 12px;
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
#instances th {
|
|
font-weight: 600;
|
|
background: var(--table-header-bg, var(--surface));
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
#instances tbody tr:hover {
|
|
background: var(--hover-bg, rgba(255, 255, 255, 0.05));
|
|
}
|
|
|
|
#instances a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
}
|
|
|
|
#instances a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.instances-col--name {
|
|
min-width: 140px;
|
|
}
|
|
|
|
.instances-col--domain {
|
|
min-width: 180px;
|
|
}
|
|
|
|
.instances-col--contact {
|
|
min-width: 160px;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.instances-col--version {
|
|
min-width: 80px;
|
|
}
|
|
|
|
.instances-col--channel,
|
|
.instances-col--frequency {
|
|
min-width: 100px;
|
|
}
|
|
|
|
.instances-col--nodes {
|
|
min-width: 110px;
|
|
}
|
|
|
|
.instances-col--latitude,
|
|
.instances-col--longitude {
|
|
min-width: 100px;
|
|
}
|
|
|
|
.instances-col--last-update {
|
|
min-width: 90px;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.federation-page__map-row {
|
|
height: 300px;
|
|
}
|
|
|
|
.header-federation {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.federation-link {
|
|
align-self: flex-end;
|
|
}
|
|
}
|