@deephaven/dashboard 0.40.2 → 0.40.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/PanelPlaceholder.css +1 -3
- package/dist/PanelPlaceholder.css.map +1 -1
- package/dist/PanelPlaceholder.js +1 -1
- package/dist/PanelPlaceholder.js.map +1 -1
- package/dist/layout/GoldenLayout.css +281 -129
- package/dist/layout/GoldenLayout.css.map +1 -1
- package/dist/layout/GoldenLayout.module.css +722 -0
- package/dist/layout/GoldenLayout.module.css.map +1 -0
- package/dist/layout/GoldenLayoutThemeExport.d.ts +6 -0
- package/dist/layout/GoldenLayoutThemeExport.d.ts.map +1 -0
- package/dist/layout/GoldenLayoutThemeExport.js +6 -0
- package/dist/layout/GoldenLayoutThemeExport.js.map +1 -0
- package/dist/layout/LayoutUtils.d.ts +4 -3
- package/dist/layout/LayoutUtils.d.ts.map +1 -1
- package/dist/layout/LayoutUtils.js +3 -2
- package/dist/layout/LayoutUtils.js.map +1 -1
- package/dist/layout/index.d.ts +1 -0
- package/dist/layout/index.d.ts.map +1 -1
- package/dist/layout/index.js +1 -0
- package/dist/layout/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -3,13 +3,11 @@
|
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
justify-content: center;
|
|
6
|
+
padding: 1rem;
|
|
6
7
|
min-height: 100%;
|
|
7
8
|
max-height: 100%;
|
|
8
9
|
text-align: center;
|
|
9
10
|
overflow: hidden;
|
|
10
11
|
}
|
|
11
|
-
.panel-placeholder div {
|
|
12
|
-
padding: 1rem;
|
|
13
|
-
}
|
|
14
12
|
|
|
15
13
|
/*# sourceMappingURL=PanelPlaceholder.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../node_modules/@deephaven/components/scss/custom.scss","../src/PanelPlaceholder.scss","../../../node_modules/@deephaven/components/scss/new_variables.scss"],"names":[],"mappings":"AAAA;ACEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../node_modules/@deephaven/components/scss/custom.scss","../src/PanelPlaceholder.scss","../../../node_modules/@deephaven/components/scss/new_variables.scss"],"names":[],"mappings":"AAAA;ACEA;EACE;EACA;EACA;EACA,SCFS;EDGT;EACA;EACA;EACA","file":"PanelPlaceholder.css","sourcesContent":["/* stylelint-disable scss/at-import-no-partial-leading-underscore */\n// Consumers should be able to resolve bootstrap/ to node_modules/bootstrap\n\n//Make bootstrap functions available for use in overrides\n@import 'bootstrap/scss/_functions.scss';\n@import './bootstrap_overrides.scss';\n\n//_variable imports come after bootstrap default overrides,\n// makes all other variables and mixins from bootstrap available\n/// with just importing customer.scss\n@import 'bootstrap/scss/_variables.scss';\n@import 'bootstrap/scss/_mixins.scss';\n\n//New variables come after imports\n@import './new_variables.scss';\n","@import '@deephaven/components/scss/custom.scss';\n\n.panel-placeholder {\n display: flex;\n flex-direction: column;\n justify-content: center;\n padding: $spacer-3;\n min-height: 100%;\n max-height: 100%;\n text-align: center;\n overflow: hidden;\n}\n","//Set of spacer variables from the spacer map\n$spacer-0: map-get($spacers, 0); //0\n$spacer-1: map-get($spacers, 1);\n$spacer-2: map-get($spacers, 2);\n$spacer-3: map-get($spacers, 3);\n$spacer-4: map-get($spacers, 4);\n$spacer-5: map-get($spacers, 5);\n\n//Marching Ants for golden layout dropzone and drag and drop\n//top bottom, left right.\n//create 4 background images that are 50% color 1, 50% color 2 using graidents, two veritical, two horizontal\n//size them to ant-size and thickness\n//position those images along the egdes and make top/bottom repeat-x and left/right repeat-y\n//then offest each of those background positions by ant-size in animation to make them march.\n$ant-size: 8px;\n$ant-thickness: 1px;\n\n@mixin ants-base($color-1: black, $color-2: white) {\n background-image: linear-gradient(to right, $color-2 50%, $color-1 50%),\n linear-gradient(to right, $color-2 50%, $color-1 50%),\n linear-gradient(to bottom, $color-2 50%, $color-1 50%),\n linear-gradient(to bottom, $color-2 50%, $color-1 50%);\n background-size: $ant-size $ant-thickness, $ant-size $ant-thickness,\n $ant-thickness $ant-size, $ant-thickness $ant-size;\n background-position: 0 top, 0 bottom, left 0, right 0;\n background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;\n animation: march 0.5s;\n animation-timing-function: linear;\n animation-iteration-count: infinite;\n}\n\n@mixin drag-stack($pseudo-element) {\n &::#{$pseudo-element} {\n content: ' ';\n background: $primary;\n box-shadow: $box-shadow;\n border-radius: $border-radius;\n position: absolute;\n height: 100%;\n width: 100%;\n @content;\n }\n}\n\n$focus-bg-transparency: 0.12;\n$hover-bg-transparency: 0.14;\n$active-bg-transparency: 0.28;\n$exception-transparency: 0.13;\n"]}
|
package/dist/PanelPlaceholder.js
CHANGED
|
@@ -11,7 +11,7 @@ var PanelPlaceholder = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
11
11
|
return /*#__PURE__*/React.createElement("div", {
|
|
12
12
|
ref: ref,
|
|
13
13
|
className: "panel-placeholder"
|
|
14
|
-
},
|
|
14
|
+
}, "Component \"", component, "\" is not registered.");
|
|
15
15
|
});
|
|
16
16
|
PanelPlaceholder.displayName = 'PanelPlaceholder';
|
|
17
17
|
export default PanelPlaceholder;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelPlaceholder.js","names":["React","LayoutUtils","PanelPlaceholder","forwardRef","props","ref","component","getComponentNameFromPanel","displayName"],"sources":["../src/PanelPlaceholder.tsx"],"sourcesContent":["import React, { ForwardedRef } from 'react';\nimport './PanelPlaceholder.scss';\nimport LayoutUtils from './layout/LayoutUtils';\nimport { PanelProps } from './DashboardPlugin';\n\n/**\n * Displays a placeholder for unregistered panel types.\n */\nconst PanelPlaceholder = React.forwardRef(\n (props: PanelProps, ref: ForwardedRef<HTMLDivElement>) => {\n const component = LayoutUtils.getComponentNameFromPanel({ props });\n return (\n <div ref={ref} className=\"panel-placeholder\">\n
|
|
1
|
+
{"version":3,"file":"PanelPlaceholder.js","names":["React","LayoutUtils","PanelPlaceholder","forwardRef","props","ref","component","getComponentNameFromPanel","displayName"],"sources":["../src/PanelPlaceholder.tsx"],"sourcesContent":["import React, { ForwardedRef } from 'react';\nimport './PanelPlaceholder.scss';\nimport LayoutUtils from './layout/LayoutUtils';\nimport { PanelProps } from './DashboardPlugin';\n\n/**\n * Displays a placeholder for unregistered panel types.\n */\nconst PanelPlaceholder = React.forwardRef(\n (props: PanelProps, ref: ForwardedRef<HTMLDivElement>) => {\n const component = LayoutUtils.getComponentNameFromPanel({ props });\n return (\n <div ref={ref} className=\"panel-placeholder\">\n Component "{component}" is not registered.\n </div>\n );\n }\n);\n\nPanelPlaceholder.displayName = 'PanelPlaceholder';\n\nexport default PanelPlaceholder;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAwB,OAAO;AAAC;AAAA,OAErCC,WAAW;AAGlB;AACA;AACA;AACA,IAAMC,gBAAgB,gBAAGF,KAAK,CAACG,UAAU,CACvC,CAACC,KAAiB,EAAEC,GAAiC,KAAK;EACxD,IAAMC,SAAS,GAAGL,WAAW,CAACM,yBAAyB,CAAC;IAAEH;EAAM,CAAC,CAAC;EAClE,oBACE;IAAK,GAAG,EAAEC,GAAI;IAAC,SAAS,EAAC;EAAmB,GAAC,cAC3B,EAACC,SAAS,EAAC,uBAC7B,CAAM;AAEV,CAAC,CACF;AAEDJ,gBAAgB,CAACM,WAAW,GAAG,kBAAkB;AAEjD,eAAeN,gBAAgB"}
|
|
@@ -207,6 +207,17 @@
|
|
|
207
207
|
flex-shrink: 0;
|
|
208
208
|
}
|
|
209
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
|
+
}
|
|
210
221
|
.lm_header .lm_tabdropdown_list {
|
|
211
222
|
position: absolute;
|
|
212
223
|
top: 20px;
|
|
@@ -279,106 +290,220 @@
|
|
|
279
290
|
z-index: 20;
|
|
280
291
|
}
|
|
281
292
|
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
overflow: hidden;
|
|
285
|
-
pointer-events: none;
|
|
293
|
+
.lm_goldenlayout {
|
|
294
|
+
background: #000000;
|
|
286
295
|
}
|
|
287
|
-
|
|
288
|
-
|
|
296
|
+
|
|
297
|
+
.lm_content {
|
|
298
|
+
background: #222222;
|
|
289
299
|
}
|
|
290
|
-
|
|
291
|
-
|
|
300
|
+
|
|
301
|
+
.lm_dragProxy .lm_content {
|
|
302
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
|
|
292
303
|
}
|
|
293
|
-
|
|
294
|
-
|
|
304
|
+
|
|
305
|
+
.lm_dropTargetIndicator {
|
|
306
|
+
box-shadow: inset 0 0 30px #000000;
|
|
307
|
+
outline: 1px dashed #cccccc;
|
|
308
|
+
transition: all 200ms ease;
|
|
309
|
+
}
|
|
310
|
+
.lm_dropTargetIndicator .lm_inner {
|
|
311
|
+
background: #000000;
|
|
312
|
+
opacity: 0.2;
|
|
295
313
|
}
|
|
296
314
|
|
|
297
|
-
|
|
298
|
-
|
|
315
|
+
.lm_splitter {
|
|
316
|
+
background: #000000;
|
|
317
|
+
opacity: 0.001;
|
|
318
|
+
transition: opacity 200ms ease;
|
|
319
|
+
}
|
|
320
|
+
.lm_splitter:hover, .lm_splitter.lm_dragging {
|
|
321
|
+
background: #444444;
|
|
322
|
+
opacity: 1;
|
|
299
323
|
}
|
|
300
324
|
|
|
325
|
+
.lm_header {
|
|
326
|
+
height: 20px;
|
|
327
|
+
user-select: none;
|
|
328
|
+
}
|
|
329
|
+
.lm_header.lm_selectable {
|
|
330
|
+
cursor: pointer;
|
|
331
|
+
}
|
|
332
|
+
.lm_header .lm_tab {
|
|
333
|
+
font-family: Arial, sans-serif;
|
|
334
|
+
font-size: 12px;
|
|
335
|
+
color: #999999;
|
|
336
|
+
background: #111111;
|
|
337
|
+
box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.3);
|
|
338
|
+
margin-right: 2px;
|
|
339
|
+
padding-bottom: 2px;
|
|
340
|
+
padding-top: 2px;
|
|
341
|
+
/*.lm_title // Present in LIGHT Theme
|
|
342
|
+
{
|
|
343
|
+
padding-top:1px;
|
|
344
|
+
}*/
|
|
345
|
+
}
|
|
346
|
+
.lm_header .lm_tab .lm_close_tab {
|
|
347
|
+
width: 11px;
|
|
348
|
+
height: 11px;
|
|
349
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAATElEQVR4nG3OwQ0DMQwDwZGRBtR/j1YJzMc5+IDoR+yCVO29g+pu981MFgqZmRdAfU7+CYWcbF11LwALjpBL0N0qybNx/RPU+gOeiS/+XCRwDlTgkQAAAABJRU5ErkJggg==);
|
|
350
|
+
background-position: center center;
|
|
351
|
+
background-repeat: no-repeat;
|
|
352
|
+
top: 4px;
|
|
353
|
+
right: 6px;
|
|
354
|
+
opacity: 0.4;
|
|
355
|
+
}
|
|
356
|
+
.lm_header .lm_tab .lm_close_tab:hover {
|
|
357
|
+
opacity: 1;
|
|
358
|
+
}
|
|
359
|
+
.lm_header .lm_tab.lm_active {
|
|
360
|
+
border-bottom: none;
|
|
361
|
+
box-shadow: 0 -2px 2px #000000;
|
|
362
|
+
padding-bottom: 3px;
|
|
363
|
+
}
|
|
301
364
|
.lm_header .lm_tab.lm_active .lm_close_tab {
|
|
302
|
-
|
|
365
|
+
opacity: 1;
|
|
303
366
|
}
|
|
304
367
|
|
|
305
|
-
|
|
306
|
-
|
|
368
|
+
.lm_dragProxy.lm_bottom .lm_header .lm_tab,
|
|
369
|
+
.lm_stack.lm_bottom .lm_header .lm_tab {
|
|
370
|
+
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
|
371
|
+
}
|
|
372
|
+
.lm_dragProxy.lm_bottom .lm_header .lm_tab.lm_active,
|
|
373
|
+
.lm_stack.lm_bottom .lm_header .lm_tab.lm_active {
|
|
374
|
+
box-shadow: 0 2px 2px #000000;
|
|
307
375
|
}
|
|
308
376
|
|
|
309
|
-
|
|
310
|
-
background-color: #
|
|
377
|
+
.lm_selected .lm_header {
|
|
378
|
+
background-color: #452500;
|
|
311
379
|
}
|
|
312
380
|
|
|
313
|
-
.
|
|
314
|
-
background: #
|
|
315
|
-
|
|
381
|
+
.lm_tab:hover, .lm_tab.lm_active {
|
|
382
|
+
background: #222222;
|
|
383
|
+
color: #dddddd;
|
|
316
384
|
}
|
|
317
385
|
|
|
318
|
-
.
|
|
319
|
-
|
|
320
|
-
|
|
386
|
+
.lm_header .lm_tabs .lm_tab.lm_keyboard_active {
|
|
387
|
+
color: #000000;
|
|
388
|
+
background: #dddddd;
|
|
321
389
|
}
|
|
322
390
|
|
|
323
|
-
.
|
|
324
|
-
|
|
325
|
-
width: 100%;
|
|
326
|
-
box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
|
|
391
|
+
.lm_header .lm_controls .lm_tabdropdown:before {
|
|
392
|
+
color: #ffffff;
|
|
327
393
|
}
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
394
|
+
|
|
395
|
+
.lm_controls > li {
|
|
396
|
+
position: relative;
|
|
397
|
+
background-position: center center;
|
|
398
|
+
background-repeat: no-repeat;
|
|
399
|
+
opacity: 0.4;
|
|
400
|
+
transition: opacity 300ms ease;
|
|
331
401
|
}
|
|
332
|
-
.
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
402
|
+
.lm_controls > li:hover {
|
|
403
|
+
opacity: 1;
|
|
404
|
+
}
|
|
405
|
+
.lm_controls .lm_popout {
|
|
406
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAPklEQVR4nI2Q0QoAIAwCNfr/X7aXCpGN8snBdgejJOzckpkxs9jR6K6T5JpU0nWl5pSXTk7qwh8SnNT+CAAWCgkKFpuSWsUAAAAASUVORK5CYII=);
|
|
407
|
+
}
|
|
408
|
+
.lm_controls .lm_maximise {
|
|
409
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKElEQVR4nGP8////fwYCgImQAgYGBgYWKM2IR81/okwajIpgvsMbVgAwgQYRVakEKQAAAABJRU5ErkJggg==);
|
|
410
|
+
}
|
|
411
|
+
.lm_controls .lm_close {
|
|
412
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
|
|
413
|
+
}
|
|
414
|
+
.lm_controls .lm_tabnextbutton {
|
|
415
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjUGBgEGBg4GBgYGFgYAKTHCARoDgABscAe0vtWukAAAAASUVORK5CYII=);
|
|
416
|
+
}
|
|
417
|
+
.lm_controls .lm_tabpreviousbutton {
|
|
418
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABxJREFUCNdjYGJgYGFg4GBgEGBgUACTHCARoDgABSMAXe2fzqEAAAAASUVORK5CYII=);
|
|
336
419
|
}
|
|
337
420
|
|
|
338
|
-
.
|
|
339
|
-
background-
|
|
340
|
-
background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
|
|
341
|
-
background-position: 0 top, 0 bottom, left 0, right 0;
|
|
342
|
-
background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
|
|
343
|
-
animation: march 0.5s;
|
|
344
|
-
animation-timing-function: linear;
|
|
345
|
-
animation-iteration-count: infinite;
|
|
346
|
-
box-sizing: border-box;
|
|
347
|
-
transition: all 0.2s ease;
|
|
421
|
+
.lm_maximised .lm_header {
|
|
422
|
+
background-color: #000000;
|
|
348
423
|
}
|
|
349
|
-
.
|
|
350
|
-
|
|
351
|
-
border: 1px solid transparent;
|
|
352
|
-
box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
|
|
353
|
-
opacity: 1;
|
|
354
|
-
background: rgba(72, 120, 234, 0.1);
|
|
424
|
+
.lm_maximised .lm_controls .lm_maximise {
|
|
425
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJ0lEQVR4nGP8//8/AzGAiShVI1YhCwMDA8OsWbPwBmZaWhoj0SYCAN1lBxMAX4n0AAAAAElFTkSuQmCC);
|
|
355
426
|
}
|
|
356
427
|
|
|
357
|
-
.
|
|
358
|
-
|
|
359
|
-
opacity: 0.001;
|
|
360
|
-
transition: opacity 0.15s ease;
|
|
428
|
+
.lm_popin {
|
|
429
|
+
cursor: pointer;
|
|
361
430
|
}
|
|
362
|
-
.
|
|
363
|
-
background: #
|
|
431
|
+
.lm_popin .lm_bg {
|
|
432
|
+
background: #ffffff;
|
|
433
|
+
opacity: 0.3;
|
|
434
|
+
}
|
|
435
|
+
.lm_popin .lm_icon {
|
|
436
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAWklEQVR4nJWOyw3AIAxDHcQC7L8jbwT3AlJBfNp3SiI7dtRaLSlKKeoA1oEsKSQZCEluexw8Tm3ohk+E7bnOUHUGcNh+HwbBygw4AZ7FN/Lt84p0l+yTflV8AKQyLdcCRJi/AAAAAElFTkSuQmCC);
|
|
437
|
+
background-position: center center;
|
|
438
|
+
background-repeat: no-repeat;
|
|
439
|
+
border-left: 1px solid #eeeeee;
|
|
440
|
+
border-top: 1px solid #eeeeee;
|
|
441
|
+
opacity: 0.7;
|
|
442
|
+
}
|
|
443
|
+
.lm_popin:hover .lm_icon {
|
|
364
444
|
opacity: 1;
|
|
365
445
|
}
|
|
366
446
|
|
|
367
|
-
.
|
|
447
|
+
.lm_goldenlayout {
|
|
448
|
+
background: #1a171a;
|
|
449
|
+
position: absolute;
|
|
450
|
+
}
|
|
451
|
+
.lm_goldenlayout .lm_header {
|
|
368
452
|
box-sizing: content-box;
|
|
369
453
|
height: 28px;
|
|
370
454
|
padding-top: 0;
|
|
371
455
|
background: #201e21;
|
|
372
456
|
box-shadow: inset 0 -1px 0 0 #1a171a;
|
|
373
|
-
user-select: none;
|
|
374
457
|
}
|
|
375
|
-
.lm_header .lm_controls > li {
|
|
458
|
+
.lm_goldenlayout .lm_header .lm_controls > li {
|
|
376
459
|
height: 100%;
|
|
377
460
|
width: 24px;
|
|
378
461
|
}
|
|
379
|
-
|
|
380
|
-
|
|
462
|
+
|
|
463
|
+
.lm_maximised {
|
|
464
|
+
border: 15px solid rgba(26, 23, 26, 0.85);
|
|
465
|
+
height: 100% !important;
|
|
466
|
+
width: 100% !important;
|
|
467
|
+
}
|
|
468
|
+
.lm_maximised .lm_items {
|
|
469
|
+
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.45);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.lm_header .lm_controls .lm_tabpreviousbutton {
|
|
473
|
+
background-size: 16px;
|
|
474
|
+
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");
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.lm_header .lm_controls .lm_tabnextbutton {
|
|
478
|
+
background-size: 16px;
|
|
479
|
+
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");
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.lm_header .lm_controls .lm_tabdropdown {
|
|
483
|
+
background-size: 16px;
|
|
484
|
+
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");
|
|
485
|
+
}
|
|
486
|
+
.lm_header .lm_controls .lm_tabdropdown::before {
|
|
487
|
+
display: none;
|
|
381
488
|
}
|
|
489
|
+
|
|
490
|
+
.lm_header .lm_controls .lm_maximise {
|
|
491
|
+
background-size: 16px;
|
|
492
|
+
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");
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.lm_tabs:empty + .lm_controls .lm_maximise {
|
|
496
|
+
display: none;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.lm_maximised .lm_header .lm_controls .lm_maximise {
|
|
500
|
+
opacity: 0.7;
|
|
501
|
+
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");
|
|
502
|
+
}
|
|
503
|
+
.lm_maximised .lm_header .lm_controls .lm_maximise:hover {
|
|
504
|
+
opacity: 1;
|
|
505
|
+
}
|
|
506
|
+
|
|
382
507
|
.lm_header .lm_tab {
|
|
383
508
|
display: flex;
|
|
384
509
|
align-items: center;
|
|
@@ -404,27 +529,16 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
404
529
|
display: flex;
|
|
405
530
|
align-items: center;
|
|
406
531
|
}
|
|
407
|
-
.lm_header .lm_tab .
|
|
408
|
-
|
|
409
|
-
|
|
532
|
+
.lm_header .lm_tab .editor-unsaved-indicator {
|
|
533
|
+
display: none;
|
|
534
|
+
margin-right: 5px;
|
|
410
535
|
width: 8px;
|
|
411
536
|
height: 8px;
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
background-color: #242125;
|
|
415
|
-
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");
|
|
416
|
-
mask-position: center center;
|
|
417
|
-
mask-repeat: no-repeat;
|
|
418
|
-
mask-size: 8px;
|
|
419
|
-
opacity: 1;
|
|
420
|
-
transition: background-color 0.15s;
|
|
421
|
-
}
|
|
422
|
-
.lm_header .lm_tab .lm_close_tab:hover {
|
|
423
|
-
opacity: 1;
|
|
537
|
+
border-radius: 50%;
|
|
538
|
+
background: #4878ea;
|
|
424
539
|
}
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
background-color: #2d2a2e;
|
|
540
|
+
.lm_header .lm_tab .editor-unsaved-indicator.is-unsaved {
|
|
541
|
+
display: inline-block;
|
|
428
542
|
}
|
|
429
543
|
|
|
430
544
|
.lm_header .lm_tab.lm_active,
|
|
@@ -444,37 +558,49 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
444
558
|
box-shadow: none;
|
|
445
559
|
}
|
|
446
560
|
|
|
447
|
-
.
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
background-repeat: no-repeat;
|
|
451
|
-
opacity: 0.4;
|
|
452
|
-
transition: opacity 300ms ease;
|
|
561
|
+
.lm_content {
|
|
562
|
+
background: #2d2a2e;
|
|
563
|
+
overflow: visible;
|
|
453
564
|
}
|
|
454
|
-
|
|
565
|
+
|
|
566
|
+
.lm_header .lm_tab .lm_close_tab {
|
|
567
|
+
cursor: pointer;
|
|
568
|
+
position: relative;
|
|
569
|
+
top: unset;
|
|
570
|
+
right: unset;
|
|
571
|
+
width: 8px;
|
|
572
|
+
height: 8px;
|
|
573
|
+
padding: 4px;
|
|
574
|
+
margin-left: -0.25rem;
|
|
575
|
+
background-image: none;
|
|
576
|
+
background-color: #242125;
|
|
577
|
+
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");
|
|
578
|
+
mask-position: center center;
|
|
579
|
+
mask-repeat: no-repeat;
|
|
580
|
+
mask-size: 8px;
|
|
455
581
|
opacity: 1;
|
|
582
|
+
transition: background-color 0.15s;
|
|
456
583
|
}
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
background-size: 16px;
|
|
462
|
-
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");
|
|
584
|
+
|
|
585
|
+
.lm_splitter,
|
|
586
|
+
.lm_splitter:hover {
|
|
587
|
+
background: #929192;
|
|
463
588
|
}
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
background
|
|
589
|
+
|
|
590
|
+
.lm_splitter.lm_dragging {
|
|
591
|
+
background: #c0bfbf;
|
|
467
592
|
}
|
|
468
|
-
|
|
469
|
-
|
|
593
|
+
|
|
594
|
+
.lm_dragProxy .lm_content {
|
|
595
|
+
height: 100%;
|
|
596
|
+
width: 100%;
|
|
597
|
+
box-shadow: 0 0.1rem 1rem rgba(26, 23, 26, 0.45);
|
|
470
598
|
}
|
|
471
|
-
.
|
|
472
|
-
|
|
473
|
-
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");
|
|
599
|
+
.lm_dragProxy .lm_header {
|
|
600
|
+
height: 28px;
|
|
474
601
|
}
|
|
475
|
-
.
|
|
476
|
-
|
|
477
|
-
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");
|
|
602
|
+
.lm_dragProxy .lm_header .lm_tab {
|
|
603
|
+
border: 0;
|
|
478
604
|
}
|
|
479
605
|
|
|
480
606
|
.lm_header .lm_tabdropdown_list {
|
|
@@ -512,6 +638,11 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
512
638
|
color: #c0bfbf;
|
|
513
639
|
box-shadow: none;
|
|
514
640
|
}
|
|
641
|
+
.lm_header .lm_tabdropdown_list .lm_tab .editor-unsaved-indicator {
|
|
642
|
+
width: 10px;
|
|
643
|
+
height: 10px;
|
|
644
|
+
border: 1px solid #242125;
|
|
645
|
+
}
|
|
515
646
|
.lm_header .lm_tabdropdown_list .lm_tab.lm_keyboard_active {
|
|
516
647
|
color: #c0bfbf;
|
|
517
648
|
background-color: #343e5d;
|
|
@@ -521,43 +652,64 @@ body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
|
521
652
|
background-color: #4878ea;
|
|
522
653
|
}
|
|
523
654
|
|
|
524
|
-
.
|
|
525
|
-
|
|
526
|
-
height: 100% !important;
|
|
527
|
-
width: 100% !important;
|
|
655
|
+
body:not(.lm_dragging) .lm_header .lm_tab:not(.lm_active):hover {
|
|
656
|
+
color: #c0bfbf;
|
|
528
657
|
}
|
|
529
|
-
|
|
530
|
-
|
|
658
|
+
|
|
659
|
+
.lm_header .lm_tab.lm_active .lm_close_tab {
|
|
660
|
+
background-color: #2d2a2e;
|
|
531
661
|
}
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
background-
|
|
662
|
+
|
|
663
|
+
body:not(.lm_dragging) .lm_header .lm_tab:hover .lm_close_tab {
|
|
664
|
+
background-color: #929192;
|
|
535
665
|
}
|
|
536
|
-
|
|
537
|
-
|
|
666
|
+
|
|
667
|
+
body:not(.lm_dragging) .lm_header .lm_tab .lm_close_tab:hover {
|
|
668
|
+
background-color: #fcfcfa;
|
|
538
669
|
}
|
|
539
670
|
|
|
540
|
-
.
|
|
541
|
-
|
|
671
|
+
.lm_dropTargetIndicator {
|
|
672
|
+
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%);
|
|
673
|
+
background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
|
|
674
|
+
background-position: 0 top, 0 bottom, left 0, right 0;
|
|
675
|
+
background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
|
|
676
|
+
animation: march 0.5s;
|
|
677
|
+
animation-timing-function: linear;
|
|
678
|
+
animation-iteration-count: infinite;
|
|
679
|
+
box-sizing: border-box;
|
|
680
|
+
outline: 0;
|
|
681
|
+
box-shadow: none;
|
|
542
682
|
}
|
|
543
683
|
|
|
544
|
-
.
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
background: #4878ea;
|
|
684
|
+
.lm_dropTargetIndicator .lm_inner {
|
|
685
|
+
box-sizing: border-box;
|
|
686
|
+
border: 1px solid transparent;
|
|
687
|
+
box-shadow: inset 0 0 1rem 1px rgba(0, 0, 0, 0.45);
|
|
688
|
+
opacity: 1;
|
|
689
|
+
background: rgba(72, 120, 234, 0.1);
|
|
551
690
|
}
|
|
552
|
-
|
|
553
|
-
|
|
691
|
+
|
|
692
|
+
.lm_dragging {
|
|
693
|
+
overflow: hidden;
|
|
554
694
|
}
|
|
555
695
|
|
|
556
|
-
.lm_dragging .
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
.lm_dragging .
|
|
696
|
+
.lm_dragging .app {
|
|
697
|
+
pointer-events: none;
|
|
698
|
+
}
|
|
699
|
+
.lm_dragging .app .lm_controls > li {
|
|
700
|
+
pointer-events: none;
|
|
701
|
+
}
|
|
702
|
+
.lm_dragging .app .lm_controls > li.lm_tabpreviousbutton, .lm_dragging .app .lm_controls > li.lm_tabnextbutton {
|
|
703
|
+
pointer-events: auto;
|
|
704
|
+
}
|
|
705
|
+
.lm_dragging .app .js-plotly-plot .plotly svg,
|
|
706
|
+
.lm_dragging .app .js-plotly-plot .plotly g,
|
|
707
|
+
.lm_dragging .app .js-plotly-plot .plotly rect,
|
|
708
|
+
.lm_dragging .app .js-plotly-plot .plotly path {
|
|
560
709
|
pointer-events: none !important;
|
|
561
710
|
}
|
|
711
|
+
.lm_dragging .app .lm_header {
|
|
712
|
+
pointer-events: auto;
|
|
713
|
+
}
|
|
562
714
|
|
|
563
715
|
/*# sourceMappingURL=GoldenLayout.css.map */
|