mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 14:50:00 -07:00
Apply global map theme updates and UI improvements
This commit is contained in:
@@ -7,9 +7,10 @@
|
||||
gap: 10px;
|
||||
padding: 8px 14px;
|
||||
margin: 6px 12px 0;
|
||||
border: 1px solid var(--border-color, #1e2d3d);
|
||||
border: 1px solid rgba(74, 163, 255, 0.32);
|
||||
border-radius: 8px;
|
||||
background: linear-gradient(180deg, rgba(17, 26, 37, 0.95), rgba(13, 20, 30, 0.95));
|
||||
background: linear-gradient(180deg, rgba(19, 30, 44, 0.96), rgba(11, 18, 28, 0.97));
|
||||
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
}
|
||||
|
||||
.run-state-left {
|
||||
@@ -41,8 +42,8 @@
|
||||
gap: 6px;
|
||||
padding: 3px 7px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid var(--border-color, #1e2d3d);
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
border: 1px solid rgba(74, 163, 255, 0.25);
|
||||
background: linear-gradient(180deg, rgba(17, 26, 38, 0.82), rgba(12, 18, 28, 0.84));
|
||||
font-size: 10px;
|
||||
color: var(--text-secondary, #b1c2d4);
|
||||
white-space: nowrap;
|
||||
@@ -58,12 +59,13 @@
|
||||
|
||||
.run-state-chip.running .dot {
|
||||
background: var(--accent-green, #28c27a);
|
||||
box-shadow: 0 0 0 4px rgba(40, 194, 122, 0.15);
|
||||
box-shadow: 0 0 0 4px rgba(40, 194, 122, 0.16), 0 0 12px rgba(40, 194, 122, 0.35);
|
||||
}
|
||||
|
||||
.run-state-chip.active {
|
||||
border-color: rgba(74, 163, 255, 0.55);
|
||||
border-color: rgba(74, 163, 255, 0.65);
|
||||
color: var(--text-primary, #e6edf5);
|
||||
box-shadow: inset 0 0 0 1px rgba(74, 163, 255, 0.18);
|
||||
}
|
||||
|
||||
.run-state-right {
|
||||
@@ -78,17 +80,20 @@
|
||||
}
|
||||
|
||||
.run-state-btn {
|
||||
background: transparent;
|
||||
background: linear-gradient(180deg, rgba(17, 27, 41, 0.9), rgba(10, 16, 25, 0.92));
|
||||
color: var(--accent-cyan, #4aa3ff);
|
||||
border: 1px solid rgba(74, 163, 255, 0.45);
|
||||
border-radius: 6px;
|
||||
font-size: 10px;
|
||||
padding: 4px 8px;
|
||||
cursor: pointer;
|
||||
transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
|
||||
}
|
||||
|
||||
.run-state-btn:hover {
|
||||
background: rgba(74, 163, 255, 0.12);
|
||||
background: rgba(74, 163, 255, 0.14);
|
||||
border-color: rgba(74, 163, 255, 0.7);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.command-palette-overlay {
|
||||
@@ -109,10 +114,10 @@
|
||||
|
||||
.command-palette {
|
||||
width: min(760px, 100%);
|
||||
border: 1px solid var(--border-color, #1e2d3d);
|
||||
border: 1px solid rgba(74, 163, 255, 0.32);
|
||||
border-radius: 12px;
|
||||
background: #0f1823;
|
||||
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
|
||||
background: linear-gradient(180deg, rgba(16, 26, 39, 0.98), rgba(10, 17, 27, 0.98));
|
||||
box-shadow: 0 26px 60px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
@@ -28,14 +28,16 @@ body {
|
||||
color: var(--text-primary);
|
||||
background-color: var(--bg-primary);
|
||||
background-image:
|
||||
radial-gradient(1200px 620px at 8% -12%, var(--ambient-top-left), transparent 62%),
|
||||
radial-gradient(980px 560px at 92% -16%, var(--ambient-top-right), transparent 64%),
|
||||
radial-gradient(900px 520px at 50% 126%, var(--ambient-bottom), transparent 68%),
|
||||
var(--noise-image),
|
||||
radial-gradient(circle at 15% 0%, var(--grid-dot), transparent 45%),
|
||||
linear-gradient(180deg, var(--grid-dot), transparent 35%),
|
||||
linear-gradient(var(--grid-line) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
|
||||
background-size: 40px 40px, auto, auto, 48px 48px, 48px 48px;
|
||||
background-size: auto, auto, auto, 40px 40px, 48px 48px, 48px 48px;
|
||||
background-attachment: fixed;
|
||||
min-height: 100vh;
|
||||
font-variant-numeric: tabular-nums;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
@@ -123,11 +123,12 @@
|
||||
CARDS / PANELS
|
||||
============================================ */
|
||||
.card {
|
||||
background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
|
||||
border: 1px solid var(--border-color);
|
||||
background: var(--surface-panel-gradient);
|
||||
border: 1px solid rgba(74, 163, 255, 0.24);
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow-sm);
|
||||
box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
.card-header {
|
||||
@@ -135,8 +136,8 @@
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--space-3) var(--space-4);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
background: var(--bg-secondary);
|
||||
border-bottom: 1px solid rgba(74, 163, 255, 0.18);
|
||||
background: linear-gradient(180deg, rgba(25, 38, 55, 0.88) 0%, rgba(17, 27, 40, 0.9) 100%);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
@@ -160,11 +161,12 @@
|
||||
|
||||
/* Panel variant (used in dashboards) */
|
||||
.panel {
|
||||
background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
|
||||
border: 1px solid var(--border-color);
|
||||
background: var(--surface-panel-gradient);
|
||||
border: 1px solid rgba(74, 163, 255, 0.24);
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow-sm);
|
||||
box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
@supports (clip-path: polygon(0 0)) {
|
||||
@@ -190,8 +192,8 @@
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--space-2) var(--space-3);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-secondary) 100%);
|
||||
border-bottom: 1px solid rgba(74, 163, 255, 0.18);
|
||||
background: linear-gradient(180deg, rgba(25, 38, 55, 0.88) 0%, rgba(17, 27, 40, 0.9) 100%);
|
||||
font-size: var(--text-xs);
|
||||
font-weight: var(--font-semibold);
|
||||
text-transform: uppercase;
|
||||
@@ -720,10 +722,23 @@
|
||||
transform var(--transition-base);
|
||||
}
|
||||
|
||||
.card:hover,
|
||||
.panel:hover {
|
||||
border-color: var(--border-light);
|
||||
}
|
||||
.card:hover,
|
||||
.panel:hover {
|
||||
border-color: var(--border-glow);
|
||||
box-shadow: var(--shadow-md), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
[data-theme="light"] .card,
|
||||
[data-theme="light"] .panel {
|
||||
border-color: rgba(31, 95, 168, 0.24);
|
||||
}
|
||||
|
||||
[data-theme="light"] .card-header,
|
||||
[data-theme="light"] .panel-header {
|
||||
border-bottom-color: rgba(31, 95, 168, 0.2);
|
||||
background: linear-gradient(180deg, rgba(243, 247, 252, 0.96) 0%, rgba(233, 239, 247, 0.95) 100%);
|
||||
}
|
||||
|
||||
/* Stats strip value highlight on hover */
|
||||
.strip-stat {
|
||||
|
||||
@@ -16,6 +16,11 @@
|
||||
--bg-card: #121a25;
|
||||
--bg-elevated: #1b2734;
|
||||
--bg-overlay: rgba(8, 13, 20, 0.75);
|
||||
--surface-glass: rgba(16, 25, 37, 0.82);
|
||||
--surface-panel-gradient: linear-gradient(160deg, rgba(20, 32, 47, 0.94) 0%, rgba(11, 18, 27, 0.96) 100%);
|
||||
--ambient-top-left: rgba(74, 163, 255, 0.14);
|
||||
--ambient-top-right: rgba(56, 193, 128, 0.09);
|
||||
--ambient-bottom: rgba(214, 168, 94, 0.06);
|
||||
|
||||
/* Background aliases for components */
|
||||
--bg-dark: var(--bg-primary);
|
||||
@@ -158,6 +163,11 @@
|
||||
--bg-card: #ffffff;
|
||||
--bg-elevated: #f1f4f9;
|
||||
--bg-overlay: rgba(244, 247, 251, 0.92);
|
||||
--surface-glass: rgba(255, 255, 255, 0.84);
|
||||
--surface-panel-gradient: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 251, 0.97) 100%);
|
||||
--ambient-top-left: rgba(31, 95, 168, 0.1);
|
||||
--ambient-top-right: rgba(31, 138, 87, 0.06);
|
||||
--ambient-bottom: rgba(181, 134, 58, 0.05);
|
||||
|
||||
/* Background aliases for components */
|
||||
--bg-dark: var(--bg-primary);
|
||||
|
||||
@@ -5115,6 +5115,46 @@ header h1 .tagline {
|
||||
padding: 4px 4px 0 42px;
|
||||
}
|
||||
|
||||
/* Locate action on Bluetooth device rows (must be in index.css so it styles in scanner mode) */
|
||||
.bt-row-actions .bt-locate-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
min-height: 28px;
|
||||
padding: 5px 10px;
|
||||
font-size: 10px;
|
||||
line-height: 1;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.07em;
|
||||
color: var(--accent-green, #38c180);
|
||||
background: linear-gradient(180deg, rgba(56, 193, 128, 0.2), rgba(56, 193, 128, 0.12));
|
||||
border: 1px solid rgba(56, 193, 128, 0.42);
|
||||
border-radius: 999px;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
|
||||
}
|
||||
|
||||
.bt-row-actions .bt-locate-btn:hover {
|
||||
background: linear-gradient(180deg, rgba(56, 193, 128, 0.28), rgba(56, 193, 128, 0.18));
|
||||
border-color: rgba(56, 193, 128, 0.72);
|
||||
box-shadow: 0 0 0 1px rgba(56, 193, 128, 0.2), 0 6px 16px rgba(20, 80, 54, 0.35);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.bt-row-actions .bt-locate-btn:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.bt-row-actions .bt-locate-btn svg {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
stroke: currentColor;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.bt-device-filter-state {
|
||||
margin-top: 8px;
|
||||
}
|
||||
@@ -7084,3 +7124,256 @@ body::before {
|
||||
[data-animations="off"] .welcome-logo {
|
||||
animation: none !important;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
VISUAL REFRESH OVERRIDES
|
||||
============================================ */
|
||||
|
||||
:root {
|
||||
--visual-surface-soft: linear-gradient(180deg, rgba(18, 28, 40, 0.9) 0%, rgba(10, 16, 24, 0.95) 100%);
|
||||
--visual-surface-panel: linear-gradient(160deg, rgba(20, 33, 48, 0.95) 0%, rgba(11, 18, 27, 0.96) 100%);
|
||||
--visual-edge-cyan: rgba(74, 163, 255, 0.34);
|
||||
--visual-edge-green: rgba(56, 193, 128, 0.28);
|
||||
--visual-glow-soft: 0 14px 30px rgba(0, 0, 0, 0.32);
|
||||
--visual-glow-cyan: 0 0 24px rgba(74, 163, 255, 0.16);
|
||||
--mode-ambient-left: rgba(74, 163, 255, 0.12);
|
||||
--mode-ambient-right: rgba(56, 193, 128, 0.08);
|
||||
--mode-ambient-bottom: rgba(214, 168, 94, 0.05);
|
||||
--top-rail-gutter: 12px;
|
||||
--top-rail-gap: 6px;
|
||||
--top-rail-height: 44px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image:
|
||||
radial-gradient(1200px 560px at 8% -10%, var(--mode-ambient-left), transparent 60%),
|
||||
radial-gradient(900px 520px at 92% -18%, var(--mode-ambient-right), transparent 60%),
|
||||
radial-gradient(800px 440px at 50% 130%, var(--mode-ambient-bottom), transparent 65%),
|
||||
var(--noise-image),
|
||||
linear-gradient(var(--grid-line) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
|
||||
background-size: auto, auto, auto, 40px 40px, 48px 48px, 48px 48px;
|
||||
}
|
||||
|
||||
body[data-mode="wifi"],
|
||||
body[data-mode="bluetooth"],
|
||||
body[data-mode="bt_locate"] {
|
||||
--mode-ambient-left: rgba(56, 193, 128, 0.14);
|
||||
--mode-ambient-right: rgba(74, 163, 255, 0.08);
|
||||
}
|
||||
|
||||
body[data-mode="satellite"],
|
||||
body[data-mode="weathersat"],
|
||||
body[data-mode="sstv"],
|
||||
body[data-mode="sstv_general"] {
|
||||
--mode-ambient-left: rgba(74, 163, 255, 0.14);
|
||||
--mode-ambient-right: rgba(143, 123, 214, 0.09);
|
||||
--mode-ambient-bottom: rgba(56, 193, 128, 0.05);
|
||||
}
|
||||
|
||||
body[data-mode="analytics"],
|
||||
body[data-mode="spystations"],
|
||||
body[data-mode="tscm"] {
|
||||
--mode-ambient-left: rgba(214, 168, 94, 0.12);
|
||||
--mode-ambient-right: rgba(74, 163, 255, 0.08);
|
||||
}
|
||||
|
||||
[data-theme="light"] body {
|
||||
--mode-ambient-left: rgba(31, 95, 168, 0.09);
|
||||
--mode-ambient-right: rgba(31, 138, 87, 0.05);
|
||||
--mode-ambient-bottom: rgba(181, 134, 58, 0.04);
|
||||
}
|
||||
|
||||
.mode-nav {
|
||||
background: linear-gradient(180deg, rgba(22, 33, 48, 0.96) 0%, rgba(14, 22, 33, 0.98) 100%);
|
||||
border-bottom-color: rgba(74, 163, 255, 0.24);
|
||||
}
|
||||
|
||||
#mainNav.mode-nav {
|
||||
margin: var(--top-rail-gap) var(--top-rail-gutter) 0;
|
||||
padding: 0 12px;
|
||||
min-height: var(--top-rail-height);
|
||||
height: var(--top-rail-height);
|
||||
border: 1px solid rgba(74, 163, 255, 0.22);
|
||||
border-radius: 10px;
|
||||
box-shadow: var(--visual-glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.03);
|
||||
}
|
||||
|
||||
.run-state-strip {
|
||||
margin: 8px var(--top-rail-gutter) 0;
|
||||
border-color: rgba(74, 163, 255, 0.3);
|
||||
background: linear-gradient(180deg, rgba(20, 31, 44, 0.96) 0%, rgba(12, 19, 29, 0.97) 100%);
|
||||
box-shadow: var(--visual-glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
||||
min-height: var(--top-rail-height);
|
||||
padding: 6px 12px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.run-state-strip .run-state-chip {
|
||||
min-height: 22px;
|
||||
padding: 2px 8px;
|
||||
}
|
||||
|
||||
.run-state-strip .run-state-btn {
|
||||
min-height: 26px;
|
||||
padding: 4px 10px;
|
||||
}
|
||||
|
||||
.run-state-strip .run-state-right {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
margin: 0 12px;
|
||||
border: 1px solid rgba(74, 163, 255, 0.22);
|
||||
border-radius: 10px;
|
||||
box-shadow: var(--visual-glow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
|
||||
backdrop-filter: blur(6px);
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background: var(--visual-surface-soft);
|
||||
border-right-color: rgba(74, 163, 255, 0.22);
|
||||
}
|
||||
|
||||
.section {
|
||||
background: var(--visual-surface-panel);
|
||||
border-color: rgba(74, 163, 255, 0.22);
|
||||
border-radius: 8px;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
|
||||
transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
|
||||
}
|
||||
|
||||
.section:hover {
|
||||
border-color: var(--visual-edge-cyan);
|
||||
box-shadow: var(--visual-glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
background: linear-gradient(180deg, rgba(28, 44, 63, 0.88) 0%, rgba(20, 31, 44, 0.9) 100%);
|
||||
border-bottom-color: rgba(74, 163, 255, 0.2);
|
||||
}
|
||||
|
||||
.section h3::before {
|
||||
background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
|
||||
}
|
||||
|
||||
.section h3::after {
|
||||
background: rgba(12, 18, 28, 0.9);
|
||||
border: 1px solid rgba(74, 163, 255, 0.24);
|
||||
}
|
||||
|
||||
.form-group input,
|
||||
.form-group select {
|
||||
background: rgba(8, 13, 20, 0.72);
|
||||
border-color: rgba(74, 163, 255, 0.2);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.preset-btn,
|
||||
.control-btn,
|
||||
.clear-btn,
|
||||
.run-btn,
|
||||
.stop-btn {
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.preset-btn,
|
||||
.control-btn,
|
||||
.clear-btn {
|
||||
border-color: rgba(74, 163, 255, 0.24);
|
||||
background: linear-gradient(180deg, rgba(16, 24, 35, 0.88) 0%, rgba(10, 15, 24, 0.9) 100%);
|
||||
}
|
||||
|
||||
.output-panel {
|
||||
background: linear-gradient(180deg, rgba(8, 13, 19, 0.98) 0%, rgba(7, 11, 18, 0.99) 100%);
|
||||
}
|
||||
|
||||
.output-header {
|
||||
background: linear-gradient(180deg, rgba(18, 28, 42, 0.95) 0%, rgba(13, 21, 31, 0.98) 100%);
|
||||
border-bottom-color: rgba(74, 163, 255, 0.22);
|
||||
}
|
||||
|
||||
.output-content {
|
||||
background: linear-gradient(180deg, rgba(8, 13, 19, 0.6) 0%, rgba(8, 13, 19, 0.9) 100%);
|
||||
}
|
||||
|
||||
.stats > div {
|
||||
border-color: rgba(74, 163, 255, 0.2);
|
||||
background: linear-gradient(180deg, rgba(19, 28, 40, 0.8) 0%, rgba(12, 18, 27, 0.82) 100%);
|
||||
}
|
||||
|
||||
.message {
|
||||
border-color: rgba(74, 163, 255, 0.26);
|
||||
border-left-width: 4px;
|
||||
border-radius: 8px;
|
||||
background: linear-gradient(180deg, rgba(21, 31, 44, 0.8) 0%, rgba(15, 23, 33, 0.82) 100%);
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
.status-bar {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
z-index: 9;
|
||||
border-top-color: rgba(74, 163, 255, 0.24);
|
||||
background: linear-gradient(180deg, rgba(17, 26, 39, 0.96) 0%, rgba(10, 16, 24, 0.97) 100%);
|
||||
backdrop-filter: blur(7px);
|
||||
}
|
||||
|
||||
.status-indicator,
|
||||
.control-group {
|
||||
border-color: rgba(74, 163, 255, 0.2);
|
||||
background: linear-gradient(180deg, rgba(15, 23, 34, 0.78) 0%, rgba(9, 14, 23, 0.8) 100%);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.status-dot.running {
|
||||
box-shadow: 0 0 0 4px rgba(56, 193, 128, 0.15), 0 0 14px rgba(56, 193, 128, 0.4);
|
||||
}
|
||||
|
||||
.mode-content.active {
|
||||
animation: modePanelEntrance 220ms ease both;
|
||||
}
|
||||
|
||||
@keyframes modePanelEntrance {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(5px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
[data-theme="light"] .run-state-strip,
|
||||
[data-theme="light"] .main-content,
|
||||
[data-theme="light"] .section,
|
||||
[data-theme="light"] #mainNav.mode-nav,
|
||||
[data-theme="light"] .output-header,
|
||||
[data-theme="light"] .status-bar,
|
||||
[data-theme="light"] .status-indicator,
|
||||
[data-theme="light"] .control-group {
|
||||
box-shadow: 0 10px 24px rgba(18, 40, 66, 0.08);
|
||||
}
|
||||
|
||||
[data-theme="light"] .section,
|
||||
[data-theme="light"] .stats > div,
|
||||
[data-theme="light"] .message,
|
||||
[data-theme="light"] .preset-btn,
|
||||
[data-theme="light"] .control-btn,
|
||||
[data-theme="light"] .clear-btn {
|
||||
border-color: rgba(31, 95, 168, 0.26);
|
||||
}
|
||||
|
||||
[data-animations="off"] .mode-content.active {
|
||||
animation: none !important;
|
||||
}
|
||||
|
||||
@media (max-width: 1023px) {
|
||||
.run-state-strip {
|
||||
margin-left: 8px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -510,8 +510,24 @@
|
||||
}
|
||||
|
||||
.wxsat-ground-map {
|
||||
position: relative;
|
||||
height: 200px;
|
||||
background: var(--bg-primary, #0d1117);
|
||||
overflow: hidden;
|
||||
background: linear-gradient(180deg, #061329 0%, #050d1a 54%, #061325 100%);
|
||||
}
|
||||
|
||||
.wxsat-ground-map .leaflet-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
|
||||
}
|
||||
|
||||
.leaflet-container.map-theme-cyber .leaflet-overlay-pane path.wxsat-pass-track {
|
||||
filter: drop-shadow(0 0 5px rgba(91, 240, 255, 0.35));
|
||||
}
|
||||
|
||||
.leaflet-container.map-theme-cyber .leaflet-overlay-pane path.wxsat-pass-track.lrpt {
|
||||
filter: drop-shadow(0 0 6px rgba(0, 255, 190, 0.35));
|
||||
}
|
||||
|
||||
.wxsat-crosshair-icon {
|
||||
@@ -521,8 +537,8 @@
|
||||
|
||||
.wxsat-crosshair-marker {
|
||||
position: relative;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.wxsat-crosshair-h,
|
||||
@@ -538,7 +554,7 @@
|
||||
left: 2px;
|
||||
right: 2px;
|
||||
height: 1px;
|
||||
background: rgba(255, 76, 76, 0.9);
|
||||
background: rgba(255, 93, 93, 0.95);
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
@@ -547,26 +563,41 @@
|
||||
top: 2px;
|
||||
bottom: 2px;
|
||||
width: 1px;
|
||||
background: rgba(255, 76, 76, 0.9);
|
||||
background: rgba(255, 93, 93, 0.95);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.wxsat-crosshair-ring {
|
||||
inset: 5px;
|
||||
border: 1px solid rgba(255, 76, 76, 0.95);
|
||||
inset: 6px;
|
||||
border: 1.5px solid rgba(255, 93, 93, 0.95);
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 8px rgba(255, 76, 76, 0.45);
|
||||
box-shadow: 0 0 10px rgba(255, 93, 93, 0.55);
|
||||
}
|
||||
|
||||
.wxsat-crosshair-dot {
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
border-radius: 50%;
|
||||
background: #ff4c4c;
|
||||
background: #ffa0a0;
|
||||
box-shadow: 0 0 6px rgba(255, 100, 100, 0.65);
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.wxsat-map-tooltip {
|
||||
background: rgba(5, 15, 32, 0.92);
|
||||
border: 1px solid rgba(102, 229, 255, 0.65);
|
||||
border-radius: 4px;
|
||||
color: #8fe8ff;
|
||||
box-shadow: 0 0 12px rgba(0, 210, 255, 0.24);
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.25px;
|
||||
}
|
||||
|
||||
.wxsat-map-tooltip.leaflet-tooltip-top:before {
|
||||
border-top-color: rgba(102, 229, 255, 0.65);
|
||||
}
|
||||
|
||||
/* ===== Image Gallery Panel ===== */
|
||||
.wxsat-gallery-panel {
|
||||
|
||||
@@ -479,6 +479,54 @@
|
||||
filter: sepia(0.35) hue-rotate(185deg) saturate(1.75) brightness(1.06) contrast(1.05);
|
||||
}
|
||||
|
||||
/* Global Leaflet map theme: cyber overlay */
|
||||
.leaflet-container.map-theme-cyber {
|
||||
position: relative;
|
||||
background: #020813;
|
||||
isolation: isolate;
|
||||
}
|
||||
|
||||
.leaflet-container.map-theme-cyber .leaflet-tile-pane {
|
||||
filter: sepia(0.74) hue-rotate(176deg) saturate(1.72) brightness(1.05) contrast(1.08);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Hard global fallback: enforce cyber tint on all Leaflet tile images */
|
||||
html.map-cyber-enabled .leaflet-container .leaflet-tile {
|
||||
filter: sepia(0.74) hue-rotate(176deg) saturate(1.72) brightness(1.05) contrast(1.08) !important;
|
||||
}
|
||||
|
||||
/* Hard global fallback: cyber glow + grid overlay */
|
||||
html.map-cyber-enabled .leaflet-container {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
}
|
||||
|
||||
html.map-cyber-enabled .leaflet-container::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
z-index: 620;
|
||||
background:
|
||||
radial-gradient(95% 78% at 50% 44%, rgba(18, 170, 255, 0.17), rgba(18, 170, 255, 0) 64%),
|
||||
linear-gradient(180deg, rgba(24, 118, 255, 0.045), rgba(24, 118, 255, 0));
|
||||
}
|
||||
|
||||
html.map-cyber-enabled .leaflet-container::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
z-index: 621;
|
||||
opacity: 0.42;
|
||||
mix-blend-mode: screen;
|
||||
background-image:
|
||||
linear-gradient(rgba(78, 188, 255, 0.14) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(78, 188, 255, 0.14) 1px, transparent 1px);
|
||||
background-size: 52px 52px, 52px 52px;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 960px) {
|
||||
.settings-tabs {
|
||||
|
||||
Reference in New Issue
Block a user