@deephaven/dashboard 0.43.0 → 0.44.0

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 (55) hide show
  1. package/dist/Dashboard.css +5 -0
  2. package/dist/Dashboard.css.map +1 -0
  3. package/dist/Dashboard.js +93 -0
  4. package/dist/Dashboard.js.map +1 -0
  5. package/dist/DashboardConstants.js +3 -0
  6. package/dist/DashboardConstants.js.map +1 -0
  7. package/dist/DashboardLayout.js +181 -0
  8. package/dist/DashboardLayout.js.map +1 -0
  9. package/dist/DashboardPanelWrapper.js +10 -0
  10. package/dist/DashboardPanelWrapper.js.map +1 -0
  11. package/dist/DashboardPlugin.js +22 -0
  12. package/dist/DashboardPlugin.js.map +1 -0
  13. package/dist/DashboardUtils.js +62 -0
  14. package/dist/DashboardUtils.js.map +1 -0
  15. package/dist/PanelErrorBoundary.css +8 -0
  16. package/dist/PanelErrorBoundary.css.map +1 -0
  17. package/dist/PanelErrorBoundary.js +55 -0
  18. package/dist/PanelErrorBoundary.js.map +1 -0
  19. package/dist/PanelEvent.js +32 -0
  20. package/dist/PanelEvent.js.map +1 -0
  21. package/dist/PanelManager.js +255 -0
  22. package/dist/PanelManager.js.map +1 -0
  23. package/dist/PanelPlaceholder.css +15 -0
  24. package/dist/PanelPlaceholder.css.map +1 -0
  25. package/dist/PanelPlaceholder.js +18 -0
  26. package/dist/PanelPlaceholder.js.map +1 -0
  27. package/dist/declaration.d.js +2 -0
  28. package/dist/declaration.d.js.map +1 -0
  29. package/dist/index.js +15 -0
  30. package/dist/index.js.map +1 -0
  31. package/dist/layout/GLPropTypes.js +37 -0
  32. package/dist/layout/GLPropTypes.js.map +1 -0
  33. package/dist/layout/GoldenLayout.css +581 -0
  34. package/dist/layout/GoldenLayout.css.map +1 -0
  35. package/dist/layout/LayoutUtils.js +690 -0
  36. package/dist/layout/LayoutUtils.js.map +1 -0
  37. package/dist/layout/hooks.js +11 -0
  38. package/dist/layout/hooks.js.map +1 -0
  39. package/dist/layout/index.js +5 -0
  40. package/dist/layout/index.js.map +1 -0
  41. package/dist/layout/usePanelRegistration.js +23 -0
  42. package/dist/layout/usePanelRegistration.js.map +1 -0
  43. package/dist/redux/actionTypes.js +3 -0
  44. package/dist/redux/actionTypes.js.map +1 -0
  45. package/dist/redux/actions.js +27 -0
  46. package/dist/redux/actions.js.map +1 -0
  47. package/dist/redux/index.js +10 -0
  48. package/dist/redux/index.js.map +1 -0
  49. package/dist/redux/reducers/dashboardData.js +7 -0
  50. package/dist/redux/reducers/dashboardData.js.map +1 -0
  51. package/dist/redux/reducers/index.js +5 -0
  52. package/dist/redux/reducers/index.js.map +1 -0
  53. package/dist/redux/selectors.js +40 -0
  54. package/dist/redux/selectors.js.map +1 -0
  55. package/package.json +10 -10
