@deephaven/js-plugin-plotly-express 0.2.1-alpha.18

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.
Files changed (4) hide show
  1. package/LICENSE +176 -0
  2. package/dist/index.js +104840 -0
  3. package/dist/style.css +3328 -0
  4. package/package.json +58 -0
package/dist/style.css ADDED
@@ -0,0 +1,3328 @@
1
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
2
+ .lm_root {
3
+ position: relative;
4
+ }
5
+
6
+ .lm_row > .lm_item {
7
+ float: left;
8
+ }
9
+
10
+ .lm_content {
11
+ overflow: hidden;
12
+ position: relative;
13
+ outline: 0;
14
+ }
15
+
16
+ .lm_dragging,
17
+ .lm_dragging * {
18
+ cursor: grabbing !important;
19
+ user-select: none;
20
+ }
21
+
22
+ .lm_maximised {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ z-index: 40;
27
+ }
28
+
29
+ .lm_maximise_placeholder {
30
+ display: none;
31
+ }
32
+
33
+ .lm_splitter {
34
+ position: relative;
35
+ z-index: 20;
36
+ }
37
+ .lm_splitter:hover, .lm_splitter.lm_dragging {
38
+ background: orange;
39
+ }
40
+ .lm_splitter.lm_vertical .lm_drag_handle {
41
+ width: 100%;
42
+ position: absolute;
43
+ cursor: ns-resize;
44
+ }
45
+ .lm_splitter.lm_horizontal {
46
+ float: left;
47
+ height: 100%;
48
+ }
49
+ .lm_splitter.lm_horizontal .lm_drag_handle {
50
+ height: 100%;
51
+ position: absolute;
52
+ cursor: ew-resize;
53
+ }
54
+
55
+ .lm_header {
56
+ display: flex;
57
+ justify-content: space-between;
58
+ max-width: 100%;
59
+ z-index: 12;
60
+ position: relative;
61
+ }
62
+ .lm_header.lm_dropdown_open {
63
+ z-index: 22;
64
+ }
65
+ .lm_header [class^=lm_] {
66
+ box-sizing: content-box !important;
67
+ }
68
+ .lm_header .lm_controls {
69
+ display: flex;
70
+ user-select: none;
71
+ }
72
+ .lm_header .lm_controls > li {
73
+ cursor: pointer;
74
+ float: left;
75
+ width: 18px;
76
+ height: 18px;
77
+ text-align: center;
78
+ }
79
+ .lm_header .lm_controls > li[disabled] {
80
+ cursor: default;
81
+ opacity: 0.1;
82
+ }
83
+ .lm_header ul {
84
+ margin: 0;
85
+ padding: 0;
86
+ list-style-type: none;
87
+ }
88
+ .lm_header .lm_tabs {
89
+ display: flex;
90
+ flex-grow: 1;
91
+ overflow: hidden;
92
+ }
93
+ .lm_header .lm_tab {
94
+ cursor: pointer;
95
+ height: 14px;
96
+ margin-top: 1px;
97
+ padding: 0px 10px 5px;
98
+ padding-right: 25px;
99
+ position: relative;
100
+ min-width: 0;
101
+ flex-shrink: 0;
102
+ }
103
+ .lm_header .lm_tab .lm_title {
104
+ display: inline-block;
105
+ white-space: nowrap;
106
+ overflow: hidden;
107
+ text-overflow: ellipsis;
108
+ max-width: 100%;
109
+ }
110
+ .lm_header .lm_tab .lm_close_tab {
111
+ width: 14px;
112
+ height: 14px;
113
+ position: absolute;
114
+ top: 0;
115
+ right: 0;
116
+ text-align: center;
117
+ }
118
+
119
+ .lm_stack.lm_left .lm_header,
120
+ .lm_stack.lm_right .lm_header {
121
+ height: 100%;
122
+ }
123
+
124
+ .lm_dragProxy.lm_left .lm_header,
125
+ .lm_dragProxy.lm_right .lm_header,
126
+ .lm_stack.lm_left .lm_header,
127
+ .lm_stack.lm_right .lm_header {
128
+ width: 20px;
129
+ float: left;
130
+ vertical-align: top;
131
+ }
132
+ .lm_dragProxy.lm_left .lm_header .lm_tabs,
133
+ .lm_dragProxy.lm_right .lm_header .lm_tabs,
134
+ .lm_stack.lm_left .lm_header .lm_tabs,
135
+ .lm_stack.lm_right .lm_header .lm_tabs {
136
+ transform-origin: left top;
137
+ top: 0;
138
+ width: 1000px;
139
+ /*hack*/
140
+ }
141
+ .lm_dragProxy.lm_left .lm_header .lm_controls,
142
+ .lm_dragProxy.lm_right .lm_header .lm_controls,
143
+ .lm_stack.lm_left .lm_header .lm_controls,
144
+ .lm_stack.lm_right .lm_header .lm_controls {
145
+ bottom: 0;
146
+ }
147
+ .lm_dragProxy.lm_left .lm_items,
148
+ .lm_dragProxy.lm_right .lm_items,
149
+ .lm_stack.lm_left .lm_items,
150
+ .lm_stack.lm_right .lm_items {
151
+ float: left;
152
+ }
153
+
154
+ .lm_dragProxy.lm_left .lm_header .lm_tabs,
155
+ .lm_stack.lm_left .lm_header .lm_tabs {
156
+ transform: rotate(-90deg) scaleX(-1);
157
+ left: 0;
158
+ }
159
+ .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,
160
+ .lm_stack.lm_left .lm_header .lm_tabs .lm_tab {
161
+ transform: scaleX(-1);
162
+ margin-top: 1px;
163
+ }
164
+ .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list,
165
+ .lm_stack.lm_left .lm_header .lm_tabdropdown_list {
166
+ top: initial;
167
+ right: initial;
168
+ left: 20px;
169
+ }
170
+
171
+ .lm_dragProxy.lm_right .lm_content {
172
+ float: left;
173
+ }
174
+
175
+ .lm_dragProxy.lm_right .lm_header .lm_tabs,
176
+ .lm_stack.lm_right .lm_header .lm_tabs {
177
+ transform: rotate(90deg) scaleX(1);
178
+ left: 100%;
179
+ margin-left: 0;
180
+ }
181
+ .lm_dragProxy.lm_right .lm_header .lm_controls,
182
+ .lm_stack.lm_right .lm_header .lm_controls {
183
+ left: 3px;
184
+ }
185
+ .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list,
186
+ .lm_stack.lm_right .lm_header .lm_tabdropdown_list {
187
+ top: initial;
188
+ right: 20px;
189
+ }
190
+
191
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab,
192
+ .lm_stack.lm_bottom .lm_header .lm_tab {
193
+ margin-top: 0;
194
+ border-top: none;
195
+ }
196
+ .lm_dragProxy.lm_bottom .lm_header .lm_controls,
197
+ .lm_stack.lm_bottom .lm_header .lm_controls {
198
+ top: 3px;
199
+ }
200
+ .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,
201
+ .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {
202
+ top: initial;
203
+ bottom: 20px;
204
+ }
205
+
206
+ .lm_drop_tab_placeholder {
207
+ flex-shrink: 0;
208
+ }
209
+
210
+ .lm_header .lm_controls .lm_tabdropdown:before {
211
+ content: "";
212
+ width: 0;
213
+ height: 0;
214
+ vertical-align: middle;
215
+ display: inline-block;
216
+ border-top: 5px dashed;
217
+ border-right: 5px solid transparent;
218
+ border-left: 5px solid transparent;
219
+ color: white;
220
+ }
221
+ .lm_header .lm_tabdropdown_list {
222
+ position: absolute;
223
+ top: 20px;
224
+ right: 0;
225
+ z-index: 5;
226
+ overflow-y: auto;
227
+ overflow-x: hidden;
228
+ }
229
+ .lm_header .lm_tabdropdown_list .lm_tabs {
230
+ flex-direction: column;
231
+ }
232
+ .lm_header .lm_tabdropdown_list .lm_tab {
233
+ padding-right: 10px;
234
+ }
235
+ .lm_header .lm_tabdropdown_list .lm_close_tab {
236
+ display: none !important;
237
+ }
238
+
239
+ /***********************************
240
+ * Drag Proxy
241
+ ***********************************/
242
+ .lm_dragProxy {
243
+ position: absolute;
244
+ top: 0;
245
+ left: 0;
246
+ z-index: 30;
247
+ pointer-events: none;
248
+ }
249
+ .lm_dragProxy .lm_header {
250
+ background: transparent;
251
+ }
252
+ .lm_dragProxy .lm_content {
253
+ border-top: none;
254
+ overflow: hidden;
255
+ }
256
+
257
+ .lm_dropTargetIndicator {
258
+ display: none;
259
+ position: absolute;
260
+ z-index: 20;
261
+ pointer-events: none;
262
+ }
263
+ .lm_dropTargetIndicator .lm_inner {
264
+ width: 100%;
265
+ height: 100%;
266
+ position: relative;
267
+ top: 0;
268
+ left: 0;
269
+ }
270
+
271
+ .lm_transition_indicator {
272
+ display: none;
273
+ width: 20px;
274
+ height: 20px;
275
+ position: absolute;
276
+ top: 0;
277
+ left: 0;
278
+ z-index: 20;
279
+ }
280
+
281
+ .lm_popin {
282
+ width: 20px;
283
+ height: 20px;
284
+ position: absolute;
285
+ bottom: 0;
286
+ right: 0;
287
+ z-index: 9999;
288
+ }
289
+ .lm_popin > * {
290
+ width: 100%;
291
+ height: 100%;
292
+ position: absolute;
293
+ top: 0;
294
+ left: 0;
295
+ }
296
+ .lm_popin > .lm_bg {
297
+ z-index: 10;
298
+ }
299
+ .lm_popin > .lm_icon {
300
+ z-index: 20;
301
+ }
302
+
303
+ .lm_goldenlayout {
304
+ background: #000000;
305
+ }
306
+
307
+ .lm_content {
308
+ background: #222222;
309
+ }
310
+
311
+ .lm_dragProxy .lm_content {
312
+ box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
313
+ }
314
+
315
+ .lm_dropTargetIndicator {
316
+ box-shadow: inset 0 0 30px #000000;
317
+ outline: 1px dashed #cccccc;
318
+ transition: all 200ms ease;
319
+ }
320
+ .lm_dropTargetIndicator .lm_inner {
321
+ background: #000000;
322
+ opacity: 0.2;
323
+ }
324
+
325
+ .lm_splitter {
326
+ background: #000000;
327
+ opacity: 0.001;
328
+ transition: opacity 200ms ease;
329
+ }
330
+ .lm_splitter:hover, .lm_splitter.lm_dragging {
331
+ background: #444444;
332
+ opacity: 1;
333
+ }
334
+
335
+ .lm_header {
336
+ height: 20px;
337
+ user-select: none;
338
+ }
339
+ .lm_header.lm_selectable {
340
+ cursor: pointer;
341
+ }
342
+ .lm_header .lm_tab {
343
+ font-family: Arial, sans-serif;
344
+ font-size: 12px;
345
+ color: #999999;
346
+ background: #111111;
347
+ box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.3);
348
+ margin-right: 2px;
349
+ padding-bottom: 2px;
350
+ padding-top: 2px;
351
+ /*.lm_title // Present in LIGHT Theme
352
+ {
353
+ padding-top:1px;
354
+ }*/
355
+ }
356
+ .lm_header .lm_tab .lm_close_tab {
357
+ width: 11px;
358
+ height: 11px;
359
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAATElEQVR4nG3OwQ0DMQwDwZGRBtR/j1YJzMc5+IDoR+yCVO29g+pu981MFgqZmRdAfU7+CYWcbF11LwALjpBL0N0qybNx/RPU+gOeiS/+XCRwDlTgkQAAAABJRU5ErkJggg==);
360
+ background-position: center center;
361
+ background-repeat: no-repeat;
362
+ top: 4px;
363
+ right: 6px;
364
+ opacity: 0.4;
365
+ }
366
+ .lm_header .lm_tab .lm_close_tab:hover {
367
+ opacity: 1;
368
+ }
369
+ .lm_header .lm_tab.lm_active {
370
+ border-bottom: none;
371
+ box-shadow: 0 -2px 2px #000000;
372
+ padding-bottom: 3px;
373
+ }
374
+ .lm_header .lm_tab.lm_active .lm_close_tab {
375
+ opacity: 1;
376
+ }
377
+
378
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab,
379
+ .lm_stack.lm_bottom .lm_header .lm_tab {
380
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
381
+ }
382
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab.lm_active,
383
+ .lm_stack.lm_bottom .lm_header .lm_tab.lm_active {
384
+ box-shadow: 0 2px 2px #000000;
385
+ }
386
+
387
+ .lm_selected .lm_header {
388
+ background-color: #452500;
389
+ }
390
+
391
+ .lm_tab:hover, .lm_tab.lm_active {
392
+ background: #222222;
393
+ color: #dddddd;
394
+ }
395
+
396
+ .lm_header .lm_tabs .lm_tab.lm_keyboard_active {
397
+ color: #000000;
398
+ background: #dddddd;
399
+ }
400
+
401
+ .lm_header .lm_controls .lm_tabdropdown:before {
402
+ color: #ffffff;
403
+ }
404
+
405
+ .lm_controls > li {
406
+ position: relative;
407
+ background-position: center center;
408
+ background-repeat: no-repeat;
409
+ opacity: 0.4;
410
+ transition: opacity 300ms ease;
411
+ }
412
+ .lm_controls > li:hover {
413
+ opacity: 1;
414
+ }
415
+ .lm_controls .lm_popout {
416
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=);
417
+ }
418
+ .lm_controls .lm_maximise {
419
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKElEQVR4nGP8////fwYCgImQAgYGBgYWKM2IR81/okwajIpgvsMbVgAwgQYRVakEKQAAAABJRU5ErkJggg==);
420
+ }
421
+ .lm_controls .lm_close {
422
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
423
+ }
424
+ .lm_controls .lm_tabnextbutton {
425
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjUGBgEGBg4GBgYGFgYAKTHCARoDgABscAe0vtWukAAAAASUVORK5CYII=);
426
+ }
427
+ .lm_controls .lm_tabpreviousbutton {
428
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjYGJgYGFg4GBgEGBgUACTHCARoDgABSMAXe2fzqEAAAAASUVORK5CYII=);
429
+ }
430
+
431
+ .lm_maximised .lm_header {
432
+ background-color: #000000;
433
+ }
434
+ .lm_maximised .lm_controls .lm_maximise {
435
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJ0lEQVR4nGP8//8/AzGAiShVI1YhCwMDA8OsWbPwBmZaWhoj0SYCAN1lBxMAX4n0AAAAAElFTkSuQmCC);
436
+ }
437
+
438
+ .lm_transition_indicator {
439
+ background-color: #000000;
440
+ border: 1px dashed #555555;
441
+ }
442
+
443
+ .lm_popin {
444
+ cursor: pointer;
445
+ }
446
+ .lm_popin .lm_bg {
447
+ background: #ffffff;
448
+ opacity: 0.3;
449
+ }
450
+ .lm_popin .lm_icon {
451
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAWklEQVR4nJWOyw3AIAxDHcQC7L8jbwT3AlJBfNp3SiI7dtRaLSlKKeoA1oEsKSQZCEluexw8Tm3ohk+E7bnOUHUGcNh+HwbBygw4AZ7FN/Lt84p0l+yTflV8AKQyLdcCRJi/AAAAAElFTkSuQmCC);
452
+ background-position: center center;
453
+ background-repeat: no-repeat;
454
+ border-left: 1px solid #eeeeee;
455
+ border-top: 1px solid #eeeeee;
456
+ opacity: 0.7;
457
+ }
458
+ .lm_popin:hover .lm_icon {
459
+ opacity: 1;
460
+ }
461
+
462
+ .lm_goldenlayout {
463
+ background: #1a171a;
464
+ position: absolute;
465
+ }
466
+ .lm_goldenlayout .lm_header {
467
+ box-sizing: content-box;
468
+ height: 28px;
469
+ padding-top: 0;
470
+ background: #201e21;
471
+ box-shadow: inset 0 -1px 0 0 #1a171a;
472
+ }
473
+ .lm_goldenlayout .lm_header .lm_controls > li {
474
+ height: 100%;
475
+ width: 24px;
476
+ }
477
+
478
+ .lm_maximised {
479
+ border: 15px solid rgba(26, 23, 26, 0.25);
480
+ height: 100% !important;
481
+ width: 100% !important;
482
+ }
483
+ .lm_maximised .lm_items {
484
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
485
+ }
486
+
487
+ .lm_header .lm_controls .lm_tabpreviousbutton {
488
+ background-size: 16px;
489
+ 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");
490
+ }
491
+
492
+ .lm_header .lm_controls .lm_tabnextbutton {
493
+ background-size: 16px;
494
+ 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");
495
+ }
496
+
497
+ .lm_header .lm_controls .lm_tabdropdown {
498
+ background-size: 16px;
499
+ 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");
500
+ }
501
+ .lm_header .lm_controls .lm_tabdropdown::before {
502
+ display: none;
503
+ }
504
+
505
+ .lm_header .lm_controls .lm_maximise {
506
+ background-size: 16px;
507
+ 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");
508
+ }
509
+
510
+ .lm_tabs:empty + .lm_controls .lm_maximise {
511
+ display: none;
512
+ }
513
+
514
+ .lm_maximised .lm_header .lm_controls .lm_maximise {
515
+ opacity: 0.7;
516
+ 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");
517
+ }
518
+ .lm_maximised .lm_header .lm_controls .lm_maximise:hover {
519
+ opacity: 1;
520
+ }
521
+
522
+ .lm_header .lm_tab {
523
+ display: flex;
524
+ align-items: center;
525
+ font-family: "Fira Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Roboto", "Helvetica Neue", arial, sans-serif;
526
+ background-color: #242125;
527
+ color: #929192;
528
+ height: 28px;
529
+ font-size: 12px;
530
+ min-width: 5rem;
531
+ margin: 0;
532
+ padding: 0 0.25rem 0 0.5rem;
533
+ box-shadow: inset -1px -1px 0 0 #1a171a;
534
+ transition: color 0.15s, background-color 0.15s;
535
+ max-width: 12rem;
536
+ white-space: nowrap;
537
+ overflow: hidden;
538
+ }
539
+ .lm_header .lm_tab .lm_title {
540
+ flex-grow: 1;
541
+ padding-right: 0.25rem;
542
+ }
543
+ .lm_header .lm_tab .lm_title_before {
544
+ display: flex;
545
+ align-items: center;
546
+ }
547
+ .lm_header .lm_tab .editor-unsaved-indicator {
548
+ display: none;
549
+ margin-right: 5px;
550
+ width: 8px;
551
+ height: 8px;
552
+ border-radius: 50%;
553
+ background: #4878ea;
554
+ }
555
+ .lm_header .lm_tab .editor-unsaved-indicator.is-unsaved {
556
+ display: inline-block;
557
+ }
558
+
559
+ .lm_header .lm_tab.lm_active,
560
+ .lm_header .lm_tab.lm_active:hover {
561
+ height: 28px;
562
+ background-color: #2d2a2e;
563
+ color: #f0f0ee;
564
+ padding-bottom: 0;
565
+ box-shadow: inset -1px 0 0 0 #1a171a;
566
+ }
567
+ .lm_header .lm_tab.lm_active.lm_focusin,
568
+ .lm_header .lm_tab.lm_active:hover.lm_focusin {
569
+ box-shadow: inset 0 1px #4878ea, inset -1px 0 0 0 #1a171a;
570
+ }
571
+
572
+ .lm_window_blur .lm_header .lm_tab.lm_active.lm_focusin {
573
+ box-shadow: none;
574
+ }
575
+
576
+ .lm_content {
577
+ background: #2d2a2e;
578
+ overflow: visible;
579
+ }
580
+
581
+ .lm_header .lm_tab .lm_close_tab {
582
+ cursor: pointer;
583
+ position: relative;
584
+ top: unset;
585
+ right: unset;
586
+ width: 8px;
587
+ height: 8px;
588
+ padding: 4px;
589
+ margin-left: -0.25rem;
590
+ background-image: none;
591
+ background-color: #242125;
592
+ 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");
593
+ mask-position: center center;
594
+ mask-repeat: no-repeat;
595
+ mask-size: 8px;
596
+ opacity: 1;
597
+ transition: background-color 0.15s;
598
+ }
599
+
600
+ .lm_splitter,
601
+ .lm_splitter:hover {
602
+ background: #929192;
603
+ }
604
+
605
+ .lm_splitter.lm_dragging {
606
+ background: #c0bfbf;
607
+ }
608
+
609
+ .lm_dragProxy .lm_content {
610
+ height: 100%;
611
+ width: 100%;
612
+ box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
613
+ }
614
+ .lm_dragProxy .lm_header {
615
+ height: 28px;
616
+ }
617
+ .lm_dragProxy .lm_header .lm_tab {
618
+ border: 0;
619
+ }
620
+
621
+ .lm_header .lm_tabdropdown_list {
622
+ z-index: 1000;
623
+ background: #242125;
624
+ top: 22px;
625
+ right: 24px;
626
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
627
+ border-radius: 4px;
628
+ max-width: 12rem;
629
+ }
630
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search {
631
+ padding: 0.25rem;
632
+ }
633
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search input {
634
+ padding: 0.375rem 0.75rem;
635
+ line-height: 1.5;
636
+ color: #f0f0ee;
637
+ background-color: #555356;
638
+ border: 1px solid #929192;
639
+ border-radius: 4px;
640
+ max-width: 100%;
641
+ }
642
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search input::placeholder {
643
+ color: #929192;
644
+ opacity: 1;
645
+ }
646
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search input:focus {
647
+ border-color: rgba(72, 120, 234, 0.85);
648
+ box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
649
+ outline: 0;
650
+ }
651
+ .lm_header .lm_tabdropdown_list .lm_tab {
652
+ background: #242125;
653
+ color: #c0bfbf;
654
+ box-shadow: none;
655
+ }
656
+ .lm_header .lm_tabdropdown_list .lm_tab .editor-unsaved-indicator {
657
+ width: 10px;
658
+ height: 10px;
659
+ border: 1px solid #242125;
660
+ }
661
+ .lm_header .lm_tabdropdown_list .lm_tab.lm_keyboard_active {
662
+ color: #c0bfbf;
663
+ background-color: #343e5d;
664
+ }
665
+ .lm_header .lm_tabdropdown_list .lm_tab:hover {
666
+ color: #f0f0ee;
667
+ background-color: #4878ea;
668
+ }
669
+
670
+ body:not(.lm_dragging) .lm_header .lm_tab:not(.lm_active):hover {
671
+ color: #c0bfbf;
672
+ }
673
+
674
+ .lm_header .lm_tab.lm_active .lm_close_tab {
675
+ background-color: #2d2a2e;
676
+ }
677
+
678
+ body:not(.lm_dragging) .lm_header .lm_tab:hover .lm_close_tab {
679
+ background-color: #929192;
680
+ }
681
+
682
+ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
683
+ background-color: #fcfcfa;
684
+ }
685
+
686
+ .lm_dropTargetIndicator {
687
+ 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%);
688
+ background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
689
+ background-position: 0 top, 0 bottom, left 0, right 0;
690
+ background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
691
+ animation: march 0.5s;
692
+ animation-timing-function: linear;
693
+ animation-iteration-count: infinite;
694
+ box-sizing: border-box;
695
+ outline: 0;
696
+ box-shadow: none;
697
+ }
698
+
699
+ .lm_dropTargetIndicator .lm_inner {
700
+ box-sizing: border-box;
701
+ border: 1px solid transparent;
702
+ box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
703
+ opacity: 1;
704
+ background: rgba(72, 120, 234, 0.1);
705
+ }
706
+
707
+ .lm_dragging {
708
+ overflow: hidden;
709
+ }
710
+
711
+ .lm_dragging .app {
712
+ pointer-events: none;
713
+ }
714
+ .lm_dragging .app .lm_controls > li {
715
+ pointer-events: none;
716
+ }
717
+ .lm_dragging .app .lm_controls > li.lm_tabpreviousbutton, .lm_dragging .app .lm_controls > li.lm_tabnextbutton {
718
+ pointer-events: auto;
719
+ }
720
+ .lm_dragging .app .js-plotly-plot .plotly svg,
721
+ .lm_dragging .app .js-plotly-plot .plotly g,
722
+ .lm_dragging .app .js-plotly-plot .plotly rect,
723
+ .lm_dragging .app .js-plotly-plot .plotly path {
724
+ pointer-events: none !important;
725
+ }
726
+ .lm_dragging .app .lm_header {
727
+ pointer-events: auto;
728
+ }
729
+
730
+ /*# sourceMappingURL=GoldenLayout.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
731
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
732
+ ._lm_root_1qf9a_3 {
733
+ position: relative;
734
+ }
735
+
736
+ ._lm_row_1qf9a_7 > ._lm_item_1qf9a_7 {
737
+ float: left;
738
+ }
739
+
740
+ ._lm_content_1qf9a_11 {
741
+ overflow: hidden;
742
+ position: relative;
743
+ outline: 0;
744
+ }
745
+
746
+ ._lm_dragging_1qf9a_17,
747
+ ._lm_dragging_1qf9a_17 * {
748
+ cursor: grabbing !important;
749
+ user-select: none;
750
+ }
751
+
752
+ ._lm_maximised_1qf9a_23 {
753
+ position: absolute;
754
+ top: 0;
755
+ left: 0;
756
+ z-index: 40;
757
+ }
758
+
759
+ ._lm_maximise_placeholder_1qf9a_30 {
760
+ display: none;
761
+ }
762
+
763
+ ._lm_splitter_1qf9a_34 {
764
+ position: relative;
765
+ z-index: 20;
766
+ }
767
+ ._lm_splitter_1qf9a_34:hover, ._lm_splitter_1qf9a_34._lm_dragging_1qf9a_17 {
768
+ background: orange;
769
+ }
770
+ ._lm_splitter_1qf9a_34._lm_vertical_1qf9a_41 ._lm_drag_handle_1qf9a_41 {
771
+ width: 100%;
772
+ position: absolute;
773
+ cursor: ns-resize;
774
+ }
775
+ ._lm_splitter_1qf9a_34._lm_horizontal_1qf9a_46 {
776
+ float: left;
777
+ height: 100%;
778
+ }
779
+ ._lm_splitter_1qf9a_34._lm_horizontal_1qf9a_46 ._lm_drag_handle_1qf9a_41 {
780
+ height: 100%;
781
+ position: absolute;
782
+ cursor: ew-resize;
783
+ }
784
+
785
+ ._lm_header_1qf9a_56 {
786
+ display: flex;
787
+ justify-content: space-between;
788
+ max-width: 100%;
789
+ z-index: 12;
790
+ position: relative;
791
+ }
792
+ ._lm_header_1qf9a_56._lm_dropdown_open_1qf9a_63 {
793
+ z-index: 22;
794
+ }
795
+ ._lm_header_1qf9a_56 [class^=lm_] {
796
+ box-sizing: content-box !important;
797
+ }
798
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
799
+ display: flex;
800
+ user-select: none;
801
+ }
802
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 > li {
803
+ cursor: pointer;
804
+ float: left;
805
+ width: 18px;
806
+ height: 18px;
807
+ text-align: center;
808
+ }
809
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 > li[disabled] {
810
+ cursor: default;
811
+ opacity: 0.1;
812
+ }
813
+ ._lm_header_1qf9a_56 ul {
814
+ margin: 0;
815
+ padding: 0;
816
+ list-style-type: none;
817
+ }
818
+ ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
819
+ display: flex;
820
+ flex-grow: 1;
821
+ overflow: hidden;
822
+ }
823
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
824
+ cursor: pointer;
825
+ height: 14px;
826
+ margin-top: 1px;
827
+ padding: 0px 10px 5px;
828
+ padding-right: 25px;
829
+ position: relative;
830
+ min-width: 0;
831
+ flex-shrink: 0;
832
+ }
833
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_title_1qf9a_104 {
834
+ display: inline-block;
835
+ white-space: nowrap;
836
+ overflow: hidden;
837
+ text-overflow: ellipsis;
838
+ max-width: 100%;
839
+ }
840
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111 {
841
+ width: 14px;
842
+ height: 14px;
843
+ position: absolute;
844
+ top: 0;
845
+ right: 0;
846
+ text-align: center;
847
+ }
848
+
849
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56,
850
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 {
851
+ height: 100%;
852
+ }
853
+
854
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56,
855
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56,
856
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56,
857
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 {
858
+ width: 20px;
859
+ float: left;
860
+ vertical-align: top;
861
+ }
862
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
863
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
864
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
865
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
866
+ transform-origin: left top;
867
+ top: 0;
868
+ width: 1000px;
869
+ /*hack*/
870
+ }
871
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
872
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
873
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
874
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
875
+ bottom: 0;
876
+ }
877
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_items_1qf9a_148,
878
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_items_1qf9a_148,
879
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_items_1qf9a_148,
880
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_items_1qf9a_148 {
881
+ float: left;
882
+ }
883
+
884
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
885
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
886
+ transform: rotate(-90deg) scaleX(-1);
887
+ left: 0;
888
+ }
889
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 ._lm_tab_1qf9a_89,
890
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 ._lm_tab_1qf9a_89 {
891
+ transform: scaleX(-1);
892
+ margin-top: 1px;
893
+ }
894
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165,
895
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
896
+ top: initial;
897
+ right: initial;
898
+ left: 20px;
899
+ }
900
+
901
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_content_1qf9a_11 {
902
+ float: left;
903
+ }
904
+
905
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
906
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
907
+ transform: rotate(90deg) scaleX(1);
908
+ left: 100%;
909
+ margin-left: 0;
910
+ }
911
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
912
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
913
+ left: 3px;
914
+ }
915
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165,
916
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
917
+ top: initial;
918
+ right: 20px;
919
+ }
920
+
921
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89,
922
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
923
+ margin-top: 0;
924
+ border-top: none;
925
+ }
926
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
927
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
928
+ top: 3px;
929
+ }
930
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165,
931
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
932
+ top: initial;
933
+ bottom: 20px;
934
+ }
935
+
936
+ ._lm_drop_tab_placeholder_1qf9a_207 {
937
+ flex-shrink: 0;
938
+ }
939
+
940
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165:before {
941
+ content: "";
942
+ width: 0;
943
+ height: 0;
944
+ vertical-align: middle;
945
+ display: inline-block;
946
+ border-top: 5px dashed;
947
+ border-right: 5px solid transparent;
948
+ border-left: 5px solid transparent;
949
+ color: white;
950
+ }
951
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
952
+ position: absolute;
953
+ top: 20px;
954
+ right: 0;
955
+ z-index: 5;
956
+ overflow-y: auto;
957
+ overflow-x: hidden;
958
+ }
959
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabs_1qf9a_89 {
960
+ flex-direction: column;
961
+ }
962
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89 {
963
+ padding-right: 10px;
964
+ }
965
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_close_tab_1qf9a_111 {
966
+ display: none !important;
967
+ }
968
+
969
+ /***********************************
970
+ * Drag Proxy
971
+ ***********************************/
972
+ ._lm_dragProxy_1qf9a_125 {
973
+ position: absolute;
974
+ top: 0;
975
+ left: 0;
976
+ z-index: 30;
977
+ pointer-events: none;
978
+ }
979
+ ._lm_dragProxy_1qf9a_125 ._lm_header_1qf9a_56 {
980
+ background: transparent;
981
+ }
982
+ ._lm_dragProxy_1qf9a_125 ._lm_content_1qf9a_11 {
983
+ border-top: none;
984
+ overflow: hidden;
985
+ }
986
+
987
+ ._lm_dropTargetIndicator_1qf9a_258 {
988
+ display: none;
989
+ position: absolute;
990
+ z-index: 20;
991
+ pointer-events: none;
992
+ }
993
+ ._lm_dropTargetIndicator_1qf9a_258 ._lm_inner_1qf9a_264 {
994
+ width: 100%;
995
+ height: 100%;
996
+ position: relative;
997
+ top: 0;
998
+ left: 0;
999
+ }
1000
+
1001
+ ._lm_transition_indicator_1qf9a_272 {
1002
+ display: none;
1003
+ width: 20px;
1004
+ height: 20px;
1005
+ position: absolute;
1006
+ top: 0;
1007
+ left: 0;
1008
+ z-index: 20;
1009
+ }
1010
+
1011
+ ._lm_popin_1qf9a_282 {
1012
+ width: 20px;
1013
+ height: 20px;
1014
+ position: absolute;
1015
+ bottom: 0;
1016
+ right: 0;
1017
+ z-index: 9999;
1018
+ }
1019
+ ._lm_popin_1qf9a_282 > * {
1020
+ width: 100%;
1021
+ height: 100%;
1022
+ position: absolute;
1023
+ top: 0;
1024
+ left: 0;
1025
+ }
1026
+ ._lm_popin_1qf9a_282 > ._lm_bg_1qf9a_297 {
1027
+ z-index: 10;
1028
+ }
1029
+ ._lm_popin_1qf9a_282 > ._lm_icon_1qf9a_300 {
1030
+ z-index: 20;
1031
+ }
1032
+
1033
+ ._lm_goldenlayout_1qf9a_304 {
1034
+ background: #000000;
1035
+ }
1036
+
1037
+ ._lm_content_1qf9a_11 {
1038
+ background: #222222;
1039
+ }
1040
+
1041
+ ._lm_dragProxy_1qf9a_125 ._lm_content_1qf9a_11 {
1042
+ box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
1043
+ }
1044
+
1045
+ ._lm_dropTargetIndicator_1qf9a_258 {
1046
+ box-shadow: inset 0 0 30px #000000;
1047
+ outline: 1px dashed #cccccc;
1048
+ transition: all 200ms ease;
1049
+ }
1050
+ ._lm_dropTargetIndicator_1qf9a_258 ._lm_inner_1qf9a_264 {
1051
+ background: #000000;
1052
+ opacity: 0.2;
1053
+ }
1054
+
1055
+ ._lm_splitter_1qf9a_34 {
1056
+ background: #000000;
1057
+ opacity: 0.001;
1058
+ transition: opacity 200ms ease;
1059
+ }
1060
+ ._lm_splitter_1qf9a_34:hover, ._lm_splitter_1qf9a_34._lm_dragging_1qf9a_17 {
1061
+ background: #444444;
1062
+ opacity: 1;
1063
+ }
1064
+
1065
+ ._lm_header_1qf9a_56 {
1066
+ height: 20px;
1067
+ user-select: none;
1068
+ }
1069
+ ._lm_header_1qf9a_56._lm_selectable_1qf9a_340 {
1070
+ cursor: pointer;
1071
+ }
1072
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
1073
+ font-family: Arial, sans-serif;
1074
+ font-size: 12px;
1075
+ color: #999999;
1076
+ background: #111111;
1077
+ box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.3);
1078
+ margin-right: 2px;
1079
+ padding-bottom: 2px;
1080
+ padding-top: 2px;
1081
+ /*.lm_title // Present in LIGHT Theme
1082
+ {
1083
+ padding-top:1px;
1084
+ }*/
1085
+ }
1086
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111 {
1087
+ width: 11px;
1088
+ height: 11px;
1089
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAATElEQVR4nG3OwQ0DMQwDwZGRBtR/j1YJzMc5+IDoR+yCVO29g+pu981MFgqZmRdAfU7+CYWcbF11LwALjpBL0N0qybNx/RPU+gOeiS/+XCRwDlTgkQAAAABJRU5ErkJggg==);
1090
+ background-position: center center;
1091
+ background-repeat: no-repeat;
1092
+ top: 4px;
1093
+ right: 6px;
1094
+ opacity: 0.4;
1095
+ }
1096
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111:hover {
1097
+ opacity: 1;
1098
+ }
1099
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 {
1100
+ border-bottom: none;
1101
+ box-shadow: 0 -2px 2px #000000;
1102
+ padding-bottom: 3px;
1103
+ }
1104
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 ._lm_close_tab_1qf9a_111 {
1105
+ opacity: 1;
1106
+ }
1107
+
1108
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89,
1109
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
1110
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
1111
+ }
1112
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370,
1113
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 {
1114
+ box-shadow: 0 2px 2px #000000;
1115
+ }
1116
+
1117
+ ._lm_selected_1qf9a_388 ._lm_header_1qf9a_56 {
1118
+ background-color: #452500;
1119
+ }
1120
+
1121
+ ._lm_tab_1qf9a_89:hover, ._lm_tab_1qf9a_89._lm_active_1qf9a_370 {
1122
+ background: #222222;
1123
+ color: #dddddd;
1124
+ }
1125
+
1126
+ ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 ._lm_tab_1qf9a_89._lm_keyboard_active_1qf9a_397 {
1127
+ color: #000000;
1128
+ background: #dddddd;
1129
+ }
1130
+
1131
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165:before {
1132
+ color: #ffffff;
1133
+ }
1134
+
1135
+ ._lm_controls_1qf9a_69 > li {
1136
+ position: relative;
1137
+ background-position: center center;
1138
+ background-repeat: no-repeat;
1139
+ opacity: 0.4;
1140
+ transition: opacity 300ms ease;
1141
+ }
1142
+ ._lm_controls_1qf9a_69 > li:hover {
1143
+ opacity: 1;
1144
+ }
1145
+ ._lm_controls_1qf9a_69 ._lm_popout_1qf9a_416 {
1146
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=);
1147
+ }
1148
+ ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
1149
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKElEQVR4nGP8////fwYCgImQAgYGBgYWKM2IR81/okwajIpgvsMbVgAwgQYRVakEKQAAAABJRU5ErkJggg==);
1150
+ }
1151
+ ._lm_controls_1qf9a_69 ._lm_close_1qf9a_111 {
1152
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
1153
+ }
1154
+ ._lm_controls_1qf9a_69 ._lm_tabnextbutton_1qf9a_425 {
1155
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjUGBgEGBg4GBgYGFgYAKTHCARoDgABscAe0vtWukAAAAASUVORK5CYII=);
1156
+ }
1157
+ ._lm_controls_1qf9a_69 ._lm_tabpreviousbutton_1qf9a_428 {
1158
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjYGJgYGFg4GBgEGBgUACTHCARoDgABSMAXe2fzqEAAAAASUVORK5CYII=);
1159
+ }
1160
+
1161
+ ._lm_maximised_1qf9a_23 ._lm_header_1qf9a_56 {
1162
+ background-color: #000000;
1163
+ }
1164
+ ._lm_maximised_1qf9a_23 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
1165
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJ0lEQVR4nGP8//8/AzGAiShVI1YhCwMDA8OsWbPwBmZaWhoj0SYCAN1lBxMAX4n0AAAAAElFTkSuQmCC);
1166
+ }
1167
+
1168
+ ._lm_transition_indicator_1qf9a_272 {
1169
+ background-color: #000000;
1170
+ border: 1px dashed #555555;
1171
+ }
1172
+
1173
+ ._lm_popin_1qf9a_282 {
1174
+ cursor: pointer;
1175
+ }
1176
+ ._lm_popin_1qf9a_282 ._lm_bg_1qf9a_297 {
1177
+ background: #ffffff;
1178
+ opacity: 0.3;
1179
+ }
1180
+ ._lm_popin_1qf9a_282 ._lm_icon_1qf9a_300 {
1181
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAWklEQVR4nJWOyw3AIAxDHcQC7L8jbwT3AlJBfNp3SiI7dtRaLSlKKeoA1oEsKSQZCEluexw8Tm3ohk+E7bnOUHUGcNh+HwbBygw4AZ7FN/Lt84p0l+yTflV8AKQyLdcCRJi/AAAAAElFTkSuQmCC);
1182
+ background-position: center center;
1183
+ background-repeat: no-repeat;
1184
+ border-left: 1px solid #eeeeee;
1185
+ border-top: 1px solid #eeeeee;
1186
+ opacity: 0.7;
1187
+ }
1188
+ ._lm_popin_1qf9a_282:hover ._lm_icon_1qf9a_300 {
1189
+ opacity: 1;
1190
+ }
1191
+
1192
+ ._lm_goldenlayout_1qf9a_304 {
1193
+ background: #1a171a;
1194
+ position: absolute;
1195
+ }
1196
+ ._lm_goldenlayout_1qf9a_304 ._lm_header_1qf9a_56 {
1197
+ box-sizing: content-box;
1198
+ height: 28px;
1199
+ padding-top: 0;
1200
+ background: #201e21;
1201
+ box-shadow: inset 0 -1px 0 0 #1a171a;
1202
+ }
1203
+ ._lm_goldenlayout_1qf9a_304 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 > li {
1204
+ height: 100%;
1205
+ width: 24px;
1206
+ }
1207
+
1208
+ ._lm_maximised_1qf9a_23 {
1209
+ border: 15px solid rgba(26, 23, 26, 0.25);
1210
+ height: 100% !important;
1211
+ width: 100% !important;
1212
+ }
1213
+ ._lm_maximised_1qf9a_23 ._lm_items_1qf9a_148 {
1214
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
1215
+ }
1216
+
1217
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabpreviousbutton_1qf9a_428 {
1218
+ background-size: 16px;
1219
+ 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");
1220
+ }
1221
+
1222
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabnextbutton_1qf9a_425 {
1223
+ background-size: 16px;
1224
+ 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");
1225
+ }
1226
+
1227
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165 {
1228
+ background-size: 16px;
1229
+ 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");
1230
+ }
1231
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165::before {
1232
+ display: none;
1233
+ }
1234
+
1235
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
1236
+ background-size: 16px;
1237
+ 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");
1238
+ }
1239
+
1240
+ ._lm_tabs_1qf9a_89:empty + ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
1241
+ display: none;
1242
+ }
1243
+
1244
+ ._lm_maximised_1qf9a_23 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
1245
+ opacity: 0.7;
1246
+ 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");
1247
+ }
1248
+ ._lm_maximised_1qf9a_23 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23:hover {
1249
+ opacity: 1;
1250
+ }
1251
+
1252
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
1253
+ display: flex;
1254
+ align-items: center;
1255
+ font-family: "Fira Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Roboto", "Helvetica Neue", arial, sans-serif;
1256
+ background-color: #242125;
1257
+ color: #929192;
1258
+ height: 28px;
1259
+ font-size: 12px;
1260
+ min-width: 5rem;
1261
+ margin: 0;
1262
+ padding: 0 0.25rem 0 0.5rem;
1263
+ box-shadow: inset -1px -1px 0 0 #1a171a;
1264
+ transition: color 0.15s, background-color 0.15s;
1265
+ max-width: 12rem;
1266
+ white-space: nowrap;
1267
+ overflow: hidden;
1268
+ }
1269
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_title_1qf9a_104 {
1270
+ flex-grow: 1;
1271
+ padding-right: 0.25rem;
1272
+ }
1273
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_title_before_1qf9a_544 {
1274
+ display: flex;
1275
+ align-items: center;
1276
+ }
1277
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._editor-unsaved-indicator_1qf9a_548 {
1278
+ display: none;
1279
+ margin-right: 5px;
1280
+ width: 8px;
1281
+ height: 8px;
1282
+ border-radius: 50%;
1283
+ background: #4878ea;
1284
+ }
1285
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._editor-unsaved-indicator_1qf9a_548._is-unsaved_1qf9a_556 {
1286
+ display: inline-block;
1287
+ }
1288
+
1289
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370,
1290
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370:hover {
1291
+ height: 28px;
1292
+ background-color: #2d2a2e;
1293
+ color: #f0f0ee;
1294
+ padding-bottom: 0;
1295
+ box-shadow: inset -1px 0 0 0 #1a171a;
1296
+ }
1297
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370._lm_focusin_1qf9a_568,
1298
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370:hover._lm_focusin_1qf9a_568 {
1299
+ box-shadow: inset 0 1px #4878ea, inset -1px 0 0 0 #1a171a;
1300
+ }
1301
+
1302
+ ._lm_window_blur_1qf9a_573 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370._lm_focusin_1qf9a_568 {
1303
+ box-shadow: none;
1304
+ }
1305
+
1306
+ ._lm_content_1qf9a_11 {
1307
+ background: #2d2a2e;
1308
+ overflow: visible;
1309
+ }
1310
+
1311
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111 {
1312
+ cursor: pointer;
1313
+ position: relative;
1314
+ top: unset;
1315
+ right: unset;
1316
+ width: 8px;
1317
+ height: 8px;
1318
+ padding: 4px;
1319
+ margin-left: -0.25rem;
1320
+ background-image: none;
1321
+ background-color: #242125;
1322
+ 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");
1323
+ mask-position: center center;
1324
+ mask-repeat: no-repeat;
1325
+ mask-size: 8px;
1326
+ opacity: 1;
1327
+ transition: background-color 0.15s;
1328
+ }
1329
+
1330
+ ._lm_splitter_1qf9a_34,
1331
+ ._lm_splitter_1qf9a_34:hover {
1332
+ background: #929192;
1333
+ }
1334
+
1335
+ ._lm_splitter_1qf9a_34._lm_dragging_1qf9a_17 {
1336
+ background: #c0bfbf;
1337
+ }
1338
+
1339
+ ._lm_dragProxy_1qf9a_125 ._lm_content_1qf9a_11 {
1340
+ height: 100%;
1341
+ width: 100%;
1342
+ box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
1343
+ }
1344
+ ._lm_dragProxy_1qf9a_125 ._lm_header_1qf9a_56 {
1345
+ height: 28px;
1346
+ }
1347
+ ._lm_dragProxy_1qf9a_125 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
1348
+ border: 0;
1349
+ }
1350
+
1351
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
1352
+ z-index: 1000;
1353
+ background: #242125;
1354
+ top: 22px;
1355
+ right: 24px;
1356
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
1357
+ border-radius: 4px;
1358
+ max-width: 12rem;
1359
+ }
1360
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 {
1361
+ padding: 0.25rem;
1362
+ }
1363
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 input {
1364
+ padding: 0.375rem 0.75rem;
1365
+ line-height: 1.5;
1366
+ color: #f0f0ee;
1367
+ background-color: #555356;
1368
+ border: 1px solid #929192;
1369
+ border-radius: 4px;
1370
+ max-width: 100%;
1371
+ }
1372
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 input::placeholder {
1373
+ color: #929192;
1374
+ opacity: 1;
1375
+ }
1376
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 input:focus {
1377
+ border-color: rgba(72, 120, 234, 0.85);
1378
+ box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
1379
+ outline: 0;
1380
+ }
1381
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89 {
1382
+ background: #242125;
1383
+ color: #c0bfbf;
1384
+ box-shadow: none;
1385
+ }
1386
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89 ._editor-unsaved-indicator_1qf9a_548 {
1387
+ width: 10px;
1388
+ height: 10px;
1389
+ border: 1px solid #242125;
1390
+ }
1391
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89._lm_keyboard_active_1qf9a_397 {
1392
+ color: #c0bfbf;
1393
+ background-color: #343e5d;
1394
+ }
1395
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89:hover {
1396
+ color: #f0f0ee;
1397
+ background-color: #4878ea;
1398
+ }
1399
+
1400
+ body:not(._lm_dragging_1qf9a_17) ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89:not(._lm_active_1qf9a_370):hover {
1401
+ color: #c0bfbf;
1402
+ }
1403
+
1404
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 ._lm_close_tab_1qf9a_111 {
1405
+ background-color: #2d2a2e;
1406
+ }
1407
+
1408
+ body:not(._lm_dragging_1qf9a_17) ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89:hover ._lm_close_tab_1qf9a_111 {
1409
+ background-color: #929192;
1410
+ }
1411
+
1412
+ body:not(._lm_dragging_1qf9a_17) ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111:hover {
1413
+ background-color: #fcfcfa;
1414
+ }
1415
+
1416
+ ._lm_dropTargetIndicator_1qf9a_258 {
1417
+ 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%);
1418
+ background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
1419
+ background-position: 0 top, 0 bottom, left 0, right 0;
1420
+ background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
1421
+ animation: _march_1qf9a_1 0.5s;
1422
+ animation-timing-function: linear;
1423
+ animation-iteration-count: infinite;
1424
+ box-sizing: border-box;
1425
+ outline: 0;
1426
+ box-shadow: none;
1427
+ }
1428
+
1429
+ ._lm_dropTargetIndicator_1qf9a_258 ._lm_inner_1qf9a_264 {
1430
+ box-sizing: border-box;
1431
+ border: 1px solid transparent;
1432
+ box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
1433
+ opacity: 1;
1434
+ background: rgba(72, 120, 234, 0.1);
1435
+ }
1436
+
1437
+ ._lm_dragging_1qf9a_17 {
1438
+ overflow: hidden;
1439
+ }
1440
+
1441
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 {
1442
+ pointer-events: none;
1443
+ }
1444
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_controls_1qf9a_69 > li {
1445
+ pointer-events: none;
1446
+ }
1447
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_controls_1qf9a_69 > li._lm_tabpreviousbutton_1qf9a_428, ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_controls_1qf9a_69 > li._lm_tabnextbutton_1qf9a_425 {
1448
+ pointer-events: auto;
1449
+ }
1450
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 svg,
1451
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 g,
1452
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 rect,
1453
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 path {
1454
+ pointer-events: none !important;
1455
+ }
1456
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_header_1qf9a_56 {
1457
+ pointer-events: auto;
1458
+ }
1459
+
1460
+ /* stylelint-disable property-no-unknown */
1461
+
1462
+ /*# sourceMappingURL=GoldenLayout.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
1463
+ .panel-placeholder {
1464
+ display: flex;
1465
+ flex-direction: column;
1466
+ justify-content: center;
1467
+ padding: 1rem;
1468
+ min-height: 100%;
1469
+ text-align: center;
1470
+ }
1471
+
1472
+ /*# sourceMappingURL=PanelPlaceholder.css.map */
1473
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
1474
+ .panel-error-boundary {
1475
+ height: 100%;
1476
+ width: 100%;
1477
+ position: relative;
1478
+ }
1479
+
1480
+ /*# sourceMappingURL=PanelErrorBoundary.css.map */
1481
+ .dashboard-container {
1482
+ position: relative;
1483
+ }
1484
+
1485
+ /*# sourceMappingURL=Dashboard.css.map */
1486
+ /* stylelint-disable */
1487
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
1488
+
1489
+ /*# sourceMappingURL=ChartTheme.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
1490
+ .lm_root {
1491
+ position: relative;
1492
+ }
1493
+
1494
+ .lm_row > .lm_item {
1495
+ float: left;
1496
+ }
1497
+
1498
+ .lm_content {
1499
+ overflow: hidden;
1500
+ position: relative;
1501
+ outline: 0;
1502
+ }
1503
+
1504
+ .lm_dragging,
1505
+ .lm_dragging * {
1506
+ cursor: grabbing !important;
1507
+ user-select: none;
1508
+ }
1509
+
1510
+ .lm_maximised {
1511
+ position: absolute;
1512
+ top: 0;
1513
+ left: 0;
1514
+ z-index: 40;
1515
+ }
1516
+
1517
+ .lm_maximise_placeholder {
1518
+ display: none;
1519
+ }
1520
+
1521
+ .lm_splitter {
1522
+ position: relative;
1523
+ z-index: 20;
1524
+ }
1525
+ .lm_splitter:hover, .lm_splitter.lm_dragging {
1526
+ background: orange;
1527
+ }
1528
+ .lm_splitter.lm_vertical .lm_drag_handle {
1529
+ width: 100%;
1530
+ position: absolute;
1531
+ cursor: ns-resize;
1532
+ }
1533
+ .lm_splitter.lm_horizontal {
1534
+ float: left;
1535
+ height: 100%;
1536
+ }
1537
+ .lm_splitter.lm_horizontal .lm_drag_handle {
1538
+ height: 100%;
1539
+ position: absolute;
1540
+ cursor: ew-resize;
1541
+ }
1542
+
1543
+ .lm_header {
1544
+ display: flex;
1545
+ justify-content: space-between;
1546
+ max-width: 100%;
1547
+ z-index: 12;
1548
+ position: relative;
1549
+ }
1550
+ .lm_header.lm_dropdown_open {
1551
+ z-index: 22;
1552
+ }
1553
+ .lm_header [class^=lm_] {
1554
+ box-sizing: content-box !important;
1555
+ }
1556
+ .lm_header .lm_controls {
1557
+ display: flex;
1558
+ user-select: none;
1559
+ }
1560
+ .lm_header .lm_controls > li {
1561
+ cursor: pointer;
1562
+ float: left;
1563
+ width: 18px;
1564
+ height: 18px;
1565
+ text-align: center;
1566
+ }
1567
+ .lm_header .lm_controls > li[disabled] {
1568
+ cursor: default;
1569
+ opacity: 0.1;
1570
+ }
1571
+ .lm_header ul {
1572
+ margin: 0;
1573
+ padding: 0;
1574
+ list-style-type: none;
1575
+ }
1576
+ .lm_header .lm_tabs {
1577
+ display: flex;
1578
+ flex-grow: 1;
1579
+ overflow: hidden;
1580
+ }
1581
+ .lm_header .lm_tab {
1582
+ cursor: pointer;
1583
+ height: 14px;
1584
+ margin-top: 1px;
1585
+ padding: 0px 10px 5px;
1586
+ padding-right: 25px;
1587
+ position: relative;
1588
+ min-width: 0;
1589
+ flex-shrink: 0;
1590
+ }
1591
+ .lm_header .lm_tab .lm_title {
1592
+ display: inline-block;
1593
+ white-space: nowrap;
1594
+ overflow: hidden;
1595
+ text-overflow: ellipsis;
1596
+ max-width: 100%;
1597
+ }
1598
+ .lm_header .lm_tab .lm_close_tab {
1599
+ width: 14px;
1600
+ height: 14px;
1601
+ position: absolute;
1602
+ top: 0;
1603
+ right: 0;
1604
+ text-align: center;
1605
+ }
1606
+
1607
+ .lm_stack.lm_left .lm_header,
1608
+ .lm_stack.lm_right .lm_header {
1609
+ height: 100%;
1610
+ }
1611
+
1612
+ .lm_dragProxy.lm_left .lm_header,
1613
+ .lm_dragProxy.lm_right .lm_header,
1614
+ .lm_stack.lm_left .lm_header,
1615
+ .lm_stack.lm_right .lm_header {
1616
+ width: 20px;
1617
+ float: left;
1618
+ vertical-align: top;
1619
+ }
1620
+ .lm_dragProxy.lm_left .lm_header .lm_tabs,
1621
+ .lm_dragProxy.lm_right .lm_header .lm_tabs,
1622
+ .lm_stack.lm_left .lm_header .lm_tabs,
1623
+ .lm_stack.lm_right .lm_header .lm_tabs {
1624
+ transform-origin: left top;
1625
+ top: 0;
1626
+ width: 1000px;
1627
+ /*hack*/
1628
+ }
1629
+ .lm_dragProxy.lm_left .lm_header .lm_controls,
1630
+ .lm_dragProxy.lm_right .lm_header .lm_controls,
1631
+ .lm_stack.lm_left .lm_header .lm_controls,
1632
+ .lm_stack.lm_right .lm_header .lm_controls {
1633
+ bottom: 0;
1634
+ }
1635
+ .lm_dragProxy.lm_left .lm_items,
1636
+ .lm_dragProxy.lm_right .lm_items,
1637
+ .lm_stack.lm_left .lm_items,
1638
+ .lm_stack.lm_right .lm_items {
1639
+ float: left;
1640
+ }
1641
+
1642
+ .lm_dragProxy.lm_left .lm_header .lm_tabs,
1643
+ .lm_stack.lm_left .lm_header .lm_tabs {
1644
+ transform: rotate(-90deg) scaleX(-1);
1645
+ left: 0;
1646
+ }
1647
+ .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,
1648
+ .lm_stack.lm_left .lm_header .lm_tabs .lm_tab {
1649
+ transform: scaleX(-1);
1650
+ margin-top: 1px;
1651
+ }
1652
+ .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list,
1653
+ .lm_stack.lm_left .lm_header .lm_tabdropdown_list {
1654
+ top: initial;
1655
+ right: initial;
1656
+ left: 20px;
1657
+ }
1658
+
1659
+ .lm_dragProxy.lm_right .lm_content {
1660
+ float: left;
1661
+ }
1662
+
1663
+ .lm_dragProxy.lm_right .lm_header .lm_tabs,
1664
+ .lm_stack.lm_right .lm_header .lm_tabs {
1665
+ transform: rotate(90deg) scaleX(1);
1666
+ left: 100%;
1667
+ margin-left: 0;
1668
+ }
1669
+ .lm_dragProxy.lm_right .lm_header .lm_controls,
1670
+ .lm_stack.lm_right .lm_header .lm_controls {
1671
+ left: 3px;
1672
+ }
1673
+ .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list,
1674
+ .lm_stack.lm_right .lm_header .lm_tabdropdown_list {
1675
+ top: initial;
1676
+ right: 20px;
1677
+ }
1678
+
1679
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab,
1680
+ .lm_stack.lm_bottom .lm_header .lm_tab {
1681
+ margin-top: 0;
1682
+ border-top: none;
1683
+ }
1684
+ .lm_dragProxy.lm_bottom .lm_header .lm_controls,
1685
+ .lm_stack.lm_bottom .lm_header .lm_controls {
1686
+ top: 3px;
1687
+ }
1688
+ .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,
1689
+ .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {
1690
+ top: initial;
1691
+ bottom: 20px;
1692
+ }
1693
+
1694
+ .lm_drop_tab_placeholder {
1695
+ flex-shrink: 0;
1696
+ }
1697
+
1698
+ .lm_header .lm_controls .lm_tabdropdown:before {
1699
+ content: "";
1700
+ width: 0;
1701
+ height: 0;
1702
+ vertical-align: middle;
1703
+ display: inline-block;
1704
+ border-top: 5px dashed;
1705
+ border-right: 5px solid transparent;
1706
+ border-left: 5px solid transparent;
1707
+ color: white;
1708
+ }
1709
+ .lm_header .lm_tabdropdown_list {
1710
+ position: absolute;
1711
+ top: 20px;
1712
+ right: 0;
1713
+ z-index: 5;
1714
+ overflow-y: auto;
1715
+ overflow-x: hidden;
1716
+ }
1717
+ .lm_header .lm_tabdropdown_list .lm_tabs {
1718
+ flex-direction: column;
1719
+ }
1720
+ .lm_header .lm_tabdropdown_list .lm_tab {
1721
+ padding-right: 10px;
1722
+ }
1723
+ .lm_header .lm_tabdropdown_list .lm_close_tab {
1724
+ display: none !important;
1725
+ }
1726
+
1727
+ /***********************************
1728
+ * Drag Proxy
1729
+ ***********************************/
1730
+ .lm_dragProxy {
1731
+ position: absolute;
1732
+ top: 0;
1733
+ left: 0;
1734
+ z-index: 30;
1735
+ pointer-events: none;
1736
+ }
1737
+ .lm_dragProxy .lm_header {
1738
+ background: transparent;
1739
+ }
1740
+ .lm_dragProxy .lm_content {
1741
+ border-top: none;
1742
+ overflow: hidden;
1743
+ }
1744
+
1745
+ .lm_dropTargetIndicator {
1746
+ display: none;
1747
+ position: absolute;
1748
+ z-index: 20;
1749
+ pointer-events: none;
1750
+ }
1751
+ .lm_dropTargetIndicator .lm_inner {
1752
+ width: 100%;
1753
+ height: 100%;
1754
+ position: relative;
1755
+ top: 0;
1756
+ left: 0;
1757
+ }
1758
+
1759
+ .lm_transition_indicator {
1760
+ display: none;
1761
+ width: 20px;
1762
+ height: 20px;
1763
+ position: absolute;
1764
+ top: 0;
1765
+ left: 0;
1766
+ z-index: 20;
1767
+ }
1768
+
1769
+ .lm_popin {
1770
+ width: 20px;
1771
+ height: 20px;
1772
+ position: absolute;
1773
+ bottom: 0;
1774
+ right: 0;
1775
+ z-index: 9999;
1776
+ }
1777
+ .lm_popin > * {
1778
+ width: 100%;
1779
+ height: 100%;
1780
+ position: absolute;
1781
+ top: 0;
1782
+ left: 0;
1783
+ }
1784
+ .lm_popin > .lm_bg {
1785
+ z-index: 10;
1786
+ }
1787
+ .lm_popin > .lm_icon {
1788
+ z-index: 20;
1789
+ }
1790
+
1791
+ .lm_goldenlayout {
1792
+ background: #000000;
1793
+ }
1794
+
1795
+ .lm_content {
1796
+ background: #222222;
1797
+ }
1798
+
1799
+ .lm_dragProxy .lm_content {
1800
+ box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
1801
+ }
1802
+
1803
+ .lm_dropTargetIndicator {
1804
+ box-shadow: inset 0 0 30px #000000;
1805
+ outline: 1px dashed #cccccc;
1806
+ transition: all 200ms ease;
1807
+ }
1808
+ .lm_dropTargetIndicator .lm_inner {
1809
+ background: #000000;
1810
+ opacity: 0.2;
1811
+ }
1812
+
1813
+ .lm_splitter {
1814
+ background: #000000;
1815
+ opacity: 0.001;
1816
+ transition: opacity 200ms ease;
1817
+ }
1818
+ .lm_splitter:hover, .lm_splitter.lm_dragging {
1819
+ background: #444444;
1820
+ opacity: 1;
1821
+ }
1822
+
1823
+ .lm_header {
1824
+ height: 20px;
1825
+ user-select: none;
1826
+ }
1827
+ .lm_header.lm_selectable {
1828
+ cursor: pointer;
1829
+ }
1830
+ .lm_header .lm_tab {
1831
+ font-family: Arial, sans-serif;
1832
+ font-size: 12px;
1833
+ color: #999999;
1834
+ background: #111111;
1835
+ box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.3);
1836
+ margin-right: 2px;
1837
+ padding-bottom: 2px;
1838
+ padding-top: 2px;
1839
+ /*.lm_title // Present in LIGHT Theme
1840
+ {
1841
+ padding-top:1px;
1842
+ }*/
1843
+ }
1844
+ .lm_header .lm_tab .lm_close_tab {
1845
+ width: 11px;
1846
+ height: 11px;
1847
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAATElEQVR4nG3OwQ0DMQwDwZGRBtR/j1YJzMc5+IDoR+yCVO29g+pu981MFgqZmRdAfU7+CYWcbF11LwALjpBL0N0qybNx/RPU+gOeiS/+XCRwDlTgkQAAAABJRU5ErkJggg==);
1848
+ background-position: center center;
1849
+ background-repeat: no-repeat;
1850
+ top: 4px;
1851
+ right: 6px;
1852
+ opacity: 0.4;
1853
+ }
1854
+ .lm_header .lm_tab .lm_close_tab:hover {
1855
+ opacity: 1;
1856
+ }
1857
+ .lm_header .lm_tab.lm_active {
1858
+ border-bottom: none;
1859
+ box-shadow: 0 -2px 2px #000000;
1860
+ padding-bottom: 3px;
1861
+ }
1862
+ .lm_header .lm_tab.lm_active .lm_close_tab {
1863
+ opacity: 1;
1864
+ }
1865
+
1866
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab,
1867
+ .lm_stack.lm_bottom .lm_header .lm_tab {
1868
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
1869
+ }
1870
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab.lm_active,
1871
+ .lm_stack.lm_bottom .lm_header .lm_tab.lm_active {
1872
+ box-shadow: 0 2px 2px #000000;
1873
+ }
1874
+
1875
+ .lm_selected .lm_header {
1876
+ background-color: #452500;
1877
+ }
1878
+
1879
+ .lm_tab:hover, .lm_tab.lm_active {
1880
+ background: #222222;
1881
+ color: #dddddd;
1882
+ }
1883
+
1884
+ .lm_header .lm_tabs .lm_tab.lm_keyboard_active {
1885
+ color: #000000;
1886
+ background: #dddddd;
1887
+ }
1888
+
1889
+ .lm_header .lm_controls .lm_tabdropdown:before {
1890
+ color: #ffffff;
1891
+ }
1892
+
1893
+ .lm_controls > li {
1894
+ position: relative;
1895
+ background-position: center center;
1896
+ background-repeat: no-repeat;
1897
+ opacity: 0.4;
1898
+ transition: opacity 300ms ease;
1899
+ }
1900
+ .lm_controls > li:hover {
1901
+ opacity: 1;
1902
+ }
1903
+ .lm_controls .lm_popout {
1904
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=);
1905
+ }
1906
+ .lm_controls .lm_maximise {
1907
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKElEQVR4nGP8////fwYCgImQAgYGBgYWKM2IR81/okwajIpgvsMbVgAwgQYRVakEKQAAAABJRU5ErkJggg==);
1908
+ }
1909
+ .lm_controls .lm_close {
1910
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
1911
+ }
1912
+ .lm_controls .lm_tabnextbutton {
1913
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjUGBgEGBg4GBgYGFgYAKTHCARoDgABscAe0vtWukAAAAASUVORK5CYII=);
1914
+ }
1915
+ .lm_controls .lm_tabpreviousbutton {
1916
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjYGJgYGFg4GBgEGBgUACTHCARoDgABSMAXe2fzqEAAAAASUVORK5CYII=);
1917
+ }
1918
+
1919
+ .lm_maximised .lm_header {
1920
+ background-color: #000000;
1921
+ }
1922
+ .lm_maximised .lm_controls .lm_maximise {
1923
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJ0lEQVR4nGP8//8/AzGAiShVI1YhCwMDA8OsWbPwBmZaWhoj0SYCAN1lBxMAX4n0AAAAAElFTkSuQmCC);
1924
+ }
1925
+
1926
+ .lm_transition_indicator {
1927
+ background-color: #000000;
1928
+ border: 1px dashed #555555;
1929
+ }
1930
+
1931
+ .lm_popin {
1932
+ cursor: pointer;
1933
+ }
1934
+ .lm_popin .lm_bg {
1935
+ background: #ffffff;
1936
+ opacity: 0.3;
1937
+ }
1938
+ .lm_popin .lm_icon {
1939
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAWklEQVR4nJWOyw3AIAxDHcQC7L8jbwT3AlJBfNp3SiI7dtRaLSlKKeoA1oEsKSQZCEluexw8Tm3ohk+E7bnOUHUGcNh+HwbBygw4AZ7FN/Lt84p0l+yTflV8AKQyLdcCRJi/AAAAAElFTkSuQmCC);
1940
+ background-position: center center;
1941
+ background-repeat: no-repeat;
1942
+ border-left: 1px solid #eeeeee;
1943
+ border-top: 1px solid #eeeeee;
1944
+ opacity: 0.7;
1945
+ }
1946
+ .lm_popin:hover .lm_icon {
1947
+ opacity: 1;
1948
+ }
1949
+
1950
+ .lm_goldenlayout {
1951
+ background: #1a171a;
1952
+ position: absolute;
1953
+ }
1954
+ .lm_goldenlayout .lm_header {
1955
+ box-sizing: content-box;
1956
+ height: 28px;
1957
+ padding-top: 0;
1958
+ background: #201e21;
1959
+ box-shadow: inset 0 -1px 0 0 #1a171a;
1960
+ }
1961
+ .lm_goldenlayout .lm_header .lm_controls > li {
1962
+ height: 100%;
1963
+ width: 24px;
1964
+ }
1965
+
1966
+ .lm_maximised {
1967
+ border: 15px solid rgba(26, 23, 26, 0.25);
1968
+ height: 100% !important;
1969
+ width: 100% !important;
1970
+ }
1971
+ .lm_maximised .lm_items {
1972
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
1973
+ }
1974
+
1975
+ .lm_header .lm_controls .lm_tabpreviousbutton {
1976
+ background-size: 16px;
1977
+ 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");
1978
+ }
1979
+
1980
+ .lm_header .lm_controls .lm_tabnextbutton {
1981
+ background-size: 16px;
1982
+ 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");
1983
+ }
1984
+
1985
+ .lm_header .lm_controls .lm_tabdropdown {
1986
+ background-size: 16px;
1987
+ 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");
1988
+ }
1989
+ .lm_header .lm_controls .lm_tabdropdown::before {
1990
+ display: none;
1991
+ }
1992
+
1993
+ .lm_header .lm_controls .lm_maximise {
1994
+ background-size: 16px;
1995
+ 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");
1996
+ }
1997
+
1998
+ .lm_tabs:empty + .lm_controls .lm_maximise {
1999
+ display: none;
2000
+ }
2001
+
2002
+ .lm_maximised .lm_header .lm_controls .lm_maximise {
2003
+ opacity: 0.7;
2004
+ 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");
2005
+ }
2006
+ .lm_maximised .lm_header .lm_controls .lm_maximise:hover {
2007
+ opacity: 1;
2008
+ }
2009
+
2010
+ .lm_header .lm_tab {
2011
+ display: flex;
2012
+ align-items: center;
2013
+ font-family: "Fira Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Roboto", "Helvetica Neue", arial, sans-serif;
2014
+ background-color: #242125;
2015
+ color: #929192;
2016
+ height: 28px;
2017
+ font-size: 12px;
2018
+ min-width: 5rem;
2019
+ margin: 0;
2020
+ padding: 0 0.25rem 0 0.5rem;
2021
+ box-shadow: inset -1px -1px 0 0 #1a171a;
2022
+ transition: color 0.15s, background-color 0.15s;
2023
+ max-width: 12rem;
2024
+ white-space: nowrap;
2025
+ overflow: hidden;
2026
+ }
2027
+ .lm_header .lm_tab .lm_title {
2028
+ flex-grow: 1;
2029
+ padding-right: 0.25rem;
2030
+ }
2031
+ .lm_header .lm_tab .lm_title_before {
2032
+ display: flex;
2033
+ align-items: center;
2034
+ }
2035
+ .lm_header .lm_tab .editor-unsaved-indicator {
2036
+ display: none;
2037
+ margin-right: 5px;
2038
+ width: 8px;
2039
+ height: 8px;
2040
+ border-radius: 50%;
2041
+ background: #4878ea;
2042
+ }
2043
+ .lm_header .lm_tab .editor-unsaved-indicator.is-unsaved {
2044
+ display: inline-block;
2045
+ }
2046
+
2047
+ .lm_header .lm_tab.lm_active,
2048
+ .lm_header .lm_tab.lm_active:hover {
2049
+ height: 28px;
2050
+ background-color: #2d2a2e;
2051
+ color: #f0f0ee;
2052
+ padding-bottom: 0;
2053
+ box-shadow: inset -1px 0 0 0 #1a171a;
2054
+ }
2055
+ .lm_header .lm_tab.lm_active.lm_focusin,
2056
+ .lm_header .lm_tab.lm_active:hover.lm_focusin {
2057
+ box-shadow: inset 0 1px #4878ea, inset -1px 0 0 0 #1a171a;
2058
+ }
2059
+
2060
+ .lm_window_blur .lm_header .lm_tab.lm_active.lm_focusin {
2061
+ box-shadow: none;
2062
+ }
2063
+
2064
+ .lm_content {
2065
+ background: #2d2a2e;
2066
+ overflow: visible;
2067
+ }
2068
+
2069
+ .lm_header .lm_tab .lm_close_tab {
2070
+ cursor: pointer;
2071
+ position: relative;
2072
+ top: unset;
2073
+ right: unset;
2074
+ width: 8px;
2075
+ height: 8px;
2076
+ padding: 4px;
2077
+ margin-left: -0.25rem;
2078
+ background-image: none;
2079
+ background-color: #242125;
2080
+ 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");
2081
+ mask-position: center center;
2082
+ mask-repeat: no-repeat;
2083
+ mask-size: 8px;
2084
+ opacity: 1;
2085
+ transition: background-color 0.15s;
2086
+ }
2087
+
2088
+ .lm_splitter,
2089
+ .lm_splitter:hover {
2090
+ background: #929192;
2091
+ }
2092
+
2093
+ .lm_splitter.lm_dragging {
2094
+ background: #c0bfbf;
2095
+ }
2096
+
2097
+ .lm_dragProxy .lm_content {
2098
+ height: 100%;
2099
+ width: 100%;
2100
+ box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
2101
+ }
2102
+ .lm_dragProxy .lm_header {
2103
+ height: 28px;
2104
+ }
2105
+ .lm_dragProxy .lm_header .lm_tab {
2106
+ border: 0;
2107
+ }
2108
+
2109
+ .lm_header .lm_tabdropdown_list {
2110
+ z-index: 1000;
2111
+ background: #242125;
2112
+ top: 22px;
2113
+ right: 24px;
2114
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
2115
+ border-radius: 4px;
2116
+ max-width: 12rem;
2117
+ }
2118
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search {
2119
+ padding: 0.25rem;
2120
+ }
2121
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search input {
2122
+ padding: 0.375rem 0.75rem;
2123
+ line-height: 1.5;
2124
+ color: #f0f0ee;
2125
+ background-color: #555356;
2126
+ border: 1px solid #929192;
2127
+ border-radius: 4px;
2128
+ max-width: 100%;
2129
+ }
2130
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search input::placeholder {
2131
+ color: #929192;
2132
+ opacity: 1;
2133
+ }
2134
+ .lm_header .lm_tabdropdown_list .lm_tabdropdown_search input:focus {
2135
+ border-color: rgba(72, 120, 234, 0.85);
2136
+ box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
2137
+ outline: 0;
2138
+ }
2139
+ .lm_header .lm_tabdropdown_list .lm_tab {
2140
+ background: #242125;
2141
+ color: #c0bfbf;
2142
+ box-shadow: none;
2143
+ }
2144
+ .lm_header .lm_tabdropdown_list .lm_tab .editor-unsaved-indicator {
2145
+ width: 10px;
2146
+ height: 10px;
2147
+ border: 1px solid #242125;
2148
+ }
2149
+ .lm_header .lm_tabdropdown_list .lm_tab.lm_keyboard_active {
2150
+ color: #c0bfbf;
2151
+ background-color: #343e5d;
2152
+ }
2153
+ .lm_header .lm_tabdropdown_list .lm_tab:hover {
2154
+ color: #f0f0ee;
2155
+ background-color: #4878ea;
2156
+ }
2157
+
2158
+ body:not(.lm_dragging) .lm_header .lm_tab:not(.lm_active):hover {
2159
+ color: #c0bfbf;
2160
+ }
2161
+
2162
+ .lm_header .lm_tab.lm_active .lm_close_tab {
2163
+ background-color: #2d2a2e;
2164
+ }
2165
+
2166
+ body:not(.lm_dragging) .lm_header .lm_tab:hover .lm_close_tab {
2167
+ background-color: #929192;
2168
+ }
2169
+
2170
+ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
2171
+ background-color: #fcfcfa;
2172
+ }
2173
+
2174
+ .lm_dropTargetIndicator {
2175
+ 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%);
2176
+ background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
2177
+ background-position: 0 top, 0 bottom, left 0, right 0;
2178
+ background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
2179
+ animation: march 0.5s;
2180
+ animation-timing-function: linear;
2181
+ animation-iteration-count: infinite;
2182
+ box-sizing: border-box;
2183
+ outline: 0;
2184
+ box-shadow: none;
2185
+ }
2186
+
2187
+ .lm_dropTargetIndicator .lm_inner {
2188
+ box-sizing: border-box;
2189
+ border: 1px solid transparent;
2190
+ box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
2191
+ opacity: 1;
2192
+ background: rgba(72, 120, 234, 0.1);
2193
+ }
2194
+
2195
+ .lm_dragging {
2196
+ overflow: hidden;
2197
+ }
2198
+
2199
+ .lm_dragging .app {
2200
+ pointer-events: none;
2201
+ }
2202
+ .lm_dragging .app .lm_controls > li {
2203
+ pointer-events: none;
2204
+ }
2205
+ .lm_dragging .app .lm_controls > li.lm_tabpreviousbutton, .lm_dragging .app .lm_controls > li.lm_tabnextbutton {
2206
+ pointer-events: auto;
2207
+ }
2208
+ .lm_dragging .app .js-plotly-plot .plotly svg,
2209
+ .lm_dragging .app .js-plotly-plot .plotly g,
2210
+ .lm_dragging .app .js-plotly-plot .plotly rect,
2211
+ .lm_dragging .app .js-plotly-plot .plotly path {
2212
+ pointer-events: none !important;
2213
+ }
2214
+ .lm_dragging .app .lm_header {
2215
+ pointer-events: auto;
2216
+ }
2217
+
2218
+ /*# sourceMappingURL=GoldenLayout.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
2219
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
2220
+ ._lm_root_1qf9a_3 {
2221
+ position: relative;
2222
+ }
2223
+
2224
+ ._lm_row_1qf9a_7 > ._lm_item_1qf9a_7 {
2225
+ float: left;
2226
+ }
2227
+
2228
+ ._lm_content_1qf9a_11 {
2229
+ overflow: hidden;
2230
+ position: relative;
2231
+ outline: 0;
2232
+ }
2233
+
2234
+ ._lm_dragging_1qf9a_17,
2235
+ ._lm_dragging_1qf9a_17 * {
2236
+ cursor: grabbing !important;
2237
+ user-select: none;
2238
+ }
2239
+
2240
+ ._lm_maximised_1qf9a_23 {
2241
+ position: absolute;
2242
+ top: 0;
2243
+ left: 0;
2244
+ z-index: 40;
2245
+ }
2246
+
2247
+ ._lm_maximise_placeholder_1qf9a_30 {
2248
+ display: none;
2249
+ }
2250
+
2251
+ ._lm_splitter_1qf9a_34 {
2252
+ position: relative;
2253
+ z-index: 20;
2254
+ }
2255
+ ._lm_splitter_1qf9a_34:hover, ._lm_splitter_1qf9a_34._lm_dragging_1qf9a_17 {
2256
+ background: orange;
2257
+ }
2258
+ ._lm_splitter_1qf9a_34._lm_vertical_1qf9a_41 ._lm_drag_handle_1qf9a_41 {
2259
+ width: 100%;
2260
+ position: absolute;
2261
+ cursor: ns-resize;
2262
+ }
2263
+ ._lm_splitter_1qf9a_34._lm_horizontal_1qf9a_46 {
2264
+ float: left;
2265
+ height: 100%;
2266
+ }
2267
+ ._lm_splitter_1qf9a_34._lm_horizontal_1qf9a_46 ._lm_drag_handle_1qf9a_41 {
2268
+ height: 100%;
2269
+ position: absolute;
2270
+ cursor: ew-resize;
2271
+ }
2272
+
2273
+ ._lm_header_1qf9a_56 {
2274
+ display: flex;
2275
+ justify-content: space-between;
2276
+ max-width: 100%;
2277
+ z-index: 12;
2278
+ position: relative;
2279
+ }
2280
+ ._lm_header_1qf9a_56._lm_dropdown_open_1qf9a_63 {
2281
+ z-index: 22;
2282
+ }
2283
+ ._lm_header_1qf9a_56 [class^=lm_] {
2284
+ box-sizing: content-box !important;
2285
+ }
2286
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
2287
+ display: flex;
2288
+ user-select: none;
2289
+ }
2290
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 > li {
2291
+ cursor: pointer;
2292
+ float: left;
2293
+ width: 18px;
2294
+ height: 18px;
2295
+ text-align: center;
2296
+ }
2297
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 > li[disabled] {
2298
+ cursor: default;
2299
+ opacity: 0.1;
2300
+ }
2301
+ ._lm_header_1qf9a_56 ul {
2302
+ margin: 0;
2303
+ padding: 0;
2304
+ list-style-type: none;
2305
+ }
2306
+ ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
2307
+ display: flex;
2308
+ flex-grow: 1;
2309
+ overflow: hidden;
2310
+ }
2311
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
2312
+ cursor: pointer;
2313
+ height: 14px;
2314
+ margin-top: 1px;
2315
+ padding: 0px 10px 5px;
2316
+ padding-right: 25px;
2317
+ position: relative;
2318
+ min-width: 0;
2319
+ flex-shrink: 0;
2320
+ }
2321
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_title_1qf9a_104 {
2322
+ display: inline-block;
2323
+ white-space: nowrap;
2324
+ overflow: hidden;
2325
+ text-overflow: ellipsis;
2326
+ max-width: 100%;
2327
+ }
2328
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111 {
2329
+ width: 14px;
2330
+ height: 14px;
2331
+ position: absolute;
2332
+ top: 0;
2333
+ right: 0;
2334
+ text-align: center;
2335
+ }
2336
+
2337
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56,
2338
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 {
2339
+ height: 100%;
2340
+ }
2341
+
2342
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56,
2343
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56,
2344
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56,
2345
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 {
2346
+ width: 20px;
2347
+ float: left;
2348
+ vertical-align: top;
2349
+ }
2350
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
2351
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
2352
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
2353
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
2354
+ transform-origin: left top;
2355
+ top: 0;
2356
+ width: 1000px;
2357
+ /*hack*/
2358
+ }
2359
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
2360
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
2361
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
2362
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
2363
+ bottom: 0;
2364
+ }
2365
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_items_1qf9a_148,
2366
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_items_1qf9a_148,
2367
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_items_1qf9a_148,
2368
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_items_1qf9a_148 {
2369
+ float: left;
2370
+ }
2371
+
2372
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
2373
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
2374
+ transform: rotate(-90deg) scaleX(-1);
2375
+ left: 0;
2376
+ }
2377
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 ._lm_tab_1qf9a_89,
2378
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 ._lm_tab_1qf9a_89 {
2379
+ transform: scaleX(-1);
2380
+ margin-top: 1px;
2381
+ }
2382
+ ._lm_dragProxy_1qf9a_125._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165,
2383
+ ._lm_stack_1qf9a_120._lm_left_1qf9a_120 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
2384
+ top: initial;
2385
+ right: initial;
2386
+ left: 20px;
2387
+ }
2388
+
2389
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_content_1qf9a_11 {
2390
+ float: left;
2391
+ }
2392
+
2393
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89,
2394
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 {
2395
+ transform: rotate(90deg) scaleX(1);
2396
+ left: 100%;
2397
+ margin-left: 0;
2398
+ }
2399
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
2400
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
2401
+ left: 3px;
2402
+ }
2403
+ ._lm_dragProxy_1qf9a_125._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165,
2404
+ ._lm_stack_1qf9a_120._lm_right_1qf9a_121 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
2405
+ top: initial;
2406
+ right: 20px;
2407
+ }
2408
+
2409
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89,
2410
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
2411
+ margin-top: 0;
2412
+ border-top: none;
2413
+ }
2414
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69,
2415
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 {
2416
+ top: 3px;
2417
+ }
2418
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165,
2419
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
2420
+ top: initial;
2421
+ bottom: 20px;
2422
+ }
2423
+
2424
+ ._lm_drop_tab_placeholder_1qf9a_207 {
2425
+ flex-shrink: 0;
2426
+ }
2427
+
2428
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165:before {
2429
+ content: "";
2430
+ width: 0;
2431
+ height: 0;
2432
+ vertical-align: middle;
2433
+ display: inline-block;
2434
+ border-top: 5px dashed;
2435
+ border-right: 5px solid transparent;
2436
+ border-left: 5px solid transparent;
2437
+ color: white;
2438
+ }
2439
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
2440
+ position: absolute;
2441
+ top: 20px;
2442
+ right: 0;
2443
+ z-index: 5;
2444
+ overflow-y: auto;
2445
+ overflow-x: hidden;
2446
+ }
2447
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabs_1qf9a_89 {
2448
+ flex-direction: column;
2449
+ }
2450
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89 {
2451
+ padding-right: 10px;
2452
+ }
2453
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_close_tab_1qf9a_111 {
2454
+ display: none !important;
2455
+ }
2456
+
2457
+ /***********************************
2458
+ * Drag Proxy
2459
+ ***********************************/
2460
+ ._lm_dragProxy_1qf9a_125 {
2461
+ position: absolute;
2462
+ top: 0;
2463
+ left: 0;
2464
+ z-index: 30;
2465
+ pointer-events: none;
2466
+ }
2467
+ ._lm_dragProxy_1qf9a_125 ._lm_header_1qf9a_56 {
2468
+ background: transparent;
2469
+ }
2470
+ ._lm_dragProxy_1qf9a_125 ._lm_content_1qf9a_11 {
2471
+ border-top: none;
2472
+ overflow: hidden;
2473
+ }
2474
+
2475
+ ._lm_dropTargetIndicator_1qf9a_258 {
2476
+ display: none;
2477
+ position: absolute;
2478
+ z-index: 20;
2479
+ pointer-events: none;
2480
+ }
2481
+ ._lm_dropTargetIndicator_1qf9a_258 ._lm_inner_1qf9a_264 {
2482
+ width: 100%;
2483
+ height: 100%;
2484
+ position: relative;
2485
+ top: 0;
2486
+ left: 0;
2487
+ }
2488
+
2489
+ ._lm_transition_indicator_1qf9a_272 {
2490
+ display: none;
2491
+ width: 20px;
2492
+ height: 20px;
2493
+ position: absolute;
2494
+ top: 0;
2495
+ left: 0;
2496
+ z-index: 20;
2497
+ }
2498
+
2499
+ ._lm_popin_1qf9a_282 {
2500
+ width: 20px;
2501
+ height: 20px;
2502
+ position: absolute;
2503
+ bottom: 0;
2504
+ right: 0;
2505
+ z-index: 9999;
2506
+ }
2507
+ ._lm_popin_1qf9a_282 > * {
2508
+ width: 100%;
2509
+ height: 100%;
2510
+ position: absolute;
2511
+ top: 0;
2512
+ left: 0;
2513
+ }
2514
+ ._lm_popin_1qf9a_282 > ._lm_bg_1qf9a_297 {
2515
+ z-index: 10;
2516
+ }
2517
+ ._lm_popin_1qf9a_282 > ._lm_icon_1qf9a_300 {
2518
+ z-index: 20;
2519
+ }
2520
+
2521
+ ._lm_goldenlayout_1qf9a_304 {
2522
+ background: #000000;
2523
+ }
2524
+
2525
+ ._lm_content_1qf9a_11 {
2526
+ background: #222222;
2527
+ }
2528
+
2529
+ ._lm_dragProxy_1qf9a_125 ._lm_content_1qf9a_11 {
2530
+ box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
2531
+ }
2532
+
2533
+ ._lm_dropTargetIndicator_1qf9a_258 {
2534
+ box-shadow: inset 0 0 30px #000000;
2535
+ outline: 1px dashed #cccccc;
2536
+ transition: all 200ms ease;
2537
+ }
2538
+ ._lm_dropTargetIndicator_1qf9a_258 ._lm_inner_1qf9a_264 {
2539
+ background: #000000;
2540
+ opacity: 0.2;
2541
+ }
2542
+
2543
+ ._lm_splitter_1qf9a_34 {
2544
+ background: #000000;
2545
+ opacity: 0.001;
2546
+ transition: opacity 200ms ease;
2547
+ }
2548
+ ._lm_splitter_1qf9a_34:hover, ._lm_splitter_1qf9a_34._lm_dragging_1qf9a_17 {
2549
+ background: #444444;
2550
+ opacity: 1;
2551
+ }
2552
+
2553
+ ._lm_header_1qf9a_56 {
2554
+ height: 20px;
2555
+ user-select: none;
2556
+ }
2557
+ ._lm_header_1qf9a_56._lm_selectable_1qf9a_340 {
2558
+ cursor: pointer;
2559
+ }
2560
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
2561
+ font-family: Arial, sans-serif;
2562
+ font-size: 12px;
2563
+ color: #999999;
2564
+ background: #111111;
2565
+ box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.3);
2566
+ margin-right: 2px;
2567
+ padding-bottom: 2px;
2568
+ padding-top: 2px;
2569
+ /*.lm_title // Present in LIGHT Theme
2570
+ {
2571
+ padding-top:1px;
2572
+ }*/
2573
+ }
2574
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111 {
2575
+ width: 11px;
2576
+ height: 11px;
2577
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAATElEQVR4nG3OwQ0DMQwDwZGRBtR/j1YJzMc5+IDoR+yCVO29g+pu981MFgqZmRdAfU7+CYWcbF11LwALjpBL0N0qybNx/RPU+gOeiS/+XCRwDlTgkQAAAABJRU5ErkJggg==);
2578
+ background-position: center center;
2579
+ background-repeat: no-repeat;
2580
+ top: 4px;
2581
+ right: 6px;
2582
+ opacity: 0.4;
2583
+ }
2584
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111:hover {
2585
+ opacity: 1;
2586
+ }
2587
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 {
2588
+ border-bottom: none;
2589
+ box-shadow: 0 -2px 2px #000000;
2590
+ padding-bottom: 3px;
2591
+ }
2592
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 ._lm_close_tab_1qf9a_111 {
2593
+ opacity: 1;
2594
+ }
2595
+
2596
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89,
2597
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
2598
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
2599
+ }
2600
+ ._lm_dragProxy_1qf9a_125._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370,
2601
+ ._lm_stack_1qf9a_120._lm_bottom_1qf9a_192 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 {
2602
+ box-shadow: 0 2px 2px #000000;
2603
+ }
2604
+
2605
+ ._lm_selected_1qf9a_388 ._lm_header_1qf9a_56 {
2606
+ background-color: #452500;
2607
+ }
2608
+
2609
+ ._lm_tab_1qf9a_89:hover, ._lm_tab_1qf9a_89._lm_active_1qf9a_370 {
2610
+ background: #222222;
2611
+ color: #dddddd;
2612
+ }
2613
+
2614
+ ._lm_header_1qf9a_56 ._lm_tabs_1qf9a_89 ._lm_tab_1qf9a_89._lm_keyboard_active_1qf9a_397 {
2615
+ color: #000000;
2616
+ background: #dddddd;
2617
+ }
2618
+
2619
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165:before {
2620
+ color: #ffffff;
2621
+ }
2622
+
2623
+ ._lm_controls_1qf9a_69 > li {
2624
+ position: relative;
2625
+ background-position: center center;
2626
+ background-repeat: no-repeat;
2627
+ opacity: 0.4;
2628
+ transition: opacity 300ms ease;
2629
+ }
2630
+ ._lm_controls_1qf9a_69 > li:hover {
2631
+ opacity: 1;
2632
+ }
2633
+ ._lm_controls_1qf9a_69 ._lm_popout_1qf9a_416 {
2634
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=);
2635
+ }
2636
+ ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
2637
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKElEQVR4nGP8////fwYCgImQAgYGBgYWKM2IR81/okwajIpgvsMbVgAwgQYRVakEKQAAAABJRU5ErkJggg==);
2638
+ }
2639
+ ._lm_controls_1qf9a_69 ._lm_close_1qf9a_111 {
2640
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
2641
+ }
2642
+ ._lm_controls_1qf9a_69 ._lm_tabnextbutton_1qf9a_425 {
2643
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjUGBgEGBg4GBgYGFgYAKTHCARoDgABscAe0vtWukAAAAASUVORK5CYII=);
2644
+ }
2645
+ ._lm_controls_1qf9a_69 ._lm_tabpreviousbutton_1qf9a_428 {
2646
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjYGJgYGFg4GBgEGBgUACTHCARoDgABSMAXe2fzqEAAAAASUVORK5CYII=);
2647
+ }
2648
+
2649
+ ._lm_maximised_1qf9a_23 ._lm_header_1qf9a_56 {
2650
+ background-color: #000000;
2651
+ }
2652
+ ._lm_maximised_1qf9a_23 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
2653
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJ0lEQVR4nGP8//8/AzGAiShVI1YhCwMDA8OsWbPwBmZaWhoj0SYCAN1lBxMAX4n0AAAAAElFTkSuQmCC);
2654
+ }
2655
+
2656
+ ._lm_transition_indicator_1qf9a_272 {
2657
+ background-color: #000000;
2658
+ border: 1px dashed #555555;
2659
+ }
2660
+
2661
+ ._lm_popin_1qf9a_282 {
2662
+ cursor: pointer;
2663
+ }
2664
+ ._lm_popin_1qf9a_282 ._lm_bg_1qf9a_297 {
2665
+ background: #ffffff;
2666
+ opacity: 0.3;
2667
+ }
2668
+ ._lm_popin_1qf9a_282 ._lm_icon_1qf9a_300 {
2669
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAWklEQVR4nJWOyw3AIAxDHcQC7L8jbwT3AlJBfNp3SiI7dtRaLSlKKeoA1oEsKSQZCEluexw8Tm3ohk+E7bnOUHUGcNh+HwbBygw4AZ7FN/Lt84p0l+yTflV8AKQyLdcCRJi/AAAAAElFTkSuQmCC);
2670
+ background-position: center center;
2671
+ background-repeat: no-repeat;
2672
+ border-left: 1px solid #eeeeee;
2673
+ border-top: 1px solid #eeeeee;
2674
+ opacity: 0.7;
2675
+ }
2676
+ ._lm_popin_1qf9a_282:hover ._lm_icon_1qf9a_300 {
2677
+ opacity: 1;
2678
+ }
2679
+
2680
+ ._lm_goldenlayout_1qf9a_304 {
2681
+ background: #1a171a;
2682
+ position: absolute;
2683
+ }
2684
+ ._lm_goldenlayout_1qf9a_304 ._lm_header_1qf9a_56 {
2685
+ box-sizing: content-box;
2686
+ height: 28px;
2687
+ padding-top: 0;
2688
+ background: #201e21;
2689
+ box-shadow: inset 0 -1px 0 0 #1a171a;
2690
+ }
2691
+ ._lm_goldenlayout_1qf9a_304 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 > li {
2692
+ height: 100%;
2693
+ width: 24px;
2694
+ }
2695
+
2696
+ ._lm_maximised_1qf9a_23 {
2697
+ border: 15px solid rgba(26, 23, 26, 0.25);
2698
+ height: 100% !important;
2699
+ width: 100% !important;
2700
+ }
2701
+ ._lm_maximised_1qf9a_23 ._lm_items_1qf9a_148 {
2702
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
2703
+ }
2704
+
2705
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabpreviousbutton_1qf9a_428 {
2706
+ background-size: 16px;
2707
+ 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");
2708
+ }
2709
+
2710
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabnextbutton_1qf9a_425 {
2711
+ background-size: 16px;
2712
+ 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");
2713
+ }
2714
+
2715
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165 {
2716
+ background-size: 16px;
2717
+ 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");
2718
+ }
2719
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_tabdropdown_1qf9a_165::before {
2720
+ display: none;
2721
+ }
2722
+
2723
+ ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
2724
+ background-size: 16px;
2725
+ 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");
2726
+ }
2727
+
2728
+ ._lm_tabs_1qf9a_89:empty + ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
2729
+ display: none;
2730
+ }
2731
+
2732
+ ._lm_maximised_1qf9a_23 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23 {
2733
+ opacity: 0.7;
2734
+ 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");
2735
+ }
2736
+ ._lm_maximised_1qf9a_23 ._lm_header_1qf9a_56 ._lm_controls_1qf9a_69 ._lm_maximise_1qf9a_23:hover {
2737
+ opacity: 1;
2738
+ }
2739
+
2740
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
2741
+ display: flex;
2742
+ align-items: center;
2743
+ font-family: "Fira Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Roboto", "Helvetica Neue", arial, sans-serif;
2744
+ background-color: #242125;
2745
+ color: #929192;
2746
+ height: 28px;
2747
+ font-size: 12px;
2748
+ min-width: 5rem;
2749
+ margin: 0;
2750
+ padding: 0 0.25rem 0 0.5rem;
2751
+ box-shadow: inset -1px -1px 0 0 #1a171a;
2752
+ transition: color 0.15s, background-color 0.15s;
2753
+ max-width: 12rem;
2754
+ white-space: nowrap;
2755
+ overflow: hidden;
2756
+ }
2757
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_title_1qf9a_104 {
2758
+ flex-grow: 1;
2759
+ padding-right: 0.25rem;
2760
+ }
2761
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_title_before_1qf9a_544 {
2762
+ display: flex;
2763
+ align-items: center;
2764
+ }
2765
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._editor-unsaved-indicator_1qf9a_548 {
2766
+ display: none;
2767
+ margin-right: 5px;
2768
+ width: 8px;
2769
+ height: 8px;
2770
+ border-radius: 50%;
2771
+ background: #4878ea;
2772
+ }
2773
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._editor-unsaved-indicator_1qf9a_548._is-unsaved_1qf9a_556 {
2774
+ display: inline-block;
2775
+ }
2776
+
2777
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370,
2778
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370:hover {
2779
+ height: 28px;
2780
+ background-color: #2d2a2e;
2781
+ color: #f0f0ee;
2782
+ padding-bottom: 0;
2783
+ box-shadow: inset -1px 0 0 0 #1a171a;
2784
+ }
2785
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370._lm_focusin_1qf9a_568,
2786
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370:hover._lm_focusin_1qf9a_568 {
2787
+ box-shadow: inset 0 1px #4878ea, inset -1px 0 0 0 #1a171a;
2788
+ }
2789
+
2790
+ ._lm_window_blur_1qf9a_573 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370._lm_focusin_1qf9a_568 {
2791
+ box-shadow: none;
2792
+ }
2793
+
2794
+ ._lm_content_1qf9a_11 {
2795
+ background: #2d2a2e;
2796
+ overflow: visible;
2797
+ }
2798
+
2799
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111 {
2800
+ cursor: pointer;
2801
+ position: relative;
2802
+ top: unset;
2803
+ right: unset;
2804
+ width: 8px;
2805
+ height: 8px;
2806
+ padding: 4px;
2807
+ margin-left: -0.25rem;
2808
+ background-image: none;
2809
+ background-color: #242125;
2810
+ 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");
2811
+ mask-position: center center;
2812
+ mask-repeat: no-repeat;
2813
+ mask-size: 8px;
2814
+ opacity: 1;
2815
+ transition: background-color 0.15s;
2816
+ }
2817
+
2818
+ ._lm_splitter_1qf9a_34,
2819
+ ._lm_splitter_1qf9a_34:hover {
2820
+ background: #929192;
2821
+ }
2822
+
2823
+ ._lm_splitter_1qf9a_34._lm_dragging_1qf9a_17 {
2824
+ background: #c0bfbf;
2825
+ }
2826
+
2827
+ ._lm_dragProxy_1qf9a_125 ._lm_content_1qf9a_11 {
2828
+ height: 100%;
2829
+ width: 100%;
2830
+ box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
2831
+ }
2832
+ ._lm_dragProxy_1qf9a_125 ._lm_header_1qf9a_56 {
2833
+ height: 28px;
2834
+ }
2835
+ ._lm_dragProxy_1qf9a_125 ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 {
2836
+ border: 0;
2837
+ }
2838
+
2839
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 {
2840
+ z-index: 1000;
2841
+ background: #242125;
2842
+ top: 22px;
2843
+ right: 24px;
2844
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
2845
+ border-radius: 4px;
2846
+ max-width: 12rem;
2847
+ }
2848
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 {
2849
+ padding: 0.25rem;
2850
+ }
2851
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 input {
2852
+ padding: 0.375rem 0.75rem;
2853
+ line-height: 1.5;
2854
+ color: #f0f0ee;
2855
+ background-color: #555356;
2856
+ border: 1px solid #929192;
2857
+ border-radius: 4px;
2858
+ max-width: 100%;
2859
+ }
2860
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 input::placeholder {
2861
+ color: #929192;
2862
+ opacity: 1;
2863
+ }
2864
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tabdropdown_search_1qf9a_631 input:focus {
2865
+ border-color: rgba(72, 120, 234, 0.85);
2866
+ box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
2867
+ outline: 0;
2868
+ }
2869
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89 {
2870
+ background: #242125;
2871
+ color: #c0bfbf;
2872
+ box-shadow: none;
2873
+ }
2874
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89 ._editor-unsaved-indicator_1qf9a_548 {
2875
+ width: 10px;
2876
+ height: 10px;
2877
+ border: 1px solid #242125;
2878
+ }
2879
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89._lm_keyboard_active_1qf9a_397 {
2880
+ color: #c0bfbf;
2881
+ background-color: #343e5d;
2882
+ }
2883
+ ._lm_header_1qf9a_56 ._lm_tabdropdown_list_1qf9a_165 ._lm_tab_1qf9a_89:hover {
2884
+ color: #f0f0ee;
2885
+ background-color: #4878ea;
2886
+ }
2887
+
2888
+ body:not(._lm_dragging_1qf9a_17) ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89:not(._lm_active_1qf9a_370):hover {
2889
+ color: #c0bfbf;
2890
+ }
2891
+
2892
+ ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89._lm_active_1qf9a_370 ._lm_close_tab_1qf9a_111 {
2893
+ background-color: #2d2a2e;
2894
+ }
2895
+
2896
+ body:not(._lm_dragging_1qf9a_17) ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89:hover ._lm_close_tab_1qf9a_111 {
2897
+ background-color: #929192;
2898
+ }
2899
+
2900
+ body:not(._lm_dragging_1qf9a_17) ._lm_header_1qf9a_56 ._lm_tab_1qf9a_89 ._lm_close_tab_1qf9a_111:hover {
2901
+ background-color: #fcfcfa;
2902
+ }
2903
+
2904
+ ._lm_dropTargetIndicator_1qf9a_258 {
2905
+ 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%);
2906
+ background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
2907
+ background-position: 0 top, 0 bottom, left 0, right 0;
2908
+ background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
2909
+ animation: _march_1qf9a_1 0.5s;
2910
+ animation-timing-function: linear;
2911
+ animation-iteration-count: infinite;
2912
+ box-sizing: border-box;
2913
+ outline: 0;
2914
+ box-shadow: none;
2915
+ }
2916
+
2917
+ ._lm_dropTargetIndicator_1qf9a_258 ._lm_inner_1qf9a_264 {
2918
+ box-sizing: border-box;
2919
+ border: 1px solid transparent;
2920
+ box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
2921
+ opacity: 1;
2922
+ background: rgba(72, 120, 234, 0.1);
2923
+ }
2924
+
2925
+ ._lm_dragging_1qf9a_17 {
2926
+ overflow: hidden;
2927
+ }
2928
+
2929
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 {
2930
+ pointer-events: none;
2931
+ }
2932
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_controls_1qf9a_69 > li {
2933
+ pointer-events: none;
2934
+ }
2935
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_controls_1qf9a_69 > li._lm_tabpreviousbutton_1qf9a_428, ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_controls_1qf9a_69 > li._lm_tabnextbutton_1qf9a_425 {
2936
+ pointer-events: auto;
2937
+ }
2938
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 svg,
2939
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 g,
2940
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 rect,
2941
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._js-plotly-plot_1qf9a_721 ._plotly_1qf9a_721 path {
2942
+ pointer-events: none !important;
2943
+ }
2944
+ ._lm_dragging_1qf9a_17 ._app_1qf9a_712 ._lm_header_1qf9a_56 {
2945
+ pointer-events: auto;
2946
+ }
2947
+
2948
+ /* stylelint-disable property-no-unknown */
2949
+
2950
+ /*# sourceMappingURL=GoldenLayout.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
2951
+ .panel-placeholder {
2952
+ display: flex;
2953
+ flex-direction: column;
2954
+ justify-content: center;
2955
+ padding: 1rem;
2956
+ min-height: 100%;
2957
+ text-align: center;
2958
+ }
2959
+
2960
+ /*# sourceMappingURL=PanelPlaceholder.css.map */
2961
+ /* stylelint-disable */
2962
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
2963
+
2964
+ /*# sourceMappingURL=ThemeExport.module.css.map *//* stylelint-disable scss/at-import-no-partial-leading-underscore */
2965
+ .popper-container {
2966
+ position: absolute;
2967
+ z-index: 5000;
2968
+ }
2969
+
2970
+ .popper {
2971
+ background: #403e41;
2972
+ color: #f0f0ee;
2973
+ border-radius: 4px;
2974
+ transition: visibility 0.15s, opacity 0.15s;
2975
+ pointer-events: none;
2976
+ outline: 0;
2977
+ }
2978
+ .popper .popper-content {
2979
+ position: relative;
2980
+ box-shadow: 0 0.1rem 1.5rem 0.25rem rgba(26, 23, 26, 0.45);
2981
+ }
2982
+ .popper .popper-content .tooltip-content {
2983
+ text-align: center;
2984
+ padding: 0.25rem 0.5rem;
2985
+ }
2986
+ .popper .popper-arrow {
2987
+ width: 0;
2988
+ height: 0;
2989
+ border-style: solid;
2990
+ position: absolute;
2991
+ margin: 5px;
2992
+ border-color: #403e41;
2993
+ }
2994
+
2995
+ .popper.interactive {
2996
+ pointer-events: auto;
2997
+ }
2998
+
2999
+ .popper-transition-enter {
3000
+ opacity: 0;
3001
+ transition: none;
3002
+ }
3003
+
3004
+ .popper-transition-exit {
3005
+ opacity: 0;
3006
+ transition: all 0.15s;
3007
+ }
3008
+
3009
+ .popper-container[x-placement^=top] > .popper-transition-enter,
3010
+ .popper-container[x-placement^=top] > .popper-transition-exit {
3011
+ transform: scale(0.92) translate(0, 10px);
3012
+ }
3013
+
3014
+ .popper-container[x-placement^=right] > .popper-transition-enter,
3015
+ .popper-container[x-placement^=right] > .popper-transition-exit {
3016
+ transform: scale(0.92) translate(-10px, 0);
3017
+ }
3018
+
3019
+ .popper-container[x-placement^=bottom] > .popper-transition-enter,
3020
+ .popper-container[x-placement^=bottom] > .popper-transition-exit {
3021
+ transform: scale(0.92) translate(0, -10px);
3022
+ }
3023
+
3024
+ .popper-container[x-placement^=left] > .popper-transition-enter,
3025
+ .popper-container[x-placement^=left] > .popper-transition-exit {
3026
+ transform: scale(0.92) translate(10px, 0);
3027
+ }
3028
+
3029
+ .popper-container[x-placement^=top] > .popper-transition-enter-active.popper,
3030
+ .popper-container[x-placement^=right] > .popper-transition-enter-active.popper,
3031
+ .popper-container[x-placement^=bottom] > .popper-transition-enter-active.popper,
3032
+ .popper-container[x-placement^=left] > .popper-transition-enter-active.popper {
3033
+ opacity: 1;
3034
+ transform: none;
3035
+ transition: all 0.15s ease-out;
3036
+ }
3037
+
3038
+ .popper-container[x-placement^=top] > .popper {
3039
+ margin-bottom: 5px;
3040
+ }
3041
+ .popper-container[x-placement^=top] > .popper .popper-arrow {
3042
+ border-width: 5px 5px 0 5px;
3043
+ border-left-color: transparent;
3044
+ border-right-color: transparent;
3045
+ border-bottom-color: transparent;
3046
+ bottom: -5px;
3047
+ margin-top: 0;
3048
+ margin-bottom: 0;
3049
+ }
3050
+
3051
+ .popper-container[x-placement^=bottom] > .popper {
3052
+ margin-top: 5px;
3053
+ }
3054
+ .popper-container[x-placement^=bottom] > .popper .popper-arrow {
3055
+ border-width: 0 5px 5px 5px;
3056
+ border-left-color: transparent;
3057
+ border-right-color: transparent;
3058
+ border-top-color: transparent;
3059
+ top: -5px;
3060
+ margin-top: 0;
3061
+ margin-bottom: 0;
3062
+ }
3063
+
3064
+ .popper-container[x-placement^=right] > .popper {
3065
+ margin-left: 5px;
3066
+ }
3067
+ .popper-container[x-placement^=right] > .popper .popper-arrow {
3068
+ border-width: 5px 5px 5px 0;
3069
+ border-left-color: transparent;
3070
+ border-top-color: transparent;
3071
+ border-bottom-color: transparent;
3072
+ left: -5px;
3073
+ margin-left: 0;
3074
+ margin-right: 0;
3075
+ }
3076
+
3077
+ .popper-container[x-placement^=left] > .popper {
3078
+ margin-right: 5px;
3079
+ }
3080
+ .popper-container[x-placement^=left] > .popper .popper-arrow {
3081
+ border-width: 5px 0 5px 5px;
3082
+ border-top-color: transparent;
3083
+ border-right-color: transparent;
3084
+ border-bottom-color: transparent;
3085
+ right: -5px;
3086
+ margin-left: 0;
3087
+ margin-right: 0;
3088
+ }
3089
+
3090
+ /*# sourceMappingURL=Popper.css.map */
3091
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
3092
+ .context-actions-listener {
3093
+ display: none;
3094
+ }
3095
+
3096
+ .context-menu-root {
3097
+ position: fixed;
3098
+ height: 100%;
3099
+ width: 100%;
3100
+ top: 0;
3101
+ left: 0;
3102
+ pointer-events: none;
3103
+ z-index: 1060;
3104
+ }
3105
+ .context-menu-root.active {
3106
+ pointer-events: all;
3107
+ }
3108
+
3109
+ .context-menu-container {
3110
+ pointer-events: auto;
3111
+ position: fixed;
3112
+ background-color: #555356;
3113
+ color: #f0f0ee;
3114
+ z-index: initial;
3115
+ min-width: 10rem;
3116
+ max-width: 30rem;
3117
+ text-align: left;
3118
+ border-radius: 4px;
3119
+ background-clip: border-box;
3120
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
3121
+ max-height: 100vh;
3122
+ overflow-y: auto;
3123
+ }
3124
+ .context-menu-container.has-overflow {
3125
+ overflow-y: scroll;
3126
+ }
3127
+ .context-menu-container hr {
3128
+ margin-top: 0;
3129
+ margin-bottom: 0;
3130
+ background-color: #403e41;
3131
+ }
3132
+ .context-menu-container .custom-menu-item {
3133
+ width: 100%;
3134
+ color: #f0f0ee;
3135
+ white-space: nowrap;
3136
+ text-decoration: none;
3137
+ background-color: transparent;
3138
+ text-align: left;
3139
+ }
3140
+ .context-menu-container .btn-context-menu {
3141
+ border: none;
3142
+ width: 100%;
3143
+ padding: 4px 8px;
3144
+ color: #f0f0ee;
3145
+ text-decoration: none;
3146
+ background-color: transparent;
3147
+ text-align: left;
3148
+ cursor: pointer;
3149
+ user-select: none;
3150
+ }
3151
+ .context-menu-container .btn-context-menu .btn-context-menu-wrapper {
3152
+ display: flex;
3153
+ align-items: center;
3154
+ justify-content: flex-start;
3155
+ }
3156
+ .context-menu-container .btn-context-menu .icon {
3157
+ margin-right: 0.5rem;
3158
+ width: 1rem;
3159
+ flex-grow: 0;
3160
+ text-align: center;
3161
+ }
3162
+ .context-menu-container .btn-context-menu .icon.outline {
3163
+ stroke: #555356;
3164
+ stroke-width: 60;
3165
+ }
3166
+ .context-menu-container .btn-context-menu .title {
3167
+ flex: 1 1 auto;
3168
+ text-align: left;
3169
+ white-space: nowrap;
3170
+ }
3171
+ .context-menu-container .btn-context-menu .shortcut {
3172
+ color: #929192;
3173
+ margin-left: 0.5rem;
3174
+ justify-self: flex-end;
3175
+ flex: 1 1 auto;
3176
+ text-align: right;
3177
+ white-space: nowrap;
3178
+ }
3179
+ .context-menu-container .btn-context-menu .submenu-indicator {
3180
+ color: #f0f0ee;
3181
+ flex-grow: 0;
3182
+ justify-self: flex-end;
3183
+ }
3184
+ .context-menu-container .btn-context-menu .submenu-indicator.disabled {
3185
+ color: #929192;
3186
+ }
3187
+ .context-menu-container .btn-context-menu.menu-title {
3188
+ user-select: none;
3189
+ cursor: default;
3190
+ background: #2d2a2e;
3191
+ }
3192
+ .context-menu-container .btn-context-menu.keyboard-active {
3193
+ background-color: rgba(72, 120, 234, 0.5);
3194
+ }
3195
+ .context-menu-container .btn-context-menu:focus,
3196
+ .context-menu-container .btn-context-menu.active {
3197
+ background-color: #4878ea;
3198
+ }
3199
+ .context-menu-container .btn-context-menu:focus {
3200
+ outline: none;
3201
+ }
3202
+ .context-menu-container .btn-context-menu.active,
3203
+ .context-menu-container .btn-context-menu.keyboard-active,
3204
+ .context-menu-container .btn-context-menu:focus:not(.disabled) {
3205
+ color: #f0f0ee;
3206
+ }
3207
+ .context-menu-container .btn-context-menu.active .shortcut,
3208
+ .context-menu-container .btn-context-menu.keyboard-active .shortcut,
3209
+ .context-menu-container .btn-context-menu:focus:not(.disabled) .shortcut {
3210
+ color: #a4bcf5;
3211
+ }
3212
+ .context-menu-container .btn-context-menu.disabled {
3213
+ color: #929192;
3214
+ background-color: #555356;
3215
+ }
3216
+ .context-menu-container .context-menu-item:last-child > .btn-context-menu {
3217
+ border-bottom-left-radius: 4px;
3218
+ border-bottom-right-radius: 4px;
3219
+ }
3220
+ .context-menu-container .context-menu-item:first-child > .btn-context-menu {
3221
+ border-top-left-radius: 4px;
3222
+ border-top-right-radius: 4px;
3223
+ }
3224
+ .context-menu-container .context-menu-group-header {
3225
+ margin: 0.5rem 0.75rem 0.25rem 0.75rem;
3226
+ color: #c0bfbf;
3227
+ white-space: nowrap;
3228
+ text-decoration: none;
3229
+ background-color: transparent;
3230
+ text-align: left;
3231
+ cursor: default;
3232
+ user-select: none;
3233
+ font-weight: 500;
3234
+ border-bottom: 1px solid #5b5a5c;
3235
+ }
3236
+ .context-menu-container .loading {
3237
+ padding: 0.25rem 1.5rem;
3238
+ width: 100%;
3239
+ display: block;
3240
+ text-align: center;
3241
+ }
3242
+
3243
+ .context-menu-container:focus {
3244
+ outline: none;
3245
+ }
3246
+
3247
+ /*# sourceMappingURL=ContextActions.css.map */
3248
+ .loading-spinner-large {
3249
+ font-size: 64px;
3250
+ }
3251
+ .loading-spinner-large .svg-inline--fa {
3252
+ font-size: inherit;
3253
+ }
3254
+
3255
+ /*# sourceMappingURL=LoadingSpinner.css.map */
3256
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
3257
+ .iris-panel-message-overlay {
3258
+ text-align: center;
3259
+ display: flex;
3260
+ flex-direction: column;
3261
+ justify-content: center;
3262
+ white-space: pre-line;
3263
+ overflow: hidden;
3264
+ }
3265
+ .iris-panel-message-overlay .message-content {
3266
+ font-size: 1.2rem;
3267
+ }
3268
+ .iris-panel-message-overlay .message-content .message-icon {
3269
+ font-size: 64px;
3270
+ }
3271
+ .iris-panel-message-overlay .message-content .message-icon .svg-inline--fa {
3272
+ font-size: inherit;
3273
+ }
3274
+
3275
+ .iris-panel-scrim-background {
3276
+ background: rgba(0, 0, 0, 0.1);
3277
+ }
3278
+
3279
+ /*# sourceMappingURL=LoadingOverlay.css.map */
3280
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
3281
+ .panel-error-boundary {
3282
+ height: 100%;
3283
+ width: 100%;
3284
+ position: relative;
3285
+ }
3286
+
3287
+ /*# sourceMappingURL=PanelErrorBoundary.css.map */
3288
+ .dashboard-container {
3289
+ position: relative;
3290
+ }
3291
+
3292
+ /*# sourceMappingURL=Dashboard.css.map */
3293
+ .tab-tooltip-container {
3294
+ padding: 5px 15px;
3295
+ max-width: 300px;
3296
+ text-align: left;
3297
+ }
3298
+ .tab-tooltip-container .tab-tooltip-title {
3299
+ min-width: 110px;
3300
+ }
3301
+ .tab-tooltip-container .tab-tooltip-name {
3302
+ max-width: 190px;
3303
+ word-break: break-word;
3304
+ padding-left: 5px;
3305
+ }
3306
+ .tab-tooltip-container .tab-tooltip-copy {
3307
+ margin-left: 2px;
3308
+ margin-top: -4px;
3309
+ }
3310
+
3311
+ /*# sourceMappingURL=WidgetPanelTooltip.css.map */
3312
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
3313
+ .query-status-bar {
3314
+ position: absolute;
3315
+ bottom: 0;
3316
+ left: 0;
3317
+ z-index: 30;
3318
+ text-align: left;
3319
+ display: block;
3320
+ padding: 3px 5px;
3321
+ background: rgba(45, 42, 46, 0.95);
3322
+ color: #c0bfbf;
3323
+ border-top: 1px solid #5b5a5c;
3324
+ border-right: 1px solid #5b5a5c;
3325
+ min-width: 400px;
3326
+ }
3327
+
3328
+ /*# sourceMappingURL=WidgetPanel.css.map */