-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (91 loc) · 1.73 KB
/
Copy pathstyles.css
File metadata and controls
100 lines (91 loc) · 1.73 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
.galaxy-graph-view-container {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
background: #04050a;
}
.galaxy-graph-canvas {
display: block;
width: 100%;
height: 100%;
outline: none;
}
.galaxy-graph-css2d-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
.galaxy-graph-label {
color: var(--text-normal, #e8e8ef);
font-size: 11px;
line-height: 1.1;
pointer-events: none;
text-shadow: 0 0 4px #000, 0 0 2px #000;
white-space: nowrap;
transform: translate(-50%, -160%);
user-select: none;
}
.galaxy-graph-overlay {
position: absolute;
top: 8px;
left: 8px;
right: 8px;
z-index: 10;
display: flex;
align-items: center;
gap: 8px;
pointer-events: none;
}
.galaxy-graph-search {
pointer-events: auto;
width: 220px;
max-width: 50%;
}
.galaxy-graph-banner {
pointer-events: none;
font-size: 11px;
color: var(--text-muted, #aaa);
background: rgba(0, 0, 0, 0.45);
padding: 3px 8px;
border-radius: 6px;
}
.galaxy-graph-status {
position: absolute;
bottom: 8px;
left: 8px;
z-index: 10;
font-size: 11px;
color: var(--text-muted, #aaa);
background: rgba(0, 0, 0, 0.4);
padding: 2px 8px;
border-radius: 6px;
pointer-events: none;
}
.galaxy-graph-loading {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 20;
color: var(--text-muted, #ccc);
font-size: 13px;
background: rgba(4, 5, 10, 0.6);
}
.galaxy-graph-paused {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 20;
color: var(--text-muted, #ccc);
font-size: 13px;
text-align: center;
padding: 20px;
}