@@ -0,0 +1,581 @@
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
+ overflow: hidden;
62
+ }
63
+ .lm_header.lm_dropdown_open {
64
+ z-index: 22;
65
+ }
66
+ .lm_header [class^=lm_] {
67
+ box-sizing: content-box !important;
68
+ }
69
+ .lm_header .lm_controls {
70
+ display: flex;
71
+ user-select: none;
72
+ }
73
+ .lm_header .lm_controls > li {
74
+ cursor: pointer;
75
+ float: left;
76
+ width: 18px;
77
+ height: 18px;
78
+ text-align: center;
79
+ }
80
+ .lm_header .lm_controls > li[disabled] {
81
+ cursor: default;
82
+ opacity: 0.1;
83
+ }
84
+ .lm_header ul {
85
+ margin: 0;
86
+ padding: 0;
87
+ list-style-type: none;
88
+ }
89
+ .lm_header .lm_tabs {
90
+ display: flex;
91
+ flex-grow: 1;
92
+ overflow: hidden;
93
+ }
94
+ .lm_header .lm_tab {
95
+ cursor: pointer;
96
+ height: 14px;
97
+ margin-top: 1px;
98
+ padding: 0px 10px 5px;
99
+ padding-right: 25px;
100
+ position: relative;
101
+ min-width: 0;
102
+ flex-shrink: 0;
103
+ }
104
+ .lm_header .lm_tab .lm_title {
105
+ display: inline-block;
106
+ white-space: nowrap;
107
+ overflow: hidden;
108
+ text-overflow: ellipsis;
109
+ max-width: 100%;
110
+ }
111
+ .lm_header .lm_tab .lm_close_tab {
112
+ width: 14px;
113
+ height: 14px;
114
+ position: absolute;
115
+ top: 0;
116
+ right: 0;
117
+ text-align: center;
118
+ }
119
+
120
+ .lm_stack.lm_left .lm_header,
121
+ .lm_stack.lm_right .lm_header {
122
+ height: 100%;
123
+ }
124
+
125
+ .lm_dragProxy.lm_left .lm_header,
126
+ .lm_dragProxy.lm_right .lm_header,
127
+ .lm_stack.lm_left .lm_header,
128
+ .lm_stack.lm_right .lm_header {
129
+ width: 20px;
130
+ float: left;
131
+ vertical-align: top;
132
+ }
133
+ .lm_dragProxy.lm_left .lm_header .lm_tabs,
134
+ .lm_dragProxy.lm_right .lm_header .lm_tabs,
135
+ .lm_stack.lm_left .lm_header .lm_tabs,
136
+ .lm_stack.lm_right .lm_header .lm_tabs {
137
+ transform-origin: left top;
138
+ top: 0;
139
+ width: 1000px;
140
+ /*hack*/
141
+ }
142
+ .lm_dragProxy.lm_left .lm_header .lm_controls,
143
+ .lm_dragProxy.lm_right .lm_header .lm_controls,
144
+ .lm_stack.lm_left .lm_header .lm_controls,
145
+ .lm_stack.lm_right .lm_header .lm_controls {
146
+ bottom: 0;
147
+ }
148
+ .lm_dragProxy.lm_left .lm_items,
149
+ .lm_dragProxy.lm_right .lm_items,
150
+ .lm_stack.lm_left .lm_items,
151
+ .lm_stack.lm_right .lm_items {
152
+ float: left;
153
+ }
154
+
155
+ .lm_dragProxy.lm_left .lm_header .lm_tabs,
156
+ .lm_stack.lm_left .lm_header .lm_tabs {
157
+ transform: rotate(-90deg) scaleX(-1);
158
+ left: 0;
159
+ }
160
+ .lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,
161
+ .lm_stack.lm_left .lm_header .lm_tabs .lm_tab {
162
+ transform: scaleX(-1);
163
+ margin-top: 1px;
164
+ }
165
+ .lm_dragProxy.lm_left .lm_header .lm_tabdropdown_list,
166
+ .lm_stack.lm_left .lm_header .lm_tabdropdown_list {
167
+ top: initial;
168
+ right: initial;
169
+ left: 20px;
170
+ }
171
+
172
+ .lm_dragProxy.lm_right .lm_content {
173
+ float: left;
174
+ }
175
+
176
+ .lm_dragProxy.lm_right .lm_header .lm_tabs,
177
+ .lm_stack.lm_right .lm_header .lm_tabs {
178
+ transform: rotate(90deg) scaleX(1);
179
+ left: 100%;
180
+ margin-left: 0;
181
+ }
182
+ .lm_dragProxy.lm_right .lm_header .lm_controls,
183
+ .lm_stack.lm_right .lm_header .lm_controls {
184
+ left: 3px;
185
+ }
186
+ .lm_dragProxy.lm_right .lm_header .lm_tabdropdown_list,
187
+ .lm_stack.lm_right .lm_header .lm_tabdropdown_list {
188
+ top: initial;
189
+ right: 20px;
190
+ }
191
+
192
+ .lm_dragProxy.lm_bottom .lm_header .lm_tab,
193
+ .lm_stack.lm_bottom .lm_header .lm_tab {
194
+ margin-top: 0;
195
+ border-top: none;
196
+ }
197
+ .lm_dragProxy.lm_bottom .lm_header .lm_controls,
198
+ .lm_stack.lm_bottom .lm_header .lm_controls {
199
+ top: 3px;
200
+ }
201
+ .lm_dragProxy.lm_bottom .lm_header .lm_tabdropdown_list,
202
+ .lm_stack.lm_bottom .lm_header .lm_tabdropdown_list {
203
+ top: initial;
204
+ bottom: 20px;
205
+ }
206
+
207
+ .lm_drop_tab_placeholder {
208
+ flex-shrink: 0;
209
+ }
210
+
211
+ .lm_tabdropdown_list {
212
+ position: absolute;
213
+ overflow-y: auto;
214
+ overflow-x: hidden;
215
+ top: 0;
216
+ left: 0;
217
+ max-height: 100%;
218
+ }
219
+ .lm_tabdropdown_list .lm_tabs {
220
+ flex-direction: column;
221
+ }
222
+ .lm_tabdropdown_list .lm_tab {
223
+ padding-right: 10px;
224
+ }
225
+ .lm_tabdropdown_list .lm_tab .lm_title {
226
+ display: inline-block;
227
+ white-space: nowrap;
228
+ overflow: hidden;
229
+ text-overflow: ellipsis;
230
+ max-width: 100%;
231
+ }
232
+ .lm_tabdropdown_list .lm_close_tab {
233
+ display: none !important;
234
+ }
235
+
236
+ /***********************************
237
+ * Drag Proxy
238
+ ***********************************/
239
+ .lm_dragProxy {
240
+ position: absolute;
241
+ top: 0;
242
+ left: 0;
243
+ z-index: 30;
244
+ pointer-events: none;
245
+ }
246
+ .lm_dragProxy .lm_header {
247
+ background: transparent;
248
+ }
249
+ .lm_dragProxy .lm_content {
250
+ border-top: none;
251
+ overflow: hidden;
252
+ }
253
+
254
+ .lm_dropTargetIndicator {
255
+ display: none;
256
+ position: absolute;
257
+ z-index: 20;
258
+ pointer-events: none;
259
+ }
260
+ .lm_dropTargetIndicator .lm_inner {
261
+ width: 100%;
262
+ height: 100%;
263
+ position: relative;
264
+ top: 0;
265
+ left: 0;
266
+ }
267
+
268
+ .lm_popin {
269
+ width: 20px;
270
+ height: 20px;
271
+ position: absolute;
272
+ bottom: 0;
273
+ right: 0;
274
+ z-index: 9999;
275
+ }
276
+ .lm_popin > * {
277
+ width: 100%;
278
+ height: 100%;
279
+ position: absolute;
280
+ top: 0;
281
+ left: 0;
282
+ }
283
+ .lm_popin > .lm_bg {
284
+ z-index: 10;
285
+ }
286
+ .lm_popin > .lm_icon {
287
+ z-index: 20;
288
+ }
289
+
290
+ /* stylelint-disable scss/at-import-no-partial-leading-underscore */
291
+ .lm_dragging {
292
+ overflow: hidden;
293
+ pointer-events: none;
294
+ }
295
+ .lm_dragging .lm_goldenlayout .lm_header {
296
+ pointer-events: auto;
297
+ }
298
+ .lm_dragging .lm_goldenlayout .lm_header .lm_controls > li {
299
+ pointer-events: none;
300
+ }
301
+ .lm_dragging .lm_goldenlayout .lm_header .lm_controls > li.lm_tabpreviousbutton, .lm_dragging .lm_goldenlayout .lm_header .lm_controls > li.lm_tabnextbutton {
302
+ pointer-events: auto;
303
+ }
304
+
305
+ body:not(.lm_dragging) .lm_header .lm_tab:not(.lm_active):hover {
306
+ color: #c0bfbf;
307
+ }
308
+
309
+ .lm_header .lm_tab.lm_active .lm_close_tab {
310
+ background-color: #2d2a2e;
311
+ }
312
+
313
+ body:not(.lm_dragging) .lm_header .lm_tab:hover .lm_close_tab {
314
+ background-color: #929192;
315
+ }
316
+
317
+ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
318
+ background-color: #fcfcfa;
319
+ }
320
+
321
+ .lm_goldenlayout {
322
+ background: #1a171a;
323
+ position: absolute;
324
+ }
325
+
326
+ .lm_content {
327
+ background: #2d2a2e;
328
+ overflow: visible;
329
+ }
330
+
331
+ .lm_dragProxy .lm_content {
332
+ height: 100%;
333
+ width: 100%;
334
+ box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
335
+ }
336
+ .lm_dragProxy .lm_header {
337
+ height: 28px;
338
+ box-shadow: none;
339
+ }
340
+ .lm_dragProxy .lm_header .lm_tab,
341
+ .lm_dragProxy .lm_header .lm_tab.lm_active {
342
+ border: 0;
343
+ box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
344
+ }
345
+
346
+ .lm_dropTargetIndicator {
347
+ 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%);
348
+ background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
349
+ background-position: 0 top, 0 bottom, left 0, right 0;
350
+ background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
351
+ animation: march 0.5s;
352
+ animation-timing-function: linear;
353
+ animation-iteration-count: infinite;
354
+ box-sizing: border-box;
355
+ transition: all 0.2s ease;
356
+ }
357
+ .lm_dropTargetIndicator .lm_inner {
358
+ box-sizing: border-box;
359
+ border: 1px solid transparent;
360
+ box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
361
+ opacity: 1;
362
+ background: rgba(72, 120, 234, 0.1);
363
+ }
364
+
365
+ .lm_splitter {
366
+ background: #929192;
367
+ opacity: 0.001;
368
+ transition: opacity 0.15s ease;
369
+ }
370
+ .lm_splitter:hover, .lm_splitter.lm_dragging {
371
+ background: #c0bfbf;
372
+ opacity: 1;
373
+ }
374
+
375
+ .lm_header {
376
+ box-sizing: content-box;
377
+ height: 28px;
378
+ padding-top: 0;
379
+ background: #201e21;
380
+ box-shadow: inset 0 -1px 0 0 #1a171a;
381
+ user-select: none;
382
+ }
383
+ .lm_header .lm_controls > li {
384
+ height: 100%;
385
+ width: 24px;
386
+ }
387
+ .lm_header.lm_selectable {
388
+ cursor: pointer;
389
+ }
390
+
391
+ .lm_header .lm_tab,
392
+ .lm_tabdropdown_list .lm_tab {
393
+ display: flex;
394
+ align-items: center;
395
+ font-family: "Fira Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Roboto", "Helvetica Neue", arial, sans-serif;
396
+ background-color: #242125;
397
+ color: #929192;
398
+ height: 28px;
399
+ font-size: 12px;
400
+ min-width: 5rem;
401
+ margin: 0;
402
+ padding: 0 0.25rem 0 0.5rem;
403
+ box-shadow: inset -1px -1px 0 0 #1a171a;
404
+ transition: color 0.15s, background-color 0.15s;
405
+ max-width: 12rem;
406
+ white-space: nowrap;
407
+ overflow: hidden;
408
+ }
409
+ .lm_header .lm_tab .lm_title,
410
+ .lm_tabdropdown_list .lm_tab .lm_title {
411
+ flex-grow: 1;
412
+ padding-right: 0.25rem;
413
+ }
414
+ .lm_header .lm_tab .lm_title_before,
415
+ .lm_tabdropdown_list .lm_tab .lm_title_before {
416
+ display: flex;
417
+ align-items: center;
418
+ }
419
+ .lm_header .lm_tab .lm_close_tab,
420
+ .lm_tabdropdown_list .lm_tab .lm_close_tab {
421
+ cursor: pointer;
422
+ position: relative;
423
+ width: 8px;
424
+ height: 8px;
425
+ padding: 4px;
426
+ margin-left: -0.25rem;
427
+ background-color: #242125;
428
+ 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");
429
+ mask-position: center center;
430
+ mask-repeat: no-repeat;
431
+ mask-size: 8px;
432
+ opacity: 1;
433
+ transition: background-color 0.15s;
434
+ }
435
+ .lm_header .lm_tab .lm_close_tab:hover,
436
+ .lm_tabdropdown_list .lm_tab .lm_close_tab:hover {
437
+ opacity: 1;
438
+ }
439
+
440
+ .lm_selected .lm_header {
441
+ background-color: #2d2a2e;
442
+ }
443
+
444
+ .lm_header .lm_tab.lm_active,
445
+ .lm_header .lm_tab.lm_active:hover {
446
+ height: 28px;
447
+ background-color: #2d2a2e;
448
+ color: #f0f0ee;
449
+ padding-bottom: 0;
450
+ box-shadow: inset -1px 0 0 0 #1a171a;
451
+ }
452
+ .lm_header .lm_tab.lm_active.lm_focusin,
453
+ .lm_header .lm_tab.lm_active:hover.lm_focusin {
454
+ box-shadow: inset 0 1px #4878ea, inset -1px 0 0 0 #1a171a;
455
+ }
456
+
457
+ .lm_window_blur .lm_header .lm_tab.lm_active.lm_focusin {
458
+ box-shadow: none;
459
+ }
460
+
461
+ .lm_controls > li {
462
+ position: relative;
463
+ background-position: center center;
464
+ background-repeat: no-repeat;
465
+ opacity: 0.4;
466
+ transition: opacity 300ms ease;
467
+ }
468
+ .lm_controls > li:hover {
469
+ opacity: 1;
470
+ }
471
+ .lm_controls .lm_popout {
472
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=);
473
+ }
474
+ .lm_controls .lm_maximise {
475
+ background-size: 16px;
476
+ 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");
477
+ }
478
+ .lm_controls .lm_tabdropdown {
479
+ background-size: 16px;
480
+ 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");
481
+ }
482
+ .lm_controls .lm_close {
483
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
484
+ }
485
+ .lm_controls .lm_tabnextbutton {
486
+ background-size: 16px;
487
+ 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");
488
+ }
489
+ .lm_controls .lm_tabpreviousbutton {
490
+ background-size: 16px;
491
+ 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");
492
+ }
493
+
494
+ .lm_tabdropdown_list {
495
+ z-index: 1000;
496
+ background: #242125;
497
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
498
+ border-radius: 4px;
499
+ max-width: 12rem;
500
+ margin: 0;
501
+ padding: 0;
502
+ list-style-type: none;
503
+ }
504
+ .lm_tabdropdown_list .lm_tabdropdown_search {
505
+ padding: 0.25rem;
506
+ }
507
+ .lm_tabdropdown_list .lm_tabdropdown_search input {
508
+ padding: 0.375rem 0.75rem;
509
+ line-height: 1.5;
510
+ color: #f0f0ee;
511
+ background-color: #555356;
512
+ border: 1px solid #929192;
513
+ border-radius: 4px;
514
+ max-width: 100%;
515
+ }
516
+ .lm_tabdropdown_list .lm_tabdropdown_search input::placeholder {
517
+ color: #929192;
518
+ opacity: 1;
519
+ }
520
+ .lm_tabdropdown_list .lm_tabdropdown_search input:focus {
521
+ border-color: rgba(72, 120, 234, 0.85);
522
+ box-shadow: 0 0 0 0.2rem rgba(72, 120, 234, 0.35);
523
+ outline: 0;
524
+ }
525
+ .lm_tabdropdown_list .lm_tabs {
526
+ padding: 0;
527
+ }
528
+ .lm_tabdropdown_list .lm_tab {
529
+ background: #242125;
530
+ color: #c0bfbf;
531
+ box-shadow: none;
532
+ }
533
+ .lm_tabdropdown_list .lm_tab.lm_keyboard_active {
534
+ color: #c0bfbf;
535
+ background-color: #343e5d;
536
+ }
537
+ .lm_tabdropdown_list .lm_tab:hover {
538
+ color: #f0f0ee;
539
+ background-color: #4878ea;
540
+ }
541
+
542
+ .lm_maximised {
543
+ border: 15px solid rgba(26, 23, 26, 0.85);
544
+ height: 100% !important;
545
+ width: 100% !important;
546
+ }
547
+ .lm_maximised .lm_items {
548
+ box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
549
+ }
550
+ .lm_maximised .lm_controls .lm_maximise {
551
+ opacity: 0.7;
552
+ 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");
553
+ }
554
+ .lm_maximised .lm_controls .lm_maximise:hover {
555
+ opacity: 1;
556
+ }
557
+
558
+ .lm_tabs:empty + .lm_controls .lm_maximise {
559
+ display: none;
560
+ }
561
+
562
+ .lm_tab .editor-unsaved-indicator {
563
+ display: none;
564
+ margin-right: 5px;
565
+ width: 8px;
566
+ height: 8px;
567
+ border-radius: 50%;
568
+ background: #4878ea;
569
+ }
570
+ .lm_tab .editor-unsaved-indicator.is-unsaved {
571
+ display: inline-block;
572
+ }
573
+
574
+ .lm_dragging .js-plotly-plot .plotly svg,
575
+ .lm_dragging .js-plotly-plot .plotly g,
576
+ .lm_dragging .js-plotly-plot .plotly rect,
577
+ .lm_dragging .js-plotly-plot .plotly path {
578
+ pointer-events: none !important;
579
+ }
580
+
581
+ /*# sourceMappingURL=GoldenLayout.css.map */