-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathstatus_strip.css
More file actions
105 lines (91 loc) · 2.31 KB
/
Copy pathstatus_strip.css
File metadata and controls
105 lines (91 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* Operator status footer — console-style telemetry in panel chrome. */
.status-strip {
display: flex;
align-items: baseline;
flex-wrap: wrap;
gap: 0.35rem;
margin-top: 1.25rem;
padding: 0.5rem 0.75rem;
border-radius: var(--radius-sm);
border: 1px solid rgba(255, 255, 255, 0.04);
background: rgba(6, 182, 212, 0.03);
font-family: var(--font-mono);
font-size: 0.68rem;
letter-spacing: 0.04em;
color: var(--text-muted);
}
.status-strip__label {
color: var(--text-secondary);
font-weight: 600;
letter-spacing: 0.1em;
font-size: 0.62rem;
}
.status-strip__sep {
opacity: 0.35;
}
.status-strip__items {
color: var(--accent-cyan);
text-shadow: 0 0 6px rgba(6, 182, 212, 0.12);
}
.status-strip__updated {
color: var(--text-muted);
font-style: italic;
}
.status-strip--quiet .status-strip__items {
color: var(--text-muted);
text-shadow: none;
font-style: italic;
}
.map-topology-hint {
position: absolute;
left: 50%;
bottom: 2.75rem;
transform: translateX(-50%);
z-index: 800;
max-width: min(92%, 28rem);
padding: 0.45rem 0.75rem;
border-radius: var(--radius-sm);
border: 1px solid rgba(245, 158, 11, 0.35);
background: rgba(15, 23, 42, 0.92);
color: var(--accent-amber);
font-family: var(--font-mono);
font-size: 0.68rem;
letter-spacing: 0.03em;
text-align: center;
pointer-events: none;
box-shadow: var(--glow-amber);
}
.mqtt-runtime {
margin: 0 0 1rem;
padding: 0.55rem 0.75rem;
border-radius: var(--radius-sm);
border: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(0, 229, 160, 0.04);
font-family: var(--font-mono);
font-size: 0.68rem;
letter-spacing: 0.03em;
color: var(--text-muted);
}
.mqtt-runtime--offline {
background: rgba(239, 68, 68, 0.06);
border-color: rgba(239, 68, 68, 0.25);
}
.mqtt-runtime--disabled {
background: rgba(100, 116, 139, 0.08);
}
.mqtt-runtime__label {
color: var(--text-secondary);
font-weight: 600;
letter-spacing: 0.1em;
font-size: 0.62rem;
margin-right: 0.35rem;
}
.mqtt-runtime__state {
color: var(--accent-green);
}
.mqtt-runtime--offline .mqtt-runtime__state {
color: var(--accent-red);
}
.mqtt-runtime--disabled .mqtt-runtime__state {
color: var(--text-muted);
}