@deephaven/js-plugin-plotly-express 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/PlotlyExpressChart.d.ts +5 -0
- package/dist/PlotlyExpressChart.d.ts.map +1 -0
- package/dist/PlotlyExpressChart.js +36 -0
- package/dist/PlotlyExpressChart.js.map +1 -0
- package/dist/PlotlyExpressChartModel.d.ts +49 -13
- package/dist/PlotlyExpressChartModel.d.ts.map +1 -1
- package/dist/PlotlyExpressChartModel.js +193 -63
- package/dist/PlotlyExpressChartModel.js.map +1 -1
- package/dist/PlotlyExpressChartPanel.d.ts +2 -9
- package/dist/PlotlyExpressChartPanel.d.ts.map +1 -1
- package/dist/PlotlyExpressChartPanel.js +9 -45
- package/dist/PlotlyExpressChartPanel.js.map +1 -1
- package/dist/PlotlyExpressChartUtils.d.ts +17 -18
- package/dist/PlotlyExpressChartUtils.d.ts.map +1 -1
- package/dist/PlotlyExpressChartUtils.js +7 -10
- package/dist/PlotlyExpressChartUtils.js.map +1 -1
- package/dist/PlotlyExpressPlugin.d.ts +4 -0
- package/dist/PlotlyExpressPlugin.d.ts.map +1 -0
- package/dist/PlotlyExpressPlugin.js +14 -0
- package/dist/PlotlyExpressPlugin.js.map +1 -0
- package/dist/bundle/index.js +81785 -80929
- package/dist/bundle/style.css +639 -1063
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/useHandleSceneTicks.d.ts +4 -0
- package/dist/useHandleSceneTicks.d.ts.map +1 -0
- package/dist/useHandleSceneTicks.js +36 -0
- package/dist/useHandleSceneTicks.js.map +1 -0
- package/package.json +13 -11
- package/dist/DashboardPlugin.d.ts +0 -5
- package/dist/DashboardPlugin.d.ts.map +0 -1
- package/dist/DashboardPlugin.js +0 -39
- package/dist/DashboardPlugin.js.map +0 -1
package/dist/bundle/style.css
CHANGED
|
@@ -1,614 +1,701 @@
|
|
|
1
|
-
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
2
3
|
|
|
3
|
-
/*# sourceMappingURL=
|
|
4
|
-
.
|
|
5
|
-
position:
|
|
4
|
+
/*# sourceMappingURL=ThemeExport.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
5
|
+
.popper-container {
|
|
6
|
+
position: absolute;
|
|
7
|
+
z-index: 5000;
|
|
6
8
|
}
|
|
7
9
|
|
|
8
|
-
.
|
|
9
|
-
|
|
10
|
+
.popper {
|
|
11
|
+
background: #403e41;
|
|
12
|
+
color: #f0f0ee;
|
|
13
|
+
border-radius: 4px;
|
|
14
|
+
transition: visibility 0.15s, opacity 0.15s;
|
|
15
|
+
pointer-events: none;
|
|
16
|
+
outline: 0;
|
|
10
17
|
}
|
|
11
|
-
|
|
12
|
-
.lm_content {
|
|
13
|
-
overflow: hidden;
|
|
18
|
+
.popper .popper-content {
|
|
14
19
|
position: relative;
|
|
15
|
-
|
|
20
|
+
box-shadow: 0 0.1rem 1.5rem 0.25rem rgba(26, 23, 26, 0.45);
|
|
16
21
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
.
|
|
20
|
-
cursor: grabbing !important;
|
|
21
|
-
user-select: none;
|
|
22
|
+
.popper .popper-content .tooltip-content {
|
|
23
|
+
text-align: center;
|
|
24
|
+
padding: 0.25rem 0.5rem;
|
|
22
25
|
}
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
.popper .popper-arrow {
|
|
27
|
+
width: 0;
|
|
28
|
+
height: 0;
|
|
29
|
+
border-style: solid;
|
|
25
30
|
position: absolute;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
z-index: 40;
|
|
31
|
+
margin: 5px;
|
|
32
|
+
border-color: #403e41;
|
|
29
33
|
}
|
|
30
34
|
|
|
31
|
-
.
|
|
32
|
-
|
|
35
|
+
.popper.interactive {
|
|
36
|
+
pointer-events: auto;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
|
-
.
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
.lm_splitter:hover, .lm_splitter.lm_dragging {
|
|
40
|
-
background: orange;
|
|
39
|
+
.popper-transition-enter {
|
|
40
|
+
opacity: 0;
|
|
41
|
+
transition: none;
|
|
41
42
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
|
|
44
|
+
.popper-transition-exit {
|
|
45
|
+
opacity: 0;
|
|
46
|
+
transition: all 0.15s;
|
|
46
47
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
|
|
49
|
+
.popper-container[x-placement^=top] > .popper-transition-enter,
|
|
50
|
+
.popper-container[x-placement^=top] > .popper-transition-exit {
|
|
51
|
+
transform: scale(0.92) translate(0, 10px);
|
|
50
52
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
|
|
54
|
+
.popper-container[x-placement^=right] > .popper-transition-enter,
|
|
55
|
+
.popper-container[x-placement^=right] > .popper-transition-exit {
|
|
56
|
+
transform: scale(0.92) translate(-10px, 0);
|
|
55
57
|
}
|
|
56
58
|
|
|
57
|
-
.
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
max-width: 100%;
|
|
61
|
-
z-index: 12;
|
|
62
|
-
position: relative;
|
|
63
|
-
overflow: hidden;
|
|
59
|
+
.popper-container[x-placement^=bottom] > .popper-transition-enter,
|
|
60
|
+
.popper-container[x-placement^=bottom] > .popper-transition-exit {
|
|
61
|
+
transform: scale(0.92) translate(0, -10px);
|
|
64
62
|
}
|
|
65
|
-
|
|
66
|
-
|
|
63
|
+
|
|
64
|
+
.popper-container[x-placement^=left] > .popper-transition-enter,
|
|
65
|
+
.popper-container[x-placement^=left] > .popper-transition-exit {
|
|
66
|
+
transform: scale(0.92) translate(10px, 0);
|
|
67
67
|
}
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
|
|
69
|
+
.popper-container[x-placement^=top] > .popper-transition-enter-active.popper,
|
|
70
|
+
.popper-container[x-placement^=right] > .popper-transition-enter-active.popper,
|
|
71
|
+
.popper-container[x-placement^=bottom] > .popper-transition-enter-active.popper,
|
|
72
|
+
.popper-container[x-placement^=left] > .popper-transition-enter-active.popper {
|
|
73
|
+
opacity: 1;
|
|
74
|
+
transform: none;
|
|
75
|
+
transition: all 0.15s ease-out;
|
|
70
76
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
77
|
+
|
|
78
|
+
.popper-container[x-placement^=top] > .popper {
|
|
79
|
+
margin-bottom: 5px;
|
|
74
80
|
}
|
|
75
|
-
.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
+
.popper-container[x-placement^=top] > .popper .popper-arrow {
|
|
82
|
+
border-width: 5px 5px 0 5px;
|
|
83
|
+
border-left-color: transparent;
|
|
84
|
+
border-right-color: transparent;
|
|
85
|
+
border-bottom-color: transparent;
|
|
86
|
+
bottom: -5px;
|
|
87
|
+
margin-top: 0;
|
|
88
|
+
margin-bottom: 0;
|
|
81
89
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
90
|
+
|
|
91
|
+
.popper-container[x-placement^=bottom] > .popper {
|
|
92
|
+
margin-top: 5px;
|
|
85
93
|
}
|
|
86
|
-
.
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
94
|
+
.popper-container[x-placement^=bottom] > .popper .popper-arrow {
|
|
95
|
+
border-width: 0 5px 5px 5px;
|
|
96
|
+
border-left-color: transparent;
|
|
97
|
+
border-right-color: transparent;
|
|
98
|
+
border-top-color: transparent;
|
|
99
|
+
top: -5px;
|
|
100
|
+
margin-top: 0;
|
|
101
|
+
margin-bottom: 0;
|
|
90
102
|
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
overflow: hidden;
|
|
103
|
+
|
|
104
|
+
.popper-container[x-placement^=right] > .popper {
|
|
105
|
+
margin-left: 5px;
|
|
95
106
|
}
|
|
96
|
-
.
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
flex-shrink: 0;
|
|
107
|
+
.popper-container[x-placement^=right] > .popper .popper-arrow {
|
|
108
|
+
border-width: 5px 5px 5px 0;
|
|
109
|
+
border-left-color: transparent;
|
|
110
|
+
border-top-color: transparent;
|
|
111
|
+
border-bottom-color: transparent;
|
|
112
|
+
left: -5px;
|
|
113
|
+
margin-left: 0;
|
|
114
|
+
margin-right: 0;
|
|
105
115
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
overflow: hidden;
|
|
110
|
-
text-overflow: ellipsis;
|
|
111
|
-
max-width: 100%;
|
|
116
|
+
|
|
117
|
+
.popper-container[x-placement^=left] > .popper {
|
|
118
|
+
margin-right: 5px;
|
|
112
119
|
}
|
|
113
|
-
.
|
|
114
|
-
width:
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
right:
|
|
119
|
-
|
|
120
|
+
.popper-container[x-placement^=left] > .popper .popper-arrow {
|
|
121
|
+
border-width: 5px 0 5px 5px;
|
|
122
|
+
border-top-color: transparent;
|
|
123
|
+
border-right-color: transparent;
|
|
124
|
+
border-bottom-color: transparent;
|
|
125
|
+
right: -5px;
|
|
126
|
+
margin-left: 0;
|
|
127
|
+
margin-right: 0;
|
|
120
128
|
}
|
|
121
129
|
|
|
122
|
-
.
|
|
123
|
-
|
|
124
|
-
|
|
130
|
+
/*# sourceMappingURL=Popper.css.map */
|
|
131
|
+
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
132
|
+
.plotly-notifier {
|
|
133
|
+
margin-right: 15px;
|
|
125
134
|
}
|
|
126
135
|
|
|
127
|
-
.
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
.
|
|
136
|
-
.lm_dragProxy.lm_right .lm_header .lm_tabs,
|
|
137
|
-
.lm_stack.lm_left .lm_header .lm_tabs,
|
|
138
|
-
.lm_stack.lm_right .lm_header .lm_tabs {
|
|
139
|
-
transform-origin: left top;
|
|
140
|
-
top: 0;
|
|
141
|
-
width: 1000px;
|
|
142
|
-
/*hack*/
|
|
136
|
+
.plotly-notifier .notifier-note {
|
|
137
|
+
color: #f0f0ee !important;
|
|
138
|
+
border: 0 !important;
|
|
139
|
+
border-radius: 2px !important;
|
|
140
|
+
background: #555356 !important;
|
|
141
|
+
overflow-wrap: normal !important;
|
|
142
|
+
hyphens: unset !important;
|
|
143
|
+
margin-bottom: 0.5rem !important;
|
|
144
|
+
box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45) !important;
|
|
143
145
|
}
|
|
144
|
-
|
|
145
|
-
.
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
bottom: 0;
|
|
146
|
+
|
|
147
|
+
.plotly-notifier .notifier-close {
|
|
148
|
+
color: #929192 !important;
|
|
149
|
+
transition: all 0.2s ease-in-out !important;
|
|
149
150
|
}
|
|
150
|
-
.
|
|
151
|
-
|
|
152
|
-
.lm_stack.lm_left .lm_items,
|
|
153
|
-
.lm_stack.lm_right .lm_items {
|
|
154
|
-
float: left;
|
|
151
|
+
.plotly-notifier .notifier-close:hover {
|
|
152
|
+
color: #f0f0ee !important;
|
|
155
153
|
}
|
|
156
154
|
|
|
157
|
-
.
|
|
158
|
-
|
|
159
|
-
transform: rotate(-90deg) scaleX(-1);
|
|
160
|
-
left: 0;
|
|
155
|
+
.chart-wrapper {
|
|
156
|
+
background: #2d2a2e;
|
|
161
157
|
}
|
|
162
|
-
.
|
|
163
|
-
|
|
164
|
-
transform: scaleX(-1);
|
|
165
|
-
margin-top: 1px;
|
|
158
|
+
.chart-wrapper .plot-container .cartesianlayer text {
|
|
159
|
+
user-select: none;
|
|
166
160
|
}
|
|
167
|
-
.
|
|
168
|
-
.
|
|
169
|
-
|
|
170
|
-
right: initial;
|
|
171
|
-
left: 20px;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.lm_dragProxy.lm_right .lm_content {
|
|
175
|
-
float: left;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.lm_dragProxy.lm_right .lm_header .lm_tabs,
|
|
179
|
-
.lm_stack.lm_right .lm_header .lm_tabs {
|
|
180
|
-
transform: rotate(90deg) scaleX(1);
|
|
181
|
-
left: 100%;
|
|
182
|
-
margin-left: 0;
|
|
183
|
-
}
|
|
184
|
-
.lm_dragProxy.lm_right .lm_header .lm_controls,
|
|
185
|
-
.lm_stack.lm_right .lm_header .lm_controls {
|
|
186
|
-
left: 3px;
|
|
161
|
+
.chart-wrapper .plot-container .hovertext path,
|
|
162
|
+
.chart-wrapper .plot-container .axistext path {
|
|
163
|
+
stroke: none !important;
|
|
187
164
|
}
|
|
188
|
-
.
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
right: 20px;
|
|
165
|
+
.chart-wrapper .plot-container .axistext path {
|
|
166
|
+
fill: #555356 !important;
|
|
167
|
+
box-shadow: 4px 4px #1a171a;
|
|
192
168
|
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
.lm_stack.lm_bottom .lm_header .lm_tab {
|
|
196
|
-
margin-top: 0;
|
|
197
|
-
border-top: none;
|
|
169
|
+
.chart-wrapper .plot-container .zoomlayer .zoombox {
|
|
170
|
+
fill: rgba(0, 0, 0, 0.5) !important;
|
|
198
171
|
}
|
|
199
|
-
.
|
|
200
|
-
|
|
201
|
-
|
|
172
|
+
.chart-wrapper .plot-container .zoomlayer .zoombox-corners {
|
|
173
|
+
fill: #f0f0ee;
|
|
174
|
+
stroke: #211f22;
|
|
202
175
|
}
|
|
203
|
-
.
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
bottom: 20px;
|
|
176
|
+
.chart-wrapper .js-plotly-plot .plotly [data-title]::before {
|
|
177
|
+
border-color: transparent transparent #403e41;
|
|
178
|
+
z-index: 1002;
|
|
207
179
|
}
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
180
|
+
.chart-wrapper .js-plotly-plot .plotly [data-title]::after {
|
|
181
|
+
border-radius: 4px;
|
|
182
|
+
background: #403e41;
|
|
183
|
+
color: #f0f0ee;
|
|
184
|
+
padding: 0.25rem 0.5rem;
|
|
185
|
+
box-shadow: 0 0.1rem 1.5rem 0.1rem rgba(26, 23, 26, 0.8);
|
|
186
|
+
z-index: 1001;
|
|
211
187
|
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
position: absolute;
|
|
215
|
-
overflow-y: auto;
|
|
216
|
-
overflow-x: hidden;
|
|
217
|
-
top: 0;
|
|
218
|
-
left: 0;
|
|
219
|
-
max-height: 100%;
|
|
188
|
+
.chart-wrapper .js-plotly-plot .plotly .modebar {
|
|
189
|
+
z-index: auto;
|
|
220
190
|
}
|
|
221
|
-
.
|
|
222
|
-
|
|
191
|
+
.chart-wrapper .js-plotly-plot .plotly .modebar .modebar-btn[data-attr=animation-spin] svg {
|
|
192
|
+
animation: fa-spin 2s infinite linear;
|
|
223
193
|
}
|
|
224
|
-
.
|
|
225
|
-
|
|
194
|
+
.chart-wrapper .js-plotly-plot .plotly .modebar .modebar-btn[data-attr=fill-active] svg path {
|
|
195
|
+
fill: rgba(255, 255, 255, 0.7) !important;
|
|
226
196
|
}
|
|
227
|
-
.
|
|
228
|
-
|
|
229
|
-
white-space: nowrap;
|
|
230
|
-
overflow: hidden;
|
|
231
|
-
text-overflow: ellipsis;
|
|
232
|
-
max-width: 100%;
|
|
197
|
+
.chart-wrapper .js-plotly-plot .plotly .modebar .modebar-btn[data-attr=fill-warning] svg path {
|
|
198
|
+
fill: #f37e3f !important;
|
|
233
199
|
}
|
|
234
|
-
|
|
235
|
-
|
|
200
|
+
|
|
201
|
+
.chart-error-popper .popper-content {
|
|
202
|
+
padding: 0.25rem;
|
|
236
203
|
}
|
|
237
204
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
205
|
+
/*# sourceMappingURL=Chart.css.map */
|
|
206
|
+
/* stylelint-disable */
|
|
207
|
+
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
208
|
+
|
|
209
|
+
/*# sourceMappingURL=ChartTheme.module.css.map *//* stylelint-disable */
|
|
210
|
+
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
211
|
+
|
|
212
|
+
/*# sourceMappingURL=ThemeExport.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
213
|
+
.popper-container {
|
|
242
214
|
position: absolute;
|
|
243
|
-
|
|
244
|
-
left: 0;
|
|
245
|
-
z-index: 30;
|
|
246
|
-
pointer-events: none;
|
|
247
|
-
}
|
|
248
|
-
.lm_dragProxy .lm_header {
|
|
249
|
-
background: transparent;
|
|
250
|
-
}
|
|
251
|
-
.lm_dragProxy .lm_content {
|
|
252
|
-
border-top: none;
|
|
253
|
-
overflow: hidden;
|
|
215
|
+
z-index: 5000;
|
|
254
216
|
}
|
|
255
217
|
|
|
256
|
-
.
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
218
|
+
.popper {
|
|
219
|
+
background: #403e41;
|
|
220
|
+
color: #f0f0ee;
|
|
221
|
+
border-radius: 4px;
|
|
222
|
+
transition: visibility 0.15s, opacity 0.15s;
|
|
260
223
|
pointer-events: none;
|
|
224
|
+
outline: 0;
|
|
261
225
|
}
|
|
262
|
-
.
|
|
263
|
-
width: 100%;
|
|
264
|
-
height: 100%;
|
|
226
|
+
.popper .popper-content {
|
|
265
227
|
position: relative;
|
|
266
|
-
|
|
267
|
-
left: 0;
|
|
228
|
+
box-shadow: 0 0.1rem 1.5rem 0.25rem rgba(26, 23, 26, 0.45);
|
|
268
229
|
}
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
height: 20px;
|
|
273
|
-
position: absolute;
|
|
274
|
-
bottom: 0;
|
|
275
|
-
right: 0;
|
|
276
|
-
z-index: 9999;
|
|
230
|
+
.popper .popper-content .tooltip-content {
|
|
231
|
+
text-align: center;
|
|
232
|
+
padding: 0.25rem 0.5rem;
|
|
277
233
|
}
|
|
278
|
-
.
|
|
279
|
-
width:
|
|
280
|
-
height:
|
|
234
|
+
.popper .popper-arrow {
|
|
235
|
+
width: 0;
|
|
236
|
+
height: 0;
|
|
237
|
+
border-style: solid;
|
|
281
238
|
position: absolute;
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
}
|
|
285
|
-
.lm_popin > .lm_bg {
|
|
286
|
-
z-index: 10;
|
|
287
|
-
}
|
|
288
|
-
.lm_popin > .lm_icon {
|
|
289
|
-
z-index: 20;
|
|
239
|
+
margin: 5px;
|
|
240
|
+
border-color: #403e41;
|
|
290
241
|
}
|
|
291
242
|
|
|
292
|
-
|
|
293
|
-
.lm_dragging {
|
|
294
|
-
overflow: hidden;
|
|
295
|
-
pointer-events: none;
|
|
296
|
-
}
|
|
297
|
-
.lm_dragging .lm_goldenlayout .lm_header {
|
|
298
|
-
pointer-events: auto;
|
|
299
|
-
}
|
|
300
|
-
.lm_dragging .lm_goldenlayout .lm_header .lm_controls > li {
|
|
301
|
-
pointer-events: none;
|
|
302
|
-
}
|
|
303
|
-
.lm_dragging .lm_goldenlayout .lm_header .lm_controls > li.lm_tabpreviousbutton, .lm_dragging .lm_goldenlayout .lm_header .lm_controls > li.lm_tabnextbutton {
|
|
243
|
+
.popper.interactive {
|
|
304
244
|
pointer-events: auto;
|
|
305
245
|
}
|
|
306
246
|
|
|
307
|
-
|
|
308
|
-
|
|
247
|
+
.popper-transition-enter {
|
|
248
|
+
opacity: 0;
|
|
249
|
+
transition: none;
|
|
309
250
|
}
|
|
310
251
|
|
|
311
|
-
.
|
|
312
|
-
|
|
252
|
+
.popper-transition-exit {
|
|
253
|
+
opacity: 0;
|
|
254
|
+
transition: all 0.15s;
|
|
313
255
|
}
|
|
314
256
|
|
|
315
|
-
|
|
316
|
-
|
|
257
|
+
.popper-container[x-placement^=top] > .popper-transition-enter,
|
|
258
|
+
.popper-container[x-placement^=top] > .popper-transition-exit {
|
|
259
|
+
transform: scale(0.92) translate(0, 10px);
|
|
317
260
|
}
|
|
318
261
|
|
|
319
|
-
|
|
320
|
-
|
|
262
|
+
.popper-container[x-placement^=right] > .popper-transition-enter,
|
|
263
|
+
.popper-container[x-placement^=right] > .popper-transition-exit {
|
|
264
|
+
transform: scale(0.92) translate(-10px, 0);
|
|
321
265
|
}
|
|
322
266
|
|
|
323
|
-
.
|
|
324
|
-
|
|
325
|
-
|
|
267
|
+
.popper-container[x-placement^=bottom] > .popper-transition-enter,
|
|
268
|
+
.popper-container[x-placement^=bottom] > .popper-transition-exit {
|
|
269
|
+
transform: scale(0.92) translate(0, -10px);
|
|
326
270
|
}
|
|
327
271
|
|
|
328
|
-
.
|
|
329
|
-
|
|
330
|
-
|
|
272
|
+
.popper-container[x-placement^=left] > .popper-transition-enter,
|
|
273
|
+
.popper-container[x-placement^=left] > .popper-transition-exit {
|
|
274
|
+
transform: scale(0.92) translate(10px, 0);
|
|
331
275
|
}
|
|
332
276
|
|
|
333
|
-
.
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
277
|
+
.popper-container[x-placement^=top] > .popper-transition-enter-active.popper,
|
|
278
|
+
.popper-container[x-placement^=right] > .popper-transition-enter-active.popper,
|
|
279
|
+
.popper-container[x-placement^=bottom] > .popper-transition-enter-active.popper,
|
|
280
|
+
.popper-container[x-placement^=left] > .popper-transition-enter-active.popper {
|
|
281
|
+
opacity: 1;
|
|
282
|
+
transform: none;
|
|
283
|
+
transition: all 0.15s ease-out;
|
|
337
284
|
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
285
|
+
|
|
286
|
+
.popper-container[x-placement^=top] > .popper {
|
|
287
|
+
margin-bottom: 5px;
|
|
341
288
|
}
|
|
342
|
-
.
|
|
343
|
-
|
|
344
|
-
border:
|
|
345
|
-
|
|
289
|
+
.popper-container[x-placement^=top] > .popper .popper-arrow {
|
|
290
|
+
border-width: 5px 5px 0 5px;
|
|
291
|
+
border-left-color: transparent;
|
|
292
|
+
border-right-color: transparent;
|
|
293
|
+
border-bottom-color: transparent;
|
|
294
|
+
bottom: -5px;
|
|
295
|
+
margin-top: 0;
|
|
296
|
+
margin-bottom: 0;
|
|
346
297
|
}
|
|
347
298
|
|
|
348
|
-
.
|
|
349
|
-
|
|
350
|
-
background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
|
|
351
|
-
background-position: 0 top, 0 bottom, left 0, right 0;
|
|
352
|
-
background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
|
|
353
|
-
animation: march 0.5s;
|
|
354
|
-
animation-timing-function: linear;
|
|
355
|
-
animation-iteration-count: infinite;
|
|
356
|
-
box-sizing: border-box;
|
|
357
|
-
transition: all 0.2s ease;
|
|
299
|
+
.popper-container[x-placement^=bottom] > .popper {
|
|
300
|
+
margin-top: 5px;
|
|
358
301
|
}
|
|
359
|
-
.
|
|
360
|
-
|
|
361
|
-
border:
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
302
|
+
.popper-container[x-placement^=bottom] > .popper .popper-arrow {
|
|
303
|
+
border-width: 0 5px 5px 5px;
|
|
304
|
+
border-left-color: transparent;
|
|
305
|
+
border-right-color: transparent;
|
|
306
|
+
border-top-color: transparent;
|
|
307
|
+
top: -5px;
|
|
308
|
+
margin-top: 0;
|
|
309
|
+
margin-bottom: 0;
|
|
365
310
|
}
|
|
366
311
|
|
|
367
|
-
.
|
|
368
|
-
|
|
369
|
-
opacity: 0.001;
|
|
370
|
-
transition: opacity 0.15s ease;
|
|
312
|
+
.popper-container[x-placement^=right] > .popper {
|
|
313
|
+
margin-left: 5px;
|
|
371
314
|
}
|
|
372
|
-
.
|
|
373
|
-
|
|
374
|
-
|
|
315
|
+
.popper-container[x-placement^=right] > .popper .popper-arrow {
|
|
316
|
+
border-width: 5px 5px 5px 0;
|
|
317
|
+
border-left-color: transparent;
|
|
318
|
+
border-top-color: transparent;
|
|
319
|
+
border-bottom-color: transparent;
|
|
320
|
+
left: -5px;
|
|
321
|
+
margin-left: 0;
|
|
322
|
+
margin-right: 0;
|
|
375
323
|
}
|
|
376
324
|
|
|
377
|
-
.
|
|
378
|
-
|
|
379
|
-
height: 28px;
|
|
380
|
-
padding-top: 0;
|
|
381
|
-
background: #201e21;
|
|
382
|
-
box-shadow: inset 0 -1px 0 0 #1a171a;
|
|
383
|
-
user-select: none;
|
|
384
|
-
}
|
|
385
|
-
.lm_header .lm_controls > li {
|
|
386
|
-
height: 100%;
|
|
387
|
-
width: 24px;
|
|
325
|
+
.popper-container[x-placement^=left] > .popper {
|
|
326
|
+
margin-right: 5px;
|
|
388
327
|
}
|
|
389
|
-
.
|
|
390
|
-
|
|
328
|
+
.popper-container[x-placement^=left] > .popper .popper-arrow {
|
|
329
|
+
border-width: 5px 0 5px 5px;
|
|
330
|
+
border-top-color: transparent;
|
|
331
|
+
border-right-color: transparent;
|
|
332
|
+
border-bottom-color: transparent;
|
|
333
|
+
right: -5px;
|
|
334
|
+
margin-left: 0;
|
|
335
|
+
margin-right: 0;
|
|
391
336
|
}
|
|
392
337
|
|
|
393
|
-
.
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
font-family: "Fira Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Roboto", "Helvetica Neue", arial, sans-serif;
|
|
398
|
-
background-color: #242125;
|
|
399
|
-
color: #929192;
|
|
400
|
-
height: 28px;
|
|
401
|
-
font-size: 12px;
|
|
402
|
-
min-width: 5rem;
|
|
403
|
-
margin: 0;
|
|
404
|
-
padding: 0 0.25rem 0 0.5rem;
|
|
405
|
-
box-shadow: inset -1px -1px 0 0 #1a171a;
|
|
406
|
-
transition: color 0.15s, background-color 0.15s;
|
|
407
|
-
max-width: 12rem;
|
|
408
|
-
white-space: nowrap;
|
|
409
|
-
overflow: hidden;
|
|
338
|
+
/*# sourceMappingURL=Popper.css.map */
|
|
339
|
+
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
340
|
+
.context-actions-listener {
|
|
341
|
+
display: none;
|
|
410
342
|
}
|
|
411
|
-
|
|
412
|
-
.
|
|
413
|
-
|
|
414
|
-
|
|
343
|
+
|
|
344
|
+
.context-menu-root {
|
|
345
|
+
position: fixed;
|
|
346
|
+
height: 100%;
|
|
347
|
+
width: 100%;
|
|
348
|
+
top: 0;
|
|
349
|
+
left: 0;
|
|
350
|
+
pointer-events: none;
|
|
351
|
+
z-index: 1060;
|
|
415
352
|
}
|
|
416
|
-
.
|
|
417
|
-
|
|
418
|
-
display: flex;
|
|
419
|
-
align-items: center;
|
|
353
|
+
.context-menu-root.active {
|
|
354
|
+
pointer-events: all;
|
|
420
355
|
}
|
|
421
|
-
|
|
422
|
-
.
|
|
423
|
-
|
|
424
|
-
position:
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
356
|
+
|
|
357
|
+
.context-menu-container {
|
|
358
|
+
pointer-events: auto;
|
|
359
|
+
position: fixed;
|
|
360
|
+
background-color: #555356;
|
|
361
|
+
color: #f0f0ee;
|
|
362
|
+
z-index: initial;
|
|
363
|
+
min-width: 10rem;
|
|
364
|
+
max-width: 30rem;
|
|
365
|
+
text-align: left;
|
|
366
|
+
border-radius: 4px;
|
|
367
|
+
background-clip: border-box;
|
|
368
|
+
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
369
|
+
max-height: 100vh;
|
|
370
|
+
overflow-y: auto;
|
|
436
371
|
}
|
|
437
|
-
.
|
|
438
|
-
|
|
439
|
-
opacity: 1;
|
|
372
|
+
.context-menu-container.has-overflow {
|
|
373
|
+
overflow-y: scroll;
|
|
440
374
|
}
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
375
|
+
.context-menu-container hr {
|
|
376
|
+
margin-top: 0;
|
|
377
|
+
margin-bottom: 0;
|
|
378
|
+
background-color: #403e41;
|
|
444
379
|
}
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
.lm_header .lm_tab.lm_active:hover {
|
|
448
|
-
height: 28px;
|
|
449
|
-
background-color: #2d2a2e;
|
|
380
|
+
.context-menu-container .custom-menu-item {
|
|
381
|
+
width: 100%;
|
|
450
382
|
color: #f0f0ee;
|
|
451
|
-
|
|
452
|
-
|
|
383
|
+
white-space: nowrap;
|
|
384
|
+
text-decoration: none;
|
|
385
|
+
background-color: transparent;
|
|
386
|
+
text-align: left;
|
|
453
387
|
}
|
|
454
|
-
.
|
|
455
|
-
|
|
456
|
-
|
|
388
|
+
.context-menu-container .btn-context-menu {
|
|
389
|
+
border: none;
|
|
390
|
+
width: 100%;
|
|
391
|
+
padding: 4px 8px;
|
|
392
|
+
color: #f0f0ee;
|
|
393
|
+
text-decoration: none;
|
|
394
|
+
background-color: transparent;
|
|
395
|
+
text-align: left;
|
|
396
|
+
cursor: pointer;
|
|
397
|
+
user-select: none;
|
|
457
398
|
}
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
399
|
+
.context-menu-container .btn-context-menu .btn-context-menu-wrapper {
|
|
400
|
+
display: flex;
|
|
401
|
+
align-items: center;
|
|
402
|
+
justify-content: flex-start;
|
|
461
403
|
}
|
|
462
|
-
|
|
463
|
-
.
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
opacity: 0.4;
|
|
468
|
-
transition: opacity 300ms ease;
|
|
404
|
+
.context-menu-container .btn-context-menu .icon {
|
|
405
|
+
margin-right: 0.5rem;
|
|
406
|
+
width: 1rem;
|
|
407
|
+
flex-grow: 0;
|
|
408
|
+
text-align: center;
|
|
469
409
|
}
|
|
470
|
-
.
|
|
471
|
-
|
|
410
|
+
.context-menu-container .btn-context-menu .icon.outline {
|
|
411
|
+
stroke: #555356;
|
|
412
|
+
stroke-width: 60;
|
|
472
413
|
}
|
|
473
|
-
.
|
|
474
|
-
|
|
414
|
+
.context-menu-container .btn-context-menu .title {
|
|
415
|
+
flex: 1 1 auto;
|
|
416
|
+
text-align: left;
|
|
417
|
+
white-space: nowrap;
|
|
475
418
|
}
|
|
476
|
-
.
|
|
477
|
-
|
|
478
|
-
|
|
419
|
+
.context-menu-container .btn-context-menu .shortcut {
|
|
420
|
+
color: #929192;
|
|
421
|
+
margin-left: 0.5rem;
|
|
422
|
+
justify-self: flex-end;
|
|
423
|
+
flex: 1 1 auto;
|
|
424
|
+
text-align: right;
|
|
425
|
+
white-space: nowrap;
|
|
479
426
|
}
|
|
480
|
-
.
|
|
481
|
-
|
|
482
|
-
|
|
427
|
+
.context-menu-container .btn-context-menu .submenu-indicator {
|
|
428
|
+
color: #f0f0ee;
|
|
429
|
+
flex-grow: 0;
|
|
430
|
+
justify-self: flex-end;
|
|
483
431
|
}
|
|
484
|
-
.
|
|
485
|
-
|
|
432
|
+
.context-menu-container .btn-context-menu .submenu-indicator.disabled {
|
|
433
|
+
color: #929192;
|
|
486
434
|
}
|
|
487
|
-
.
|
|
488
|
-
|
|
489
|
-
|
|
435
|
+
.context-menu-container .btn-context-menu.menu-title {
|
|
436
|
+
user-select: none;
|
|
437
|
+
cursor: default;
|
|
438
|
+
background: #2d2a2e;
|
|
490
439
|
}
|
|
491
|
-
.
|
|
492
|
-
background-
|
|
493
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M5.928 7.976l4.357 4.357-.618.62L5 8.284v-.618L9.667 3l.618.619-4.357 4.357z'/%3E%3C/svg%3E");
|
|
440
|
+
.context-menu-container .btn-context-menu.keyboard-active {
|
|
441
|
+
background-color: rgba(72, 120, 234, 0.5);
|
|
494
442
|
}
|
|
495
|
-
|
|
496
|
-
.
|
|
497
|
-
|
|
498
|
-
background: #242125;
|
|
499
|
-
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
500
|
-
border-radius: 4px;
|
|
501
|
-
max-width: 12rem;
|
|
502
|
-
margin: 0;
|
|
503
|
-
padding: 0;
|
|
504
|
-
list-style-type: none;
|
|
443
|
+
.context-menu-container .btn-context-menu:focus,
|
|
444
|
+
.context-menu-container .btn-context-menu.active {
|
|
445
|
+
background-color: #4878ea;
|
|
505
446
|
}
|
|
506
|
-
.
|
|
507
|
-
|
|
447
|
+
.context-menu-container .btn-context-menu:focus {
|
|
448
|
+
outline: none;
|
|
508
449
|
}
|
|
509
|
-
.
|
|
510
|
-
|
|
511
|
-
|
|
450
|
+
.context-menu-container .btn-context-menu.active,
|
|
451
|
+
.context-menu-container .btn-context-menu.keyboard-active,
|
|
452
|
+
.context-menu-container .btn-context-menu:focus:not(.disabled) {
|
|
512
453
|
color: #f0f0ee;
|
|
513
|
-
background-color: #555356;
|
|
514
|
-
border: 1px solid #929192;
|
|
515
|
-
border-radius: 4px;
|
|
516
|
-
max-width: 100%;
|
|
517
454
|
}
|
|
518
|
-
.
|
|
455
|
+
.context-menu-container .btn-context-menu.active .shortcut,
|
|
456
|
+
.context-menu-container .btn-context-menu.keyboard-active .shortcut,
|
|
457
|
+
.context-menu-container .btn-context-menu:focus:not(.disabled) .shortcut {
|
|
458
|
+
color: #a4bcf5;
|
|
459
|
+
}
|
|
460
|
+
.context-menu-container .btn-context-menu.disabled {
|
|
519
461
|
color: #929192;
|
|
520
|
-
|
|
462
|
+
background-color: #555356;
|
|
521
463
|
}
|
|
522
|
-
.
|
|
523
|
-
border-
|
|
524
|
-
|
|
525
|
-
outline: 0;
|
|
464
|
+
.context-menu-container .context-menu-item:last-child > .btn-context-menu {
|
|
465
|
+
border-bottom-left-radius: 4px;
|
|
466
|
+
border-bottom-right-radius: 4px;
|
|
526
467
|
}
|
|
527
|
-
.
|
|
528
|
-
|
|
468
|
+
.context-menu-container .context-menu-item:first-child > .btn-context-menu {
|
|
469
|
+
border-top-left-radius: 4px;
|
|
470
|
+
border-top-right-radius: 4px;
|
|
529
471
|
}
|
|
530
|
-
.
|
|
531
|
-
|
|
532
|
-
color: #c0bfbf;
|
|
533
|
-
box-shadow: none;
|
|
534
|
-
}
|
|
535
|
-
.lm_tabdropdown_list .lm_tab.lm_keyboard_active {
|
|
472
|
+
.context-menu-container .context-menu-group-header {
|
|
473
|
+
margin: 0.5rem 0.75rem 0.25rem 0.75rem;
|
|
536
474
|
color: #c0bfbf;
|
|
537
|
-
|
|
475
|
+
white-space: nowrap;
|
|
476
|
+
text-decoration: none;
|
|
477
|
+
background-color: transparent;
|
|
478
|
+
text-align: left;
|
|
479
|
+
cursor: default;
|
|
480
|
+
user-select: none;
|
|
481
|
+
font-weight: 500;
|
|
482
|
+
border-bottom: 1px solid #5b5a5c;
|
|
538
483
|
}
|
|
539
|
-
.
|
|
540
|
-
|
|
541
|
-
|
|
484
|
+
.context-menu-container .loading {
|
|
485
|
+
padding: 0.25rem 1.5rem;
|
|
486
|
+
width: 100%;
|
|
487
|
+
display: block;
|
|
488
|
+
text-align: center;
|
|
542
489
|
}
|
|
543
490
|
|
|
544
|
-
.
|
|
545
|
-
|
|
546
|
-
height: 100% !important;
|
|
547
|
-
width: 100% !important;
|
|
548
|
-
}
|
|
549
|
-
.lm_maximised .lm_items {
|
|
550
|
-
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
491
|
+
.context-menu-container:focus {
|
|
492
|
+
outline: none;
|
|
551
493
|
}
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
494
|
+
|
|
495
|
+
/*# sourceMappingURL=ContextActions.css.map */
|
|
496
|
+
/* stylelint-disable alpha-value-notation */
|
|
497
|
+
.loading-spinner {
|
|
498
|
+
--primary-color: var(
|
|
499
|
+
--dh-loading-spinner-primary-color,
|
|
500
|
+
var(--dh-color-accent, #4c7dee)
|
|
501
|
+
);
|
|
502
|
+
--secondary-color: var(
|
|
503
|
+
--dh-loading-spinner-secondary-color,
|
|
504
|
+
rgba(240, 240, 240, 0.5)
|
|
505
|
+
);
|
|
506
|
+
--border-width: 1px;
|
|
507
|
+
--size: 14px;
|
|
508
|
+
box-sizing: border-box;
|
|
509
|
+
display: inline-block;
|
|
510
|
+
margin: 0 auto;
|
|
511
|
+
width: var(--size);
|
|
512
|
+
height: var(--size);
|
|
555
513
|
}
|
|
556
|
-
|
|
557
|
-
|
|
514
|
+
|
|
515
|
+
.loading-spinner-large {
|
|
516
|
+
--border-width: 4px;
|
|
517
|
+
--size: 56px;
|
|
558
518
|
}
|
|
559
519
|
|
|
560
|
-
.
|
|
561
|
-
|
|
520
|
+
.loading-spinner-vertical-align {
|
|
521
|
+
vertical-align: -0.125em;
|
|
562
522
|
}
|
|
563
523
|
|
|
564
|
-
.
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
height: 8px;
|
|
524
|
+
.loading-spinner::after {
|
|
525
|
+
animation: loading-spinner-rotate 2s linear infinite;
|
|
526
|
+
border: var(--border-width) solid;
|
|
527
|
+
border-color: var(--primary-color) var(--primary-color) var(--secondary-color) var(--secondary-color);
|
|
569
528
|
border-radius: 50%;
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
.lm_tab .editor-unsaved-indicator.is-unsaved {
|
|
529
|
+
box-sizing: border-box;
|
|
530
|
+
content: "";
|
|
573
531
|
display: inline-block;
|
|
532
|
+
width: var(--size);
|
|
533
|
+
height: var(--size);
|
|
574
534
|
}
|
|
575
535
|
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
536
|
+
@keyframes loading-spinner-rotate {
|
|
537
|
+
0% {
|
|
538
|
+
transform: rotate(0deg);
|
|
539
|
+
}
|
|
540
|
+
100% {
|
|
541
|
+
transform: rotate(359deg);
|
|
542
|
+
}
|
|
581
543
|
}
|
|
582
544
|
|
|
583
|
-
/*# sourceMappingURL=
|
|
584
|
-
|
|
545
|
+
/*# sourceMappingURL=LoadingSpinner.css.map */
|
|
546
|
+
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
547
|
+
.iris-panel-message-overlay {
|
|
548
|
+
text-align: center;
|
|
585
549
|
display: flex;
|
|
586
550
|
flex-direction: column;
|
|
587
551
|
justify-content: center;
|
|
588
|
-
|
|
589
|
-
max-height: 100%;
|
|
590
|
-
text-align: center;
|
|
552
|
+
white-space: pre-line;
|
|
591
553
|
overflow: hidden;
|
|
592
554
|
}
|
|
593
|
-
.panel-
|
|
594
|
-
|
|
555
|
+
.iris-panel-message-overlay .message-content {
|
|
556
|
+
display: flex;
|
|
557
|
+
flex-direction: column;
|
|
558
|
+
font-size: 1.2rem;
|
|
559
|
+
gap: 20px;
|
|
560
|
+
}
|
|
561
|
+
.iris-panel-message-overlay .message-content .message-icon {
|
|
562
|
+
font-size: 64px;
|
|
563
|
+
height: 64px;
|
|
564
|
+
line-height: 64px;
|
|
565
|
+
}
|
|
566
|
+
.iris-panel-message-overlay .message-content .message-icon .svg-inline--fa {
|
|
567
|
+
font-size: inherit;
|
|
595
568
|
}
|
|
596
569
|
|
|
597
|
-
|
|
570
|
+
.iris-panel-scrim-background {
|
|
571
|
+
background: rgba(0, 0, 0, 0.1);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/*# sourceMappingURL=LoadingOverlay.css.map */
|
|
598
575
|
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
599
|
-
.
|
|
600
|
-
height: 100%;
|
|
601
|
-
width: 100%;
|
|
576
|
+
.btn-socketed {
|
|
602
577
|
position: relative;
|
|
578
|
+
display: inline-block;
|
|
579
|
+
border: 1px solid #929192;
|
|
580
|
+
padding: 0.375rem 1.5rem;
|
|
581
|
+
color: #f0f0ee;
|
|
582
|
+
background: #555356;
|
|
583
|
+
line-height: 1.5;
|
|
584
|
+
user-select: none;
|
|
585
|
+
border-radius: 4px;
|
|
586
|
+
transition: color 0.12s ease-in-out, background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
|
|
587
|
+
cursor: pointer;
|
|
588
|
+
}
|
|
589
|
+
.btn-socketed::after {
|
|
590
|
+
content: "";
|
|
591
|
+
position: absolute;
|
|
592
|
+
bottom: -1px;
|
|
593
|
+
left: 50%;
|
|
594
|
+
transform: translate(-50%, 50%);
|
|
595
|
+
background: #2d2a2e;
|
|
596
|
+
width: 18px;
|
|
597
|
+
height: 18px;
|
|
598
|
+
border-radius: 50%;
|
|
599
|
+
border: 1px solid #929192;
|
|
600
|
+
transition: color 0.12s ease-in-out, background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
|
|
601
|
+
}
|
|
602
|
+
.btn-socketed:focus {
|
|
603
|
+
border-color: rgba(72, 120, 234, 0.85);
|
|
604
|
+
box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
|
|
605
|
+
}
|
|
606
|
+
.btn-socketed:focus::after {
|
|
607
|
+
border-color: rgba(72, 120, 234, 0.85);
|
|
608
|
+
}
|
|
609
|
+
.btn-socketed:hover {
|
|
610
|
+
background-color: #235de6;
|
|
611
|
+
border-color: #235de6;
|
|
612
|
+
}
|
|
613
|
+
.btn-socketed:hover::after {
|
|
614
|
+
border-color: #235de6;
|
|
615
|
+
}
|
|
616
|
+
.btn-socketed:active {
|
|
617
|
+
border-color: #184ece;
|
|
618
|
+
background-color: #184ece;
|
|
619
|
+
}
|
|
620
|
+
.btn-socketed .btn-socketed-icon {
|
|
621
|
+
display: none;
|
|
622
|
+
}
|
|
623
|
+
.btn-socketed:disabled, .btn-socketed:disabled:hover {
|
|
624
|
+
cursor: not-allowed;
|
|
625
|
+
border-color: #1a171a;
|
|
626
|
+
background-color: #373438;
|
|
627
|
+
}
|
|
628
|
+
.btn-socketed:disabled::after, .btn-socketed:disabled:hover::after {
|
|
629
|
+
border-color: #1a171a;
|
|
603
630
|
}
|
|
604
631
|
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
632
|
+
.btn-socketed.btn-socketed-linked::after {
|
|
633
|
+
border-color: #4878ea;
|
|
634
|
+
background-color: #4878ea;
|
|
635
|
+
}
|
|
636
|
+
.btn-socketed.btn-socketed-linked.btn-socketed-linked-source::after {
|
|
637
|
+
border-color: #aa9af4;
|
|
638
|
+
background-color: #aa9af4;
|
|
639
|
+
}
|
|
640
|
+
.btn-socketed.btn-socketed-linked .btn-socketed-icon.linked {
|
|
641
|
+
display: block;
|
|
642
|
+
position: absolute;
|
|
643
|
+
bottom: 1px;
|
|
644
|
+
left: 50%;
|
|
645
|
+
transform: translate(-50%, 9px);
|
|
646
|
+
z-index: 1;
|
|
647
|
+
}
|
|
648
|
+
.btn-socketed.btn-socketed-linked:disabled, .btn-socketed.btn-socketed-linked:disabled:hover {
|
|
649
|
+
border-color: #1a171a;
|
|
650
|
+
background-color: #373438;
|
|
651
|
+
}
|
|
652
|
+
.btn-socketed.btn-socketed-linked:disabled::after, .btn-socketed.btn-socketed-linked:disabled:hover::after {
|
|
653
|
+
background-color: #343e5d;
|
|
654
|
+
border-color: #1a171a;
|
|
608
655
|
}
|
|
609
656
|
|
|
610
|
-
|
|
611
|
-
.
|
|
657
|
+
.btn-socketed.is-invalid,
|
|
658
|
+
.btn-socketed.btn-socketed-linked.is-invalid {
|
|
659
|
+
border-color: rgba(249, 93, 132, 0.85);
|
|
660
|
+
}
|
|
661
|
+
.btn-socketed.is-invalid::after,
|
|
662
|
+
.btn-socketed.btn-socketed-linked.is-invalid::after {
|
|
663
|
+
border-color: #f95d84;
|
|
664
|
+
background-color: #f95d84;
|
|
665
|
+
}
|
|
666
|
+
.btn-socketed.is-invalid .btn-socketed-icon.linked,
|
|
667
|
+
.btn-socketed.btn-socketed-linked.is-invalid .btn-socketed-icon.linked {
|
|
668
|
+
display: none;
|
|
669
|
+
}
|
|
670
|
+
.btn-socketed.is-invalid .btn-socketed-icon.is-invalid,
|
|
671
|
+
.btn-socketed.btn-socketed-linked.is-invalid .btn-socketed-icon.is-invalid {
|
|
672
|
+
color: #555356;
|
|
673
|
+
display: block;
|
|
674
|
+
position: absolute;
|
|
675
|
+
bottom: 1px;
|
|
676
|
+
left: 50%;
|
|
677
|
+
transform: translate(-50%, 9px);
|
|
678
|
+
z-index: 1;
|
|
679
|
+
}
|
|
680
|
+
.btn-socketed.is-invalid:focus,
|
|
681
|
+
.btn-socketed.btn-socketed-linked.is-invalid:focus {
|
|
682
|
+
box-shadow: 0 0 0 0.2rem rgba(249, 93, 132, 0.35);
|
|
683
|
+
}
|
|
684
|
+
.btn-socketed.is-invalid:disabled, .btn-socketed.is-invalid:disabled:hover,
|
|
685
|
+
.btn-socketed.btn-socketed-linked.is-invalid:disabled,
|
|
686
|
+
.btn-socketed.btn-socketed-linked.is-invalid:disabled:hover {
|
|
687
|
+
border-color: #1a171a;
|
|
688
|
+
background-color: #373438;
|
|
689
|
+
}
|
|
690
|
+
.btn-socketed.is-invalid:disabled::after, .btn-socketed.is-invalid:disabled:hover::after,
|
|
691
|
+
.btn-socketed.btn-socketed-linked.is-invalid:disabled::after,
|
|
692
|
+
.btn-socketed.btn-socketed-linked.is-invalid:disabled:hover::after {
|
|
693
|
+
background-color: #373438;
|
|
694
|
+
border-color: #1a171a;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/*# sourceMappingURL=SocketedButton.css.map */
|
|
698
|
+
._lm_dragging_27ejx_1{overflow:hidden;pointer-events:none}._lm_dragging_27ejx_1 ._lm_goldenlayout_27ejx_1 ._lm_header_27ejx_1{pointer-events:auto}._lm_dragging_27ejx_1 ._lm_goldenlayout_27ejx_1 ._lm_header_27ejx_1 ._lm_controls_27ejx_1>li{pointer-events:none}._lm_dragging_27ejx_1 ._lm_goldenlayout_27ejx_1 ._lm_header_27ejx_1 ._lm_controls_27ejx_1>li._lm_tabpreviousbutton_27ejx_1,._lm_dragging_27ejx_1 ._lm_goldenlayout_27ejx_1 ._lm_header_27ejx_1 ._lm_controls_27ejx_1>li._lm_tabnextbutton_27ejx_1{pointer-events:auto}body:not(._lm_dragging_27ejx_1) ._lm_header_27ejx_1 ._lm_tab_27ejx_1:not(._lm_active_27ejx_1):hover{color:#c0bfbf}._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1 ._lm_close_tab_27ejx_1{background-color:#2d2a2e}body:not(._lm_dragging_27ejx_1) ._lm_header_27ejx_1 ._lm_tab_27ejx_1:hover ._lm_close_tab_27ejx_1{background-color:#929192}body:not(._lm_dragging_27ejx_1) ._lm_header_27ejx_1 ._lm_tab_27ejx_1 ._lm_close_tab_27ejx_1:hover{background-color:#fcfcfa}._lm_goldenlayout_27ejx_1{background:var(--dh-color-background, #1a171a);position:absolute}._lm_content_27ejx_1{background:#2d2a2e;overflow:visible}._lm_dragProxy_27ejx_1 ._lm_content_27ejx_1{height:100%;width:100%;box-shadow:0 .1rem 1rem rgba(26,23,26,.45)}._lm_dragProxy_27ejx_1 ._lm_header_27ejx_1{height:28px;box-shadow:none}._lm_dragProxy_27ejx_1 ._lm_header_27ejx_1 ._lm_tab_27ejx_1,._lm_dragProxy_27ejx_1 ._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1{border:0;box-shadow:0 .1rem 1rem rgba(26,23,26,.45)}._lm_dropTargetIndicator_27ejx_1{background-image:linear-gradient(to right, #1a171a 50%, #f0f0ee 50%),linear-gradient(to right, #1a171a 50%, #f0f0ee 50%),linear-gradient(to bottom, #1a171a 50%, #f0f0ee 50%),linear-gradient(to bottom, #1a171a 50%, #f0f0ee 50%);background-size:8px 1px,8px 1px,1px 8px,1px 8px;background-position:0 top,0 bottom,left 0,right 0;background-repeat:repeat-x,repeat-x,repeat-y,repeat-y;animation:_march_27ejx_1 .5s;animation-timing-function:linear;animation-iteration-count:infinite;box-sizing:border-box;transition:all .2s ease}._lm_dropTargetIndicator_27ejx_1 ._lm_inner_27ejx_1{box-sizing:border-box;border:1px solid transparent;box-shadow:inset 0 0 1rem 1px rgba(0,0,0,.45);opacity:1;background:rgba(72,120,234,.1)}._lm_splitter_27ejx_1{background:#929192;opacity:.001;transition:opacity .15s ease}._lm_splitter_27ejx_1:hover,._lm_splitter_27ejx_1._lm_dragging_27ejx_1{background:#c0bfbf;opacity:1}._lm_header_27ejx_1{box-sizing:content-box;height:28px;padding-top:0;background:#201e21;box-shadow:inset 0 -1px 0 0 #1a171a;user-select:none}._lm_header_27ejx_1 ._lm_controls_27ejx_1>li{height:100%;width:24px}._lm_header_27ejx_1._lm_selectable_27ejx_1{cursor:pointer}._lm_header_27ejx_1 ._lm_tab_27ejx_1,._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1{display:flex;align-items:center;font-family:"Fira Sans",-apple-system,blinkmacsystemfont,"Segoe UI","Roboto","Helvetica Neue",arial,sans-serif;background-color:#242125;color:#929192;height:28px;font-size:12px;min-width:5rem;margin:0;padding:0 .25rem 0 .5rem;box-shadow:inset -1px -1px 0 0 #1a171a;transition:color .15s,background-color .15s;max-width:12rem;white-space:nowrap;overflow:hidden}._lm_header_27ejx_1 ._lm_tab_27ejx_1 ._lm_title_27ejx_1,._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1 ._lm_title_27ejx_1{flex-grow:1;padding-right:.25rem}._lm_header_27ejx_1 ._lm_tab_27ejx_1 ._lm_title_before_27ejx_1,._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1 ._lm_title_before_27ejx_1{display:flex;align-items:center}._lm_header_27ejx_1 ._lm_tab_27ejx_1 ._lm_close_tab_27ejx_1,._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1 ._lm_close_tab_27ejx_1{cursor:pointer;position:relative;width:8px;height:8px;padding:4px;margin-left:-0.25rem;background-color:#242125;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z'/%3E%3C/svg%3E");mask-position:center center;mask-repeat:no-repeat;mask-size:8px;opacity:1;transition:background-color .15s}._lm_header_27ejx_1 ._lm_tab_27ejx_1 ._lm_close_tab_27ejx_1:hover,._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1 ._lm_close_tab_27ejx_1:hover{opacity:1}._lm_selected_27ejx_1 ._lm_header_27ejx_1{background-color:#2d2a2e}._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1,._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1:hover{height:28px;background-color:#2d2a2e;color:#f0f0ee;padding-bottom:0;box-shadow:inset -1px 0 0 0 #1a171a}._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1._lm_focusin_27ejx_1,._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1:hover._lm_focusin_27ejx_1{box-shadow:inset 0 1px #4878ea,inset -1px 0 0 0 #1a171a}._lm_window_blur_27ejx_1 ._lm_header_27ejx_1 ._lm_tab_27ejx_1._lm_active_27ejx_1._lm_focusin_27ejx_1{box-shadow:none}._lm_controls_27ejx_1>li{position:relative;background-position:center center;background-repeat:no-repeat;opacity:.4;transition:opacity 300ms ease}._lm_controls_27ejx_1>li:hover{opacity:1}._lm_controls_27ejx_1 ._lm_popout_27ejx_1{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=)}._lm_controls_27ejx_1 ._lm_maximise_27ejx_1{background-size:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M3 3v10h10V3H3zm9 9H4V4h8v8z'/%3E%3C/svg%3E")}._lm_controls_27ejx_1 ._lm_tabdropdown_27ejx_1{background-size:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M7.976 10.072l4.357-4.357.62.618L8.284 11h-.618L3 6.333l.619-.618 4.357 4.357z'/%3E%3C/svg%3E")}._lm_controls_27ejx_1 ._lm_close_27ejx_1{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=)}._lm_controls_27ejx_1 ._lm_tabnextbutton_27ejx_1{background-size:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M10.072 8.024L5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z'/%3E%3C/svg%3E")}._lm_controls_27ejx_1 ._lm_tabpreviousbutton_27ejx_1{background-size:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M5.928 7.976l4.357 4.357-.618.62L5 8.284v-.618L9.667 3l.618.619-4.357 4.357z'/%3E%3C/svg%3E")}._lm_tabdropdown_list_27ejx_1{z-index:1000;background:#242125;box-shadow:0 .1rem 1rem rgba(0,0,0,.45);border-radius:4px;max-width:12rem;margin:0;padding:0;list-style-type:none}._lm_tabdropdown_list_27ejx_1 ._lm_tabdropdown_search_27ejx_1{padding:.25rem}._lm_tabdropdown_list_27ejx_1 ._lm_tabdropdown_search_27ejx_1 input{padding:.375rem .75rem;line-height:1.5;color:#f0f0ee;background-color:#555356;border:1px solid #929192;border-radius:4px;max-width:100%}._lm_tabdropdown_list_27ejx_1 ._lm_tabdropdown_search_27ejx_1 input::placeholder{color:#929192;opacity:1}._lm_tabdropdown_list_27ejx_1 ._lm_tabdropdown_search_27ejx_1 input:focus{border-color:rgba(72,120,234,.85);box-shadow:0 0 0 .2rem rgba(72,120,234,.35);outline:0}._lm_tabdropdown_list_27ejx_1 ._lm_tabs_27ejx_1{padding:0}._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1{background:#242125;color:#c0bfbf;box-shadow:none}._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1._lm_keyboard_active_27ejx_1{color:#c0bfbf;background-color:#343e5d}._lm_tabdropdown_list_27ejx_1 ._lm_tab_27ejx_1:hover{color:#f0f0ee;background-color:#4878ea}._lm_maximised_27ejx_1{border:15px solid rgba(26,23,26,.85);height:100% !important;width:100% !important}._lm_maximised_27ejx_1 ._lm_items_27ejx_1{box-shadow:0 .1rem 1rem rgba(0,0,0,.45)}._lm_maximised_27ejx_1 ._lm_controls_27ejx_1 ._lm_maximise_27ejx_1{opacity:.7;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fcfcfa' d='M14 8v1H3V8h11z'/%3E%3C/svg%3E")}._lm_maximised_27ejx_1 ._lm_controls_27ejx_1 ._lm_maximise_27ejx_1:hover{opacity:1}._lm_tabs_27ejx_1:empty+._lm_controls_27ejx_1 ._lm_maximise_27ejx_1{display:none}
|
|
612
699
|
|
|
613
700
|
/*# sourceMappingURL=GoldenLayout.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
614
701
|
.lm_root {
|
|
@@ -931,7 +1018,7 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
931
1018
|
}
|
|
932
1019
|
|
|
933
1020
|
.lm_goldenlayout {
|
|
934
|
-
background: #1a171a;
|
|
1021
|
+
background: var(--dh-color-background, #1a171a);
|
|
935
1022
|
position: absolute;
|
|
936
1023
|
}
|
|
937
1024
|
|
|
@@ -1096,557 +1183,115 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
1096
1183
|
}
|
|
1097
1184
|
.lm_controls .lm_tabnextbutton {
|
|
1098
1185
|
background-size: 16px;
|
|
1099
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M10.072 8.024L5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z'/%3E%3C/svg%3E");
|
|
1100
|
-
}
|
|
1101
|
-
.lm_controls .lm_tabpreviousbutton {
|
|
1102
|
-
background-size: 16px;
|
|
1103
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M5.928 7.976l4.357 4.357-.618.62L5 8.284v-.618L9.667 3l.618.619-4.357 4.357z'/%3E%3C/svg%3E");
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
.lm_tabdropdown_list {
|
|
1107
|
-
z-index: 1000;
|
|
1108
|
-
background: #242125;
|
|
1109
|
-
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
1110
|
-
border-radius: 4px;
|
|
1111
|
-
max-width: 12rem;
|
|
1112
|
-
margin: 0;
|
|
1113
|
-
padding: 0;
|
|
1114
|
-
list-style-type: none;
|
|
1115
|
-
}
|
|
1116
|
-
.lm_tabdropdown_list .lm_tabdropdown_search {
|
|
1117
|
-
padding: 0.25rem;
|
|
1118
|
-
}
|
|
1119
|
-
.lm_tabdropdown_list .lm_tabdropdown_search input {
|
|
1120
|
-
padding: 0.375rem 0.75rem;
|
|
1121
|
-
line-height: 1.5;
|
|
1122
|
-
color: #f0f0ee;
|
|
1123
|
-
background-color: #555356;
|
|
1124
|
-
border: 1px solid #929192;
|
|
1125
|
-
border-radius: 4px;
|
|
1126
|
-
max-width: 100%;
|
|
1127
|
-
}
|
|
1128
|
-
.lm_tabdropdown_list .lm_tabdropdown_search input::placeholder {
|
|
1129
|
-
color: #929192;
|
|
1130
|
-
opacity: 1;
|
|
1131
|
-
}
|
|
1132
|
-
.lm_tabdropdown_list .lm_tabdropdown_search input:focus {
|
|
1133
|
-
border-color: rgba(72, 120, 234, 0.85);
|
|
1134
|
-
box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
|
|
1135
|
-
outline: 0;
|
|
1136
|
-
}
|
|
1137
|
-
.lm_tabdropdown_list .lm_tabs {
|
|
1138
|
-
padding: 0;
|
|
1139
|
-
}
|
|
1140
|
-
.lm_tabdropdown_list .lm_tab {
|
|
1141
|
-
background: #242125;
|
|
1142
|
-
color: #c0bfbf;
|
|
1143
|
-
box-shadow: none;
|
|
1144
|
-
}
|
|
1145
|
-
.lm_tabdropdown_list .lm_tab.lm_keyboard_active {
|
|
1146
|
-
color: #c0bfbf;
|
|
1147
|
-
background-color: #343e5d;
|
|
1148
|
-
}
|
|
1149
|
-
.lm_tabdropdown_list .lm_tab:hover {
|
|
1150
|
-
color: #f0f0ee;
|
|
1151
|
-
background-color: #4878ea;
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
.lm_maximised {
|
|
1155
|
-
border: 15px solid rgba(26, 23, 26, 0.85);
|
|
1156
|
-
height: 100% !important;
|
|
1157
|
-
width: 100% !important;
|
|
1158
|
-
}
|
|
1159
|
-
.lm_maximised .lm_items {
|
|
1160
|
-
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
1161
|
-
}
|
|
1162
|
-
.lm_maximised .lm_controls .lm_maximise {
|
|
1163
|
-
opacity: 0.7;
|
|
1164
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fcfcfa' d='M14 8v1H3V8h11z'/%3E%3C/svg%3E");
|
|
1165
|
-
}
|
|
1166
|
-
.lm_maximised .lm_controls .lm_maximise:hover {
|
|
1167
|
-
opacity: 1;
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
.lm_tabs:empty + .lm_controls .lm_maximise {
|
|
1171
|
-
display: none;
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
.lm_tab .editor-unsaved-indicator {
|
|
1175
|
-
display: none;
|
|
1176
|
-
margin-right: 5px;
|
|
1177
|
-
width: 8px;
|
|
1178
|
-
height: 8px;
|
|
1179
|
-
border-radius: 50%;
|
|
1180
|
-
background: #4878ea;
|
|
1181
|
-
}
|
|
1182
|
-
.lm_tab .editor-unsaved-indicator.is-unsaved {
|
|
1183
|
-
display: inline-block;
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
.lm_dragging .js-plotly-plot .plotly svg,
|
|
1187
|
-
.lm_dragging .js-plotly-plot .plotly g,
|
|
1188
|
-
.lm_dragging .js-plotly-plot .plotly rect,
|
|
1189
|
-
.lm_dragging .js-plotly-plot .plotly path {
|
|
1190
|
-
pointer-events: none !important;
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
/*# sourceMappingURL=GoldenLayout.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1194
|
-
.panel-placeholder {
|
|
1195
|
-
display: flex;
|
|
1196
|
-
flex-direction: column;
|
|
1197
|
-
justify-content: center;
|
|
1198
|
-
min-height: 100%;
|
|
1199
|
-
max-height: 100%;
|
|
1200
|
-
text-align: center;
|
|
1201
|
-
overflow: hidden;
|
|
1202
|
-
}
|
|
1203
|
-
.panel-placeholder div {
|
|
1204
|
-
padding: 1rem;
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
/*# sourceMappingURL=PanelPlaceholder.css.map */
|
|
1208
|
-
/* stylelint-disable */
|
|
1209
|
-
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1210
|
-
|
|
1211
|
-
/*# sourceMappingURL=ThemeExport.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1212
|
-
.popper-container {
|
|
1213
|
-
position: absolute;
|
|
1214
|
-
z-index: 5000;
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
.popper {
|
|
1218
|
-
background: #403e41;
|
|
1219
|
-
color: #f0f0ee;
|
|
1220
|
-
border-radius: 4px;
|
|
1221
|
-
transition: visibility 0.15s, opacity 0.15s;
|
|
1222
|
-
pointer-events: none;
|
|
1223
|
-
outline: 0;
|
|
1224
|
-
}
|
|
1225
|
-
.popper .popper-content {
|
|
1226
|
-
position: relative;
|
|
1227
|
-
box-shadow: 0 0.1rem 1.5rem 0.25rem rgba(26, 23, 26, 0.45);
|
|
1228
|
-
}
|
|
1229
|
-
.popper .popper-content .tooltip-content {
|
|
1230
|
-
text-align: center;
|
|
1231
|
-
padding: 0.25rem 0.5rem;
|
|
1232
|
-
}
|
|
1233
|
-
.popper .popper-arrow {
|
|
1234
|
-
width: 0;
|
|
1235
|
-
height: 0;
|
|
1236
|
-
border-style: solid;
|
|
1237
|
-
position: absolute;
|
|
1238
|
-
margin: 5px;
|
|
1239
|
-
border-color: #403e41;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
.popper.interactive {
|
|
1243
|
-
pointer-events: auto;
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
.popper-transition-enter {
|
|
1247
|
-
opacity: 0;
|
|
1248
|
-
transition: none;
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
.popper-transition-exit {
|
|
1252
|
-
opacity: 0;
|
|
1253
|
-
transition: all 0.15s;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
.popper-container[x-placement^=top] > .popper-transition-enter,
|
|
1257
|
-
.popper-container[x-placement^=top] > .popper-transition-exit {
|
|
1258
|
-
transform: scale(0.92) translate(0, 10px);
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.popper-container[x-placement^=right] > .popper-transition-enter,
|
|
1262
|
-
.popper-container[x-placement^=right] > .popper-transition-exit {
|
|
1263
|
-
transform: scale(0.92) translate(-10px, 0);
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
.popper-container[x-placement^=bottom] > .popper-transition-enter,
|
|
1267
|
-
.popper-container[x-placement^=bottom] > .popper-transition-exit {
|
|
1268
|
-
transform: scale(0.92) translate(0, -10px);
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.popper-container[x-placement^=left] > .popper-transition-enter,
|
|
1272
|
-
.popper-container[x-placement^=left] > .popper-transition-exit {
|
|
1273
|
-
transform: scale(0.92) translate(10px, 0);
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
.popper-container[x-placement^=top] > .popper-transition-enter-active.popper,
|
|
1277
|
-
.popper-container[x-placement^=right] > .popper-transition-enter-active.popper,
|
|
1278
|
-
.popper-container[x-placement^=bottom] > .popper-transition-enter-active.popper,
|
|
1279
|
-
.popper-container[x-placement^=left] > .popper-transition-enter-active.popper {
|
|
1280
|
-
opacity: 1;
|
|
1281
|
-
transform: none;
|
|
1282
|
-
transition: all 0.15s ease-out;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
.popper-container[x-placement^=top] > .popper {
|
|
1286
|
-
margin-bottom: 5px;
|
|
1287
|
-
}
|
|
1288
|
-
.popper-container[x-placement^=top] > .popper .popper-arrow {
|
|
1289
|
-
border-width: 5px 5px 0 5px;
|
|
1290
|
-
border-left-color: transparent;
|
|
1291
|
-
border-right-color: transparent;
|
|
1292
|
-
border-bottom-color: transparent;
|
|
1293
|
-
bottom: -5px;
|
|
1294
|
-
margin-top: 0;
|
|
1295
|
-
margin-bottom: 0;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.popper-container[x-placement^=bottom] > .popper {
|
|
1299
|
-
margin-top: 5px;
|
|
1300
|
-
}
|
|
1301
|
-
.popper-container[x-placement^=bottom] > .popper .popper-arrow {
|
|
1302
|
-
border-width: 0 5px 5px 5px;
|
|
1303
|
-
border-left-color: transparent;
|
|
1304
|
-
border-right-color: transparent;
|
|
1305
|
-
border-top-color: transparent;
|
|
1306
|
-
top: -5px;
|
|
1307
|
-
margin-top: 0;
|
|
1308
|
-
margin-bottom: 0;
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
.popper-container[x-placement^=right] > .popper {
|
|
1312
|
-
margin-left: 5px;
|
|
1313
|
-
}
|
|
1314
|
-
.popper-container[x-placement^=right] > .popper .popper-arrow {
|
|
1315
|
-
border-width: 5px 5px 5px 0;
|
|
1316
|
-
border-left-color: transparent;
|
|
1317
|
-
border-top-color: transparent;
|
|
1318
|
-
border-bottom-color: transparent;
|
|
1319
|
-
left: -5px;
|
|
1320
|
-
margin-left: 0;
|
|
1321
|
-
margin-right: 0;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
.popper-container[x-placement^=left] > .popper {
|
|
1325
|
-
margin-right: 5px;
|
|
1326
|
-
}
|
|
1327
|
-
.popper-container[x-placement^=left] > .popper .popper-arrow {
|
|
1328
|
-
border-width: 5px 0 5px 5px;
|
|
1329
|
-
border-top-color: transparent;
|
|
1330
|
-
border-right-color: transparent;
|
|
1331
|
-
border-bottom-color: transparent;
|
|
1332
|
-
right: -5px;
|
|
1333
|
-
margin-left: 0;
|
|
1334
|
-
margin-right: 0;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
/*# sourceMappingURL=Popper.css.map */
|
|
1338
|
-
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1339
|
-
.context-actions-listener {
|
|
1340
|
-
display: none;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.context-menu-root {
|
|
1344
|
-
position: fixed;
|
|
1345
|
-
height: 100%;
|
|
1346
|
-
width: 100%;
|
|
1347
|
-
top: 0;
|
|
1348
|
-
left: 0;
|
|
1349
|
-
pointer-events: none;
|
|
1350
|
-
z-index: 1060;
|
|
1351
|
-
}
|
|
1352
|
-
.context-menu-root.active {
|
|
1353
|
-
pointer-events: all;
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
.context-menu-container {
|
|
1357
|
-
pointer-events: auto;
|
|
1358
|
-
position: fixed;
|
|
1359
|
-
background-color: #555356;
|
|
1360
|
-
color: #f0f0ee;
|
|
1361
|
-
z-index: initial;
|
|
1362
|
-
min-width: 10rem;
|
|
1363
|
-
max-width: 30rem;
|
|
1364
|
-
text-align: left;
|
|
1365
|
-
border-radius: 4px;
|
|
1366
|
-
background-clip: border-box;
|
|
1367
|
-
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
1368
|
-
max-height: 100vh;
|
|
1369
|
-
overflow-y: auto;
|
|
1370
|
-
}
|
|
1371
|
-
.context-menu-container.has-overflow {
|
|
1372
|
-
overflow-y: scroll;
|
|
1373
|
-
}
|
|
1374
|
-
.context-menu-container hr {
|
|
1375
|
-
margin-top: 0;
|
|
1376
|
-
margin-bottom: 0;
|
|
1377
|
-
background-color: #403e41;
|
|
1378
|
-
}
|
|
1379
|
-
.context-menu-container .custom-menu-item {
|
|
1380
|
-
width: 100%;
|
|
1381
|
-
color: #f0f0ee;
|
|
1382
|
-
white-space: nowrap;
|
|
1383
|
-
text-decoration: none;
|
|
1384
|
-
background-color: transparent;
|
|
1385
|
-
text-align: left;
|
|
1386
|
-
}
|
|
1387
|
-
.context-menu-container .btn-context-menu {
|
|
1388
|
-
border: none;
|
|
1389
|
-
width: 100%;
|
|
1390
|
-
padding: 4px 8px;
|
|
1391
|
-
color: #f0f0ee;
|
|
1392
|
-
text-decoration: none;
|
|
1393
|
-
background-color: transparent;
|
|
1394
|
-
text-align: left;
|
|
1395
|
-
cursor: pointer;
|
|
1396
|
-
user-select: none;
|
|
1397
|
-
}
|
|
1398
|
-
.context-menu-container .btn-context-menu .btn-context-menu-wrapper {
|
|
1399
|
-
display: flex;
|
|
1400
|
-
align-items: center;
|
|
1401
|
-
justify-content: flex-start;
|
|
1402
|
-
}
|
|
1403
|
-
.context-menu-container .btn-context-menu .icon {
|
|
1404
|
-
margin-right: 0.5rem;
|
|
1405
|
-
width: 1rem;
|
|
1406
|
-
flex-grow: 0;
|
|
1407
|
-
text-align: center;
|
|
1408
|
-
}
|
|
1409
|
-
.context-menu-container .btn-context-menu .icon.outline {
|
|
1410
|
-
stroke: #555356;
|
|
1411
|
-
stroke-width: 60;
|
|
1412
|
-
}
|
|
1413
|
-
.context-menu-container .btn-context-menu .title {
|
|
1414
|
-
flex: 1 1 auto;
|
|
1415
|
-
text-align: left;
|
|
1416
|
-
white-space: nowrap;
|
|
1417
|
-
}
|
|
1418
|
-
.context-menu-container .btn-context-menu .shortcut {
|
|
1419
|
-
color: #929192;
|
|
1420
|
-
margin-left: 0.5rem;
|
|
1421
|
-
justify-self: flex-end;
|
|
1422
|
-
flex: 1 1 auto;
|
|
1423
|
-
text-align: right;
|
|
1424
|
-
white-space: nowrap;
|
|
1425
|
-
}
|
|
1426
|
-
.context-menu-container .btn-context-menu .submenu-indicator {
|
|
1427
|
-
color: #f0f0ee;
|
|
1428
|
-
flex-grow: 0;
|
|
1429
|
-
justify-self: flex-end;
|
|
1430
|
-
}
|
|
1431
|
-
.context-menu-container .btn-context-menu .submenu-indicator.disabled {
|
|
1432
|
-
color: #929192;
|
|
1433
|
-
}
|
|
1434
|
-
.context-menu-container .btn-context-menu.menu-title {
|
|
1435
|
-
user-select: none;
|
|
1436
|
-
cursor: default;
|
|
1437
|
-
background: #2d2a2e;
|
|
1438
|
-
}
|
|
1439
|
-
.context-menu-container .btn-context-menu.keyboard-active {
|
|
1440
|
-
background-color: rgba(72, 120, 234, 0.5);
|
|
1441
|
-
}
|
|
1442
|
-
.context-menu-container .btn-context-menu:focus,
|
|
1443
|
-
.context-menu-container .btn-context-menu.active {
|
|
1444
|
-
background-color: #4878ea;
|
|
1445
|
-
}
|
|
1446
|
-
.context-menu-container .btn-context-menu:focus {
|
|
1447
|
-
outline: none;
|
|
1448
|
-
}
|
|
1449
|
-
.context-menu-container .btn-context-menu.active,
|
|
1450
|
-
.context-menu-container .btn-context-menu.keyboard-active,
|
|
1451
|
-
.context-menu-container .btn-context-menu:focus:not(.disabled) {
|
|
1452
|
-
color: #f0f0ee;
|
|
1453
|
-
}
|
|
1454
|
-
.context-menu-container .btn-context-menu.active .shortcut,
|
|
1455
|
-
.context-menu-container .btn-context-menu.keyboard-active .shortcut,
|
|
1456
|
-
.context-menu-container .btn-context-menu:focus:not(.disabled) .shortcut {
|
|
1457
|
-
color: #a4bcf5;
|
|
1458
|
-
}
|
|
1459
|
-
.context-menu-container .btn-context-menu.disabled {
|
|
1460
|
-
color: #929192;
|
|
1461
|
-
background-color: #555356;
|
|
1462
|
-
}
|
|
1463
|
-
.context-menu-container .context-menu-item:last-child > .btn-context-menu {
|
|
1464
|
-
border-bottom-left-radius: 4px;
|
|
1465
|
-
border-bottom-right-radius: 4px;
|
|
1466
|
-
}
|
|
1467
|
-
.context-menu-container .context-menu-item:first-child > .btn-context-menu {
|
|
1468
|
-
border-top-left-radius: 4px;
|
|
1469
|
-
border-top-right-radius: 4px;
|
|
1470
|
-
}
|
|
1471
|
-
.context-menu-container .context-menu-group-header {
|
|
1472
|
-
margin: 0.5rem 0.75rem 0.25rem 0.75rem;
|
|
1473
|
-
color: #c0bfbf;
|
|
1474
|
-
white-space: nowrap;
|
|
1475
|
-
text-decoration: none;
|
|
1476
|
-
background-color: transparent;
|
|
1477
|
-
text-align: left;
|
|
1478
|
-
cursor: default;
|
|
1479
|
-
user-select: none;
|
|
1480
|
-
font-weight: 500;
|
|
1481
|
-
border-bottom: 1px solid #5b5a5c;
|
|
1482
|
-
}
|
|
1483
|
-
.context-menu-container .loading {
|
|
1484
|
-
padding: 0.25rem 1.5rem;
|
|
1485
|
-
width: 100%;
|
|
1486
|
-
display: block;
|
|
1487
|
-
text-align: center;
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
.context-menu-container:focus {
|
|
1491
|
-
outline: none;
|
|
1492
|
-
}
|
|
1493
|
-
|
|
1494
|
-
/*# sourceMappingURL=ContextActions.css.map */
|
|
1495
|
-
.loading-spinner-large {
|
|
1496
|
-
font-size: 64px;
|
|
1497
|
-
}
|
|
1498
|
-
.loading-spinner-large .svg-inline--fa {
|
|
1499
|
-
font-size: inherit;
|
|
1500
|
-
}
|
|
1501
|
-
|
|
1502
|
-
/*# sourceMappingURL=LoadingSpinner.css.map */
|
|
1503
|
-
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1504
|
-
.iris-panel-message-overlay {
|
|
1505
|
-
text-align: center;
|
|
1506
|
-
display: flex;
|
|
1507
|
-
flex-direction: column;
|
|
1508
|
-
justify-content: center;
|
|
1509
|
-
white-space: pre-line;
|
|
1510
|
-
overflow: hidden;
|
|
1511
|
-
}
|
|
1512
|
-
.iris-panel-message-overlay .message-content {
|
|
1513
|
-
font-size: 1.2rem;
|
|
1514
|
-
}
|
|
1515
|
-
.iris-panel-message-overlay .message-content .message-icon {
|
|
1516
|
-
font-size: 64px;
|
|
1186
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M10.072 8.024L5.715 3.667l.618-.62L11 7.716v.618L6.333 13l-.618-.619 4.357-4.357z'/%3E%3C/svg%3E");
|
|
1517
1187
|
}
|
|
1518
|
-
.
|
|
1519
|
-
|
|
1188
|
+
.lm_controls .lm_tabpreviousbutton {
|
|
1189
|
+
background-size: 16px;
|
|
1190
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f0f0ee' d='M5.928 7.976l4.357 4.357-.618.62L5 8.284v-.618L9.667 3l.618.619-4.357 4.357z'/%3E%3C/svg%3E");
|
|
1520
1191
|
}
|
|
1521
1192
|
|
|
1522
|
-
.
|
|
1523
|
-
|
|
1193
|
+
.lm_tabdropdown_list {
|
|
1194
|
+
z-index: 1000;
|
|
1195
|
+
background: #242125;
|
|
1196
|
+
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
1197
|
+
border-radius: 4px;
|
|
1198
|
+
max-width: 12rem;
|
|
1199
|
+
margin: 0;
|
|
1200
|
+
padding: 0;
|
|
1201
|
+
list-style-type: none;
|
|
1524
1202
|
}
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
.
|
|
1529
|
-
|
|
1530
|
-
display: inline-block;
|
|
1531
|
-
border: 1px solid #929192;
|
|
1532
|
-
padding: 0.375rem 1.5rem;
|
|
1533
|
-
color: #f0f0ee;
|
|
1534
|
-
background: #555356;
|
|
1203
|
+
.lm_tabdropdown_list .lm_tabdropdown_search {
|
|
1204
|
+
padding: 0.25rem;
|
|
1205
|
+
}
|
|
1206
|
+
.lm_tabdropdown_list .lm_tabdropdown_search input {
|
|
1207
|
+
padding: 0.375rem 0.75rem;
|
|
1535
1208
|
line-height: 1.5;
|
|
1536
|
-
|
|
1209
|
+
color: #f0f0ee;
|
|
1210
|
+
background-color: #555356;
|
|
1211
|
+
border: 1px solid #929192;
|
|
1537
1212
|
border-radius: 4px;
|
|
1538
|
-
|
|
1539
|
-
cursor: pointer;
|
|
1213
|
+
max-width: 100%;
|
|
1540
1214
|
}
|
|
1541
|
-
.
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
bottom: -1px;
|
|
1545
|
-
left: 50%;
|
|
1546
|
-
transform: translate(-50%, 50%);
|
|
1547
|
-
background: #2d2a2e;
|
|
1548
|
-
width: 18px;
|
|
1549
|
-
height: 18px;
|
|
1550
|
-
border-radius: 50%;
|
|
1551
|
-
border: 1px solid #929192;
|
|
1552
|
-
transition: color 0.12s ease-in-out, background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
|
|
1215
|
+
.lm_tabdropdown_list .lm_tabdropdown_search input::placeholder {
|
|
1216
|
+
color: #929192;
|
|
1217
|
+
opacity: 1;
|
|
1553
1218
|
}
|
|
1554
|
-
.
|
|
1219
|
+
.lm_tabdropdown_list .lm_tabdropdown_search input:focus {
|
|
1555
1220
|
border-color: rgba(72, 120, 234, 0.85);
|
|
1556
1221
|
box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
|
|
1222
|
+
outline: 0;
|
|
1557
1223
|
}
|
|
1558
|
-
.
|
|
1559
|
-
|
|
1560
|
-
}
|
|
1561
|
-
.btn-socketed:hover {
|
|
1562
|
-
background-color: #235de6;
|
|
1563
|
-
border-color: #235de6;
|
|
1564
|
-
}
|
|
1565
|
-
.btn-socketed:hover::after {
|
|
1566
|
-
border-color: #235de6;
|
|
1567
|
-
}
|
|
1568
|
-
.btn-socketed:active {
|
|
1569
|
-
border-color: #184ece;
|
|
1570
|
-
background-color: #184ece;
|
|
1571
|
-
}
|
|
1572
|
-
.btn-socketed .btn-socketed-icon {
|
|
1573
|
-
display: none;
|
|
1224
|
+
.lm_tabdropdown_list .lm_tabs {
|
|
1225
|
+
padding: 0;
|
|
1574
1226
|
}
|
|
1575
|
-
.
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1227
|
+
.lm_tabdropdown_list .lm_tab {
|
|
1228
|
+
background: #242125;
|
|
1229
|
+
color: #c0bfbf;
|
|
1230
|
+
box-shadow: none;
|
|
1579
1231
|
}
|
|
1580
|
-
.
|
|
1581
|
-
|
|
1232
|
+
.lm_tabdropdown_list .lm_tab.lm_keyboard_active {
|
|
1233
|
+
color: #c0bfbf;
|
|
1234
|
+
background-color: #343e5d;
|
|
1582
1235
|
}
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
border-color: #4878ea;
|
|
1236
|
+
.lm_tabdropdown_list .lm_tab:hover {
|
|
1237
|
+
color: #f0f0ee;
|
|
1586
1238
|
background-color: #4878ea;
|
|
1587
1239
|
}
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1240
|
+
|
|
1241
|
+
.lm_maximised {
|
|
1242
|
+
border: 15px solid rgba(26, 23, 26, 0.85);
|
|
1243
|
+
height: 100% !important;
|
|
1244
|
+
width: 100% !important;
|
|
1591
1245
|
}
|
|
1592
|
-
.
|
|
1593
|
-
|
|
1594
|
-
position: absolute;
|
|
1595
|
-
bottom: 1px;
|
|
1596
|
-
left: 50%;
|
|
1597
|
-
transform: translate(-50%, 9px);
|
|
1598
|
-
z-index: 1;
|
|
1246
|
+
.lm_maximised .lm_items {
|
|
1247
|
+
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
1599
1248
|
}
|
|
1600
|
-
.
|
|
1601
|
-
|
|
1602
|
-
background-
|
|
1249
|
+
.lm_maximised .lm_controls .lm_maximise {
|
|
1250
|
+
opacity: 0.7;
|
|
1251
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fcfcfa' d='M14 8v1H3V8h11z'/%3E%3C/svg%3E");
|
|
1603
1252
|
}
|
|
1604
|
-
.
|
|
1605
|
-
|
|
1606
|
-
border-color: #1a171a;
|
|
1253
|
+
.lm_maximised .lm_controls .lm_maximise:hover {
|
|
1254
|
+
opacity: 1;
|
|
1607
1255
|
}
|
|
1608
1256
|
|
|
1609
|
-
.
|
|
1610
|
-
|
|
1611
|
-
border-color: rgba(249, 93, 132, 0.85);
|
|
1612
|
-
}
|
|
1613
|
-
.btn-socketed.is-invalid::after,
|
|
1614
|
-
.btn-socketed.btn-socketed-linked.is-invalid::after {
|
|
1615
|
-
border-color: #f95d84;
|
|
1616
|
-
background-color: #f95d84;
|
|
1257
|
+
.lm_tabs:empty + .lm_controls .lm_maximise {
|
|
1258
|
+
display: none;
|
|
1617
1259
|
}
|
|
1618
|
-
|
|
1619
|
-
.
|
|
1260
|
+
|
|
1261
|
+
.lm_tab .editor-unsaved-indicator {
|
|
1620
1262
|
display: none;
|
|
1263
|
+
margin-right: 5px;
|
|
1264
|
+
width: 8px;
|
|
1265
|
+
height: 8px;
|
|
1266
|
+
border-radius: 50%;
|
|
1267
|
+
background: #4878ea;
|
|
1621
1268
|
}
|
|
1622
|
-
.
|
|
1623
|
-
|
|
1624
|
-
color: #555356;
|
|
1625
|
-
display: block;
|
|
1626
|
-
position: absolute;
|
|
1627
|
-
bottom: 1px;
|
|
1628
|
-
left: 50%;
|
|
1629
|
-
transform: translate(-50%, 9px);
|
|
1630
|
-
z-index: 1;
|
|
1269
|
+
.lm_tab .editor-unsaved-indicator.is-unsaved {
|
|
1270
|
+
display: inline-block;
|
|
1631
1271
|
}
|
|
1632
|
-
|
|
1633
|
-
.
|
|
1634
|
-
|
|
1272
|
+
|
|
1273
|
+
.lm_dragging .js-plotly-plot .plotly svg,
|
|
1274
|
+
.lm_dragging .js-plotly-plot .plotly g,
|
|
1275
|
+
.lm_dragging .js-plotly-plot .plotly rect,
|
|
1276
|
+
.lm_dragging .js-plotly-plot .plotly path {
|
|
1277
|
+
pointer-events: none !important;
|
|
1635
1278
|
}
|
|
1636
|
-
|
|
1637
|
-
.
|
|
1638
|
-
.
|
|
1639
|
-
|
|
1640
|
-
|
|
1279
|
+
|
|
1280
|
+
/*# sourceMappingURL=GoldenLayout.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1281
|
+
.panel-placeholder {
|
|
1282
|
+
display: flex;
|
|
1283
|
+
flex-direction: column;
|
|
1284
|
+
justify-content: center;
|
|
1285
|
+
min-height: 100%;
|
|
1286
|
+
max-height: 100%;
|
|
1287
|
+
text-align: center;
|
|
1288
|
+
overflow: hidden;
|
|
1641
1289
|
}
|
|
1642
|
-
.
|
|
1643
|
-
|
|
1644
|
-
.btn-socketed.btn-socketed-linked.is-invalid:disabled:hover::after {
|
|
1645
|
-
background-color: #373438;
|
|
1646
|
-
border-color: #1a171a;
|
|
1290
|
+
.panel-placeholder div {
|
|
1291
|
+
padding: 1rem;
|
|
1647
1292
|
}
|
|
1648
1293
|
|
|
1649
|
-
/*# sourceMappingURL=
|
|
1294
|
+
/*# sourceMappingURL=PanelPlaceholder.css.map */
|
|
1650
1295
|
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1651
1296
|
.panel-error-boundary {
|
|
1652
1297
|
height: 100%;
|
|
@@ -1660,80 +1305,11 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
1660
1305
|
}
|
|
1661
1306
|
|
|
1662
1307
|
/*# sourceMappingURL=Dashboard.css.map */
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
/*# sourceMappingURL=ChartTheme.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1667
|
-
.plotly-notifier {
|
|
1668
|
-
margin-right: 15px;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
.plotly-notifier .notifier-note {
|
|
1672
|
-
color: #f0f0ee !important;
|
|
1673
|
-
border: 0 !important;
|
|
1674
|
-
border-radius: 2px !important;
|
|
1675
|
-
background: #555356 !important;
|
|
1676
|
-
overflow-wrap: normal !important;
|
|
1677
|
-
hyphens: unset !important;
|
|
1678
|
-
margin-bottom: 0.5rem !important;
|
|
1679
|
-
box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45) !important;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
.plotly-notifier .notifier-close {
|
|
1683
|
-
color: #929192 !important;
|
|
1684
|
-
transition: all 0.2s ease-in-out !important;
|
|
1685
|
-
}
|
|
1686
|
-
.plotly-notifier .notifier-close:hover {
|
|
1687
|
-
color: #f0f0ee !important;
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
|
-
.chart-wrapper {
|
|
1691
|
-
background: #2d2a2e;
|
|
1692
|
-
}
|
|
1693
|
-
.chart-wrapper .plot-container .cartesianlayer text {
|
|
1694
|
-
user-select: none;
|
|
1695
|
-
}
|
|
1696
|
-
.chart-wrapper .plot-container .hovertext path,
|
|
1697
|
-
.chart-wrapper .plot-container .axistext path {
|
|
1698
|
-
stroke: none !important;
|
|
1699
|
-
}
|
|
1700
|
-
.chart-wrapper .plot-container .axistext path {
|
|
1701
|
-
fill: #555356 !important;
|
|
1702
|
-
box-shadow: 4px 4px #1a171a;
|
|
1703
|
-
}
|
|
1704
|
-
.chart-wrapper .plot-container .zoomlayer .zoombox {
|
|
1705
|
-
fill: rgba(0, 0, 0, 0.5) !important;
|
|
1706
|
-
}
|
|
1707
|
-
.chart-wrapper .plot-container .zoomlayer .zoombox-corners {
|
|
1708
|
-
fill: #f0f0ee;
|
|
1709
|
-
stroke: #211f22;
|
|
1710
|
-
}
|
|
1711
|
-
.chart-wrapper .js-plotly-plot .plotly [data-title]::before {
|
|
1712
|
-
border-color: transparent transparent #403e41;
|
|
1713
|
-
z-index: 1002;
|
|
1714
|
-
}
|
|
1715
|
-
.chart-wrapper .js-plotly-plot .plotly [data-title]::after {
|
|
1716
|
-
border-radius: 4px;
|
|
1717
|
-
background: #403e41;
|
|
1718
|
-
color: #f0f0ee;
|
|
1719
|
-
padding: 0.25rem 0.5rem;
|
|
1720
|
-
box-shadow: 0 0.1rem 1.5rem 0.1rem rgba(26, 23, 26, 0.8);
|
|
1721
|
-
z-index: 1001;
|
|
1722
|
-
}
|
|
1723
|
-
.chart-wrapper .js-plotly-plot .plotly .modebar {
|
|
1724
|
-
z-index: auto;
|
|
1725
|
-
}
|
|
1726
|
-
.chart-wrapper .js-plotly-plot .plotly .modebar .modebar-btn[data-attr=animation-spin] svg {
|
|
1727
|
-
animation: fa-spin 2s infinite linear;
|
|
1728
|
-
}
|
|
1729
|
-
.chart-wrapper .js-plotly-plot .plotly .modebar .modebar-btn[data-attr=fill-active] svg path {
|
|
1730
|
-
fill: rgba(255, 255, 255, 0.7) !important;
|
|
1731
|
-
}
|
|
1732
|
-
.chart-wrapper .js-plotly-plot .plotly .modebar .modebar-btn[data-attr=fill-warning] svg path {
|
|
1733
|
-
fill: #f37e3f !important;
|
|
1308
|
+
.dh-panel {
|
|
1309
|
+
position: relative;
|
|
1734
1310
|
}
|
|
1735
1311
|
|
|
1736
|
-
/*# sourceMappingURL=
|
|
1312
|
+
/*# sourceMappingURL=Panel.css.map */
|
|
1737
1313
|
/* stylelint-disable scss/at-import-no-partial-leading-underscore */
|
|
1738
1314
|
.tab-tooltip-grid-container {
|
|
1739
1315
|
display: grid;
|