flexlayout-react 0.8.0 → 0.8.1

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/style/dark.css CHANGED
@@ -1,685 +1,685 @@
1
- .flexlayout__layout {
2
- --color-text: #eeeeee;
3
- --color-background: black;
4
- --color-base: black;
5
- --color-1: #121212;
6
- --color-2: #1a1a1a;
7
- --color-3: #262626;
8
- --color-4: #333333;
9
- --color-5: #404040;
10
- --color-6: #4d4d4d;
11
- --color-drag1: rgb(207, 232, 255);
12
- --color-drag2: rgb(183, 209, 181);
13
- --color-drag1-background: rgba(128, 128, 128, 0.15);
14
- --color-drag2-background: rgba(128, 128, 128, 0.15);
15
- --font-size: medium;
16
- --font-family: Roboto, Arial, sans-serif;
17
- --color-overflow: gray;
18
- --color-icon: gray;
19
- --color-tabset-background: var(--color-1);
20
- --color-tabset-background-selected: var(--color-1);
21
- --color-tabset-background-maximized: var(--color-6);
22
- --color-tabset-divider-line: var(--color-4);
23
- --color-tabset-header-background: var(--color-1);
24
- --color-tabset-header: var(--color-text);
25
- --color-border-tab-content: var(--color-background);
26
- --color-border-background: var(--color-1);
27
- --color-border-divider-line: var(--color-4);
28
- --color-tab-content: var(--color-background);
29
- --color-tab-selected: var(--color-text);
30
- --color-tab-selected-background: var(--color-4);
31
- --color-tab-unselected: gray;
32
- --color-tab-unselected-background: transparent;
33
- --color-tab-textbox: var(--color-text);
34
- --color-tab-textbox-background: var(--color-3);
35
- --color-border-tab-selected: var(--color-text);
36
- --color-border-tab-selected-background: var(--color-4);
37
- --color-border-tab-unselected: gray;
38
- --color-border-tab-unselected-background: var(--color-2);
39
- --color-splitter: var(--color-2);
40
- --color-splitter-hover: var(--color-4);
41
- --color-splitter-drag: var(--color-5);
42
- --color-drag-rect-border: var(--color-4);
43
- --color-drag-rect-background: var(--color-1);
44
- --color-drag-rect: var(--color-text);
45
- --color-popup-border: var(--color-6);
46
- --color-popup-unselected: var(--color-text);
47
- --color-popup-unselected-background: var(--color-background);
48
- --color-popup-selected: var(--color-text);
49
- --color-popup-selected-background: var(--color-4);
50
- --color-edge-marker: gray;
51
- --color-edge-icon: #eee;
52
- }
53
-
54
- .flexlayout__layout {
55
- left: 0;
56
- top: 0;
57
- right: 0;
58
- bottom: 0;
59
- position: absolute;
60
- display: flex;
61
- }
62
- .flexlayout__layout_overlay {
63
- left: 0;
64
- top: 0;
65
- right: 0;
66
- bottom: 0;
67
- position: absolute;
68
- z-index: 1000;
69
- }
70
- .flexlayout__layout_tab_stamps {
71
- position: absolute;
72
- top: -10000px;
73
- z-index: 100;
74
- display: flex;
75
- flex-direction: column;
76
- align-items: start;
77
- }
78
- .flexlayout__layout_moveables {
79
- visibility: hidden;
80
- position: absolute;
81
- width: 100px;
82
- height: 100px;
83
- top: -20000px;
84
- }
85
- .flexlayout__layout_main {
86
- display: flex;
87
- flex-basis: 0px;
88
- min-width: 0;
89
- min-height: 0;
90
- flex-grow: 1;
91
- position: relative;
92
- }
93
- .flexlayout__layout_border_container {
94
- display: flex;
95
- flex-basis: 0px;
96
- min-width: 0;
97
- min-height: 0;
98
- flex-grow: 1;
99
- }
100
- .flexlayout__layout_border_container_inner {
101
- display: flex;
102
- flex-basis: 0px;
103
- min-width: 0;
104
- min-height: 0;
105
- flex-grow: 1;
106
- }
107
- .flexlayout__splitter {
108
- display: flex;
109
- align-items: center;
110
- justify-content: center;
111
- background-color: var(--color-splitter);
112
- touch-action: none;
113
- z-index: 10;
114
- }
115
- @media (hover: hover) {
116
- .flexlayout__splitter:hover {
117
- background-color: var(--color-splitter-hover);
118
- transition: background-color ease-in 0.1s;
119
- transition-delay: 0.05s;
120
- }
121
- }
122
- .flexlayout__splitter_drag {
123
- position: absolute;
124
- display: flex;
125
- align-items: center;
126
- justify-content: center;
127
- z-index: 1000;
128
- background-color: var(--color-splitter-drag);
129
- border-radius: 5px;
130
- }
131
- .flexlayout__splitter_handle {
132
- background-color: #ccc;
133
- border-radius: 3px;
134
- }
135
- .flexlayout__splitter_handle_horz {
136
- width: 3px;
137
- height: 30px;
138
- }
139
- .flexlayout__splitter_handle_vert {
140
- width: 30px;
141
- height: 3px;
142
- }
143
- .flexlayout__splitter_extra {
144
- touch-action: none;
145
- background-color: transparent;
146
- }
147
- .flexlayout__outline_rect {
148
- position: absolute;
149
- pointer-events: none;
150
- box-sizing: border-box;
151
- border: 2px solid var(--color-drag1);
152
- background: var(--color-drag1-background);
153
- border-radius: 5px;
154
- z-index: 1000;
155
- }
156
- .flexlayout__outline_rect_edge {
157
- pointer-events: none;
158
- border: 2px solid var(--color-drag2);
159
- background: var(--color-drag2-background);
160
- border-radius: 5px;
161
- z-index: 1000;
162
- box-sizing: border-box;
163
- }
164
- .flexlayout__edge_rect {
165
- position: absolute;
166
- z-index: 1000;
167
- background-color: var(--color-edge-marker);
168
- pointer-events: none;
169
- display: flex;
170
- align-items: center;
171
- justify-content: center;
172
- }
173
- .flexlayout__drag_rect {
174
- color: var(--color-drag-rect);
175
- background-color: var(--color-drag-rect-background);
176
- border: 2px solid var(--color-drag-rect-border);
177
- border-radius: 5px;
178
- box-sizing: border-box;
179
- display: flex;
180
- justify-content: center;
181
- flex-direction: column;
182
- overflow: hidden;
183
- padding: 0.3em 0.8em;
184
- word-wrap: break-word;
185
- font-size: var(--font-size);
186
- font-family: var(--font-family);
187
- }
188
- .flexlayout__row {
189
- display: flex;
190
- flex-basis: 0px;
191
- min-width: 0;
192
- min-height: 0;
193
- position: relative;
194
- box-sizing: border-box;
195
- overflow: hidden;
196
- }
197
- .flexlayout__tabset {
198
- display: flex;
199
- flex-direction: column;
200
- position: relative;
201
- background-color: var(--color-tabset-background);
202
- box-sizing: border-box;
203
- font-family: var(--font-family);
204
- overflow: hidden;
205
- flex-grow: 1;
206
- }
207
- .flexlayout__tabset_container {
208
- display: flex;
209
- flex-basis: 0px;
210
- min-width: 0;
211
- min-height: 0;
212
- flex-direction: column;
213
- overflow: hidden;
214
- flex-grow: 1;
215
- }
216
- .flexlayout__tabset_tab_divider {
217
- width: 4px;
218
- }
219
- .flexlayout__tabset_content {
220
- display: flex;
221
- flex-basis: 0px;
222
- min-width: 0;
223
- min-height: 0;
224
- flex-grow: 1;
225
- box-sizing: border-box;
226
- position: relative;
227
- }
228
- .flexlayout__tabset_header {
229
- display: flex;
230
- align-items: center;
231
- padding: 3px 3px 3px 5px;
232
- box-sizing: border-box;
233
- border-bottom: 1px solid var(--color-tabset-divider-line);
234
- color: var(--color-tabset-header);
235
- background-color: var(--color-tabset-header-background);
236
- font-size: var(--font-size);
237
- box-shadow: inset 0 0 3px 0 rgba(136, 136, 136, 0.54);
238
- }
239
- .flexlayout__tabset_header_content {
240
- flex-grow: 1;
241
- }
242
- .flexlayout__tabset_tabbar_outer {
243
- box-sizing: border-box;
244
- background-color: var(--color-tabset-background);
245
- overflow: hidden;
246
- display: flex;
247
- font-size: var(--font-size);
248
- }
249
- .flexlayout__tabset_tabbar_outer_top {
250
- padding: 0px 2px 0px 2px;
251
- border-bottom: 1px solid var(--color-tabset-divider-line);
252
- }
253
- .flexlayout__tabset_tabbar_outer_bottom {
254
- padding: 0px 2px 0px 2px;
255
- border-top: 1px solid var(--color-tabset-divider-line);
256
- }
257
- .flexlayout__tabset_tabbar_inner {
258
- position: relative;
259
- box-sizing: border-box;
260
- display: flex;
261
- flex-grow: 1;
262
- overflow: hidden;
263
- }
264
- .flexlayout__tabset_tabbar_inner_tab_container {
265
- position: relative;
266
- display: flex;
267
- padding-left: 4px;
268
- padding-right: 4px;
269
- box-sizing: border-box;
270
- white-space: nowrap;
271
- }
272
- .flexlayout__tabset_tabbar_inner_tab_container_top {
273
- border-top: 2px solid transparent;
274
- }
275
- .flexlayout__tabset_tabbar_inner_tab_container_bottom {
276
- border-bottom: 2px solid transparent;
277
- }
278
- .flexlayout__tabset-selected {
279
- background-color: var(--color-tabset-background-selected);
280
- background-image: linear-gradient(var(--color-background), var(--color-4));
281
- }
282
- .flexlayout__tabset-maximized {
283
- background-color: var(--color-tabset-background-maximized);
284
- background-image: linear-gradient(var(--color-6), var(--color-2));
285
- }
286
- .flexlayout__tab_button_stamp {
287
- display: inline-flex;
288
- align-items: center;
289
- gap: 0.3em;
290
- white-space: nowrap;
291
- box-sizing: border-box;
292
- }
293
- .flexlayout__tab {
294
- overflow: hidden;
295
- box-sizing: border-box;
296
- background-color: var(--color-tab-content);
297
- color: var(--color-text);
298
- position: relative;
299
- }
300
- .flexlayout__tab_moveable {
301
- position: relative;
302
- height: 100%;
303
- min-width: 1px;
304
- min-height: 1px;
305
- overflow: auto;
306
- box-sizing: border-box;
307
- }
308
- .flexlayout__tab_overlay {
309
- z-index: 20;
310
- position: absolute;
311
- top: 0;
312
- left: 0;
313
- right: 0;
314
- bottom: 0;
315
- background-color: rgba(0, 0, 0, 0.2392156863);
316
- }
317
- .flexlayout__tab_button {
318
- display: flex;
319
- gap: 0.3em;
320
- align-items: center;
321
- box-sizing: border-box;
322
- padding: 3px 0.5em;
323
- cursor: pointer;
324
- }
325
- .flexlayout__tab_button_stretch {
326
- background-color: transparent;
327
- color: var(--color-tab-selected);
328
- width: 100%;
329
- padding: 3px 0em;
330
- text-wrap: nowrap;
331
- display: flex;
332
- gap: 0.3em;
333
- align-items: center;
334
- box-sizing: border-box;
335
- cursor: pointer;
336
- }
337
- @media (hover: hover) {
338
- .flexlayout__tab_button_stretch:hover {
339
- color: var(--color-tab-selected);
340
- }
341
- }
342
- .flexlayout__tab_button--selected {
343
- background-color: var(--color-tab-selected-background);
344
- color: var(--color-tab-selected);
345
- }
346
- @media (hover: hover) {
347
- .flexlayout__tab_button:hover {
348
- background-color: var(--color-tab-selected-background);
349
- color: var(--color-tab-selected);
350
- }
351
- }
352
- .flexlayout__tab_button--unselected {
353
- background-color: var(--color-tab-unselected-background);
354
- color: var(--color-tab-unselected);
355
- }
356
- .flexlayout__tab_button_top {
357
- box-shadow: inset -2px 0px 5px rgba(0, 0, 0, 0.1);
358
- border-top-left-radius: 3px;
359
- border-top-right-radius: 3px;
360
- }
361
- .flexlayout__tab_button_bottom {
362
- box-shadow: inset -2px 0px 5px rgba(0, 0, 0, 0.1);
363
- border-bottom-left-radius: 3px;
364
- border-bottom-right-radius: 3px;
365
- }
366
- .flexlayout__tab_button_leading {
367
- display: flex;
368
- }
369
- .flexlayout__tab_button_content {
370
- display: flex;
371
- text-wrap: nowrap;
372
- }
373
- .flexlayout__tab_button_textbox {
374
- border: none;
375
- font-family: var(--font-family);
376
- font-size: var(--font-size);
377
- color: var(--color-tab-textbox);
378
- background-color: var(--color-tab-textbox-background);
379
- border: 1px inset var(--color-1);
380
- border-radius: 3px;
381
- width: 10em;
382
- }
383
- .flexlayout__tab_button_textbox:focus {
384
- outline: none;
385
- }
386
- .flexlayout__tab_button_trailing {
387
- display: flex;
388
- visibility: hidden;
389
- border-radius: 4px;
390
- }
391
- .flexlayout__tab_button_trailing:hover {
392
- background-color: var(--color-6);
393
- }
394
- @media (hover: hover) {
395
- .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
396
- visibility: visible;
397
- }
398
- }
399
- .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
400
- visibility: visible;
401
- }
402
- .flexlayout__tab_button_overflow {
403
- display: flex;
404
- align-items: center;
405
- border: none;
406
- color: var(--color-overflow);
407
- font-size: inherit;
408
- background-color: transparent;
409
- }
410
- .flexlayout__tab_toolbar {
411
- display: flex;
412
- align-items: center;
413
- gap: 0.3em;
414
- padding-left: 0.5em;
415
- padding-right: 0.3em;
416
- }
417
- .flexlayout__tab_toolbar_icon {
418
- border: none;
419
- outline: none;
420
- font-size: inherit;
421
- margin: 0px;
422
- background-color: transparent;
423
- padding: 1px;
424
- }
425
- .flexlayout__tab_toolbar_button {
426
- border: none;
427
- outline: none;
428
- font-size: inherit;
429
- margin: 0px;
430
- background-color: transparent;
431
- border-radius: 4px;
432
- padding: 1px;
433
- }
434
- @media (hover: hover) {
435
- .flexlayout__tab_toolbar_button:hover {
436
- background-color: var(--color-4);
437
- }
438
- }
439
- .flexlayout__tab_toolbar_sticky_buttons_container {
440
- display: flex;
441
- gap: 0.3em;
442
- padding-left: 5px;
443
- align-items: center;
444
- }
445
- .flexlayout__tab_floating {
446
- overflow: auto;
447
- position: absolute;
448
- box-sizing: border-box;
449
- color: var(--color-text);
450
- background-color: var(--color-background);
451
- display: flex;
452
- justify-content: center;
453
- align-items: center;
454
- }
455
- .flexlayout__tab_floating_inner {
456
- overflow: auto;
457
- display: flex;
458
- flex-direction: column;
459
- justify-content: center;
460
- align-items: center;
461
- }
462
- .flexlayout__tab_floating_inner div {
463
- margin-bottom: 5px;
464
- text-align: center;
465
- }
466
- .flexlayout__tab_floating_inner div a {
467
- color: royalblue;
468
- }
469
- .flexlayout__border {
470
- box-sizing: border-box;
471
- overflow: hidden;
472
- display: flex;
473
- font-size: var(--font-size);
474
- font-family: var(--font-family);
475
- color: var(--color-border);
476
- background-color: var(--color-border-background);
477
- }
478
- .flexlayout__border_tab_contents {
479
- box-sizing: border-box;
480
- overflow: hidden;
481
- background-color: var(--color-border-tab-content);
482
- }
483
- .flexlayout__border_top {
484
- border-bottom: 1px solid var(--color-border-divider-line);
485
- align-items: center;
486
- }
487
- .flexlayout__border_bottom {
488
- border-top: 1px solid var(--color-border-divider-line);
489
- align-items: center;
490
- }
491
- .flexlayout__border_left {
492
- border-right: 1px solid var(--color-border-divider-line);
493
- align-content: center;
494
- flex-direction: column;
495
- }
496
- .flexlayout__border_right {
497
- border-left: 1px solid var(--color-border-divider-line);
498
- align-content: center;
499
- flex-direction: column;
500
- }
501
- .flexlayout__border_inner {
502
- position: relative;
503
- box-sizing: border-box;
504
- display: flex;
505
- overflow: hidden;
506
- flex-grow: 1;
507
- }
508
- .flexlayout__border_inner_tab_container {
509
- white-space: nowrap;
510
- display: flex;
511
- padding-left: 2px;
512
- padding-right: 2px;
513
- box-sizing: border-box;
514
- position: absolute;
515
- width: 10000px;
516
- }
517
- .flexlayout__border_inner_tab_container_right {
518
- transform-origin: top left;
519
- transform: rotate(90deg);
520
- }
521
- .flexlayout__border_inner_tab_container_left {
522
- flex-direction: row-reverse;
523
- transform-origin: top right;
524
- transform: rotate(-90deg);
525
- }
526
- .flexlayout__border_tab_divider {
527
- width: 4px;
528
- }
529
- .flexlayout__border_button {
530
- display: flex;
531
- gap: 0.3em;
532
- align-items: center;
533
- cursor: pointer;
534
- padding: 3px 0.5em;
535
- margin: 2px 0px;
536
- box-sizing: border-box;
537
- white-space: nowrap;
538
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
539
- border-radius: 3px;
540
- }
541
- .flexlayout__border_button--selected {
542
- background-color: var(--color-border-tab-selected-background);
543
- color: var(--color-border-tab-selected);
544
- }
545
- @media (hover: hover) {
546
- .flexlayout__border_button:hover {
547
- background-color: var(--color-border-tab-selected-background);
548
- color: var(--color-border-tab-selected);
549
- background-color: var(--color-4);
550
- }
551
- }
552
- .flexlayout__border_button--unselected {
553
- background-color: var(--color-border-tab-unselected-background);
554
- color: var(--color-border-tab-unselected);
555
- }
556
- .flexlayout__border_button_leading {
557
- display: flex;
558
- }
559
- .flexlayout__border_button_content {
560
- display: flex;
561
- }
562
- .flexlayout__border_button_trailing {
563
- display: flex;
564
- border-radius: 4px;
565
- visibility: hidden;
566
- }
567
- .flexlayout__border_button_trailing:hover {
568
- background-color: var(--color-6);
569
- }
570
- @media (hover: hover) {
571
- .flexlayout__border_button:hover .flexlayout__border_button_trailing {
572
- visibility: visible;
573
- }
574
- }
575
- .flexlayout__border_button--selected .flexlayout__border_button_trailing {
576
- visibility: visible;
577
- }
578
- .flexlayout__border_toolbar {
579
- display: flex;
580
- gap: 0.3em;
581
- align-items: center;
582
- }
583
- .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
584
- flex-direction: column;
585
- padding-top: 0.5em;
586
- padding-bottom: 0.3em;
587
- }
588
- .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
589
- padding-left: 0.5em;
590
- padding-right: 0.3em;
591
- }
592
- .flexlayout__border_toolbar_button {
593
- border: none;
594
- outline: none;
595
- font-size: inherit;
596
- background-color: transparent;
597
- border-radius: 4px;
598
- padding: 1px;
599
- }
600
- @media (hover: hover) {
601
- .flexlayout__border_toolbar_button:hover {
602
- background-color: var(--color-4);
603
- }
604
- }
605
- .flexlayout__border_toolbar_button_overflow {
606
- display: flex;
607
- align-items: center;
608
- border: none;
609
- color: var(--color-overflow);
610
- font-size: inherit;
611
- background-color: transparent;
612
- }
613
- .flexlayout__popup_menu {
614
- font-size: var(--font-size);
615
- font-family: var(--font-family);
616
- }
617
- .flexlayout__popup_menu_item {
618
- padding: 2px 0.5em;
619
- white-space: nowrap;
620
- cursor: pointer;
621
- border-radius: 2px;
622
- }
623
- @media (hover: hover) {
624
- .flexlayout__popup_menu_item:hover {
625
- background-color: var(--color-6);
626
- }
627
- }
628
- .flexlayout__popup_menu_container {
629
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
630
- border: 1px solid var(--color-popup-border);
631
- color: var(--color-popup-unselected);
632
- background: var(--color-popup-unselected-background);
633
- border-radius: 3px;
634
- position: absolute;
635
- z-index: 1000;
636
- max-height: 50%;
637
- min-width: 100px;
638
- overflow: auto;
639
- padding: 2px;
640
- }
641
- .flexlayout__floating_window _body {
642
- height: 100%;
643
- }
644
- .flexlayout__floating_window_content {
645
- left: 0;
646
- top: 0;
647
- right: 0;
648
- bottom: 0;
649
- position: absolute;
650
- }
651
- .flexlayout__error_boundary_container {
652
- left: 0;
653
- top: 0;
654
- right: 0;
655
- bottom: 0;
656
- position: absolute;
657
- display: flex;
658
- justify-content: center;
659
- }
660
- .flexlayout__error_boundary_content {
661
- display: flex;
662
- align-items: center;
663
- }
664
- .flexlayout__tabset_sizer {
665
- padding-top: 5px;
666
- padding-bottom: 3px;
667
- font-size: var(--font-size);
668
- font-family: var(--font-family);
669
- }
670
- .flexlayout__tabset_header_sizer {
671
- padding-top: 3px;
672
- padding-bottom: 3px;
673
- font-size: var(--font-size);
674
- font-family: var(--font-family);
675
- }
676
- .flexlayout__border_sizer {
677
- position: absolute;
678
- top: -30000px;
679
- padding-top: 6px;
680
- padding-bottom: 5px;
681
- font-size: var(--font-size);
682
- font-family: var(--font-family);
683
- }
684
-
685
- /*# sourceMappingURL=dark.css.map */
1
+ .flexlayout__layout {
2
+ --color-text: #eeeeee;
3
+ --color-background: black;
4
+ --color-base: black;
5
+ --color-1: #121212;
6
+ --color-2: #1a1a1a;
7
+ --color-3: #262626;
8
+ --color-4: #333333;
9
+ --color-5: #404040;
10
+ --color-6: #4d4d4d;
11
+ --color-drag1: rgb(207, 232, 255);
12
+ --color-drag2: rgb(183, 209, 181);
13
+ --color-drag1-background: rgba(128, 128, 128, 0.15);
14
+ --color-drag2-background: rgba(128, 128, 128, 0.15);
15
+ --font-size: medium;
16
+ --font-family: Roboto, Arial, sans-serif;
17
+ --color-overflow: gray;
18
+ --color-icon: gray;
19
+ --color-tabset-background: var(--color-1);
20
+ --color-tabset-background-selected: var(--color-1);
21
+ --color-tabset-background-maximized: var(--color-6);
22
+ --color-tabset-divider-line: var(--color-4);
23
+ --color-tabset-header-background: var(--color-1);
24
+ --color-tabset-header: var(--color-text);
25
+ --color-border-tab-content: var(--color-background);
26
+ --color-border-background: var(--color-1);
27
+ --color-border-divider-line: var(--color-4);
28
+ --color-tab-content: var(--color-background);
29
+ --color-tab-selected: var(--color-text);
30
+ --color-tab-selected-background: var(--color-4);
31
+ --color-tab-unselected: gray;
32
+ --color-tab-unselected-background: transparent;
33
+ --color-tab-textbox: var(--color-text);
34
+ --color-tab-textbox-background: var(--color-3);
35
+ --color-border-tab-selected: var(--color-text);
36
+ --color-border-tab-selected-background: var(--color-4);
37
+ --color-border-tab-unselected: gray;
38
+ --color-border-tab-unselected-background: var(--color-2);
39
+ --color-splitter: var(--color-2);
40
+ --color-splitter-hover: var(--color-4);
41
+ --color-splitter-drag: var(--color-5);
42
+ --color-drag-rect-border: var(--color-4);
43
+ --color-drag-rect-background: var(--color-1);
44
+ --color-drag-rect: var(--color-text);
45
+ --color-popup-border: var(--color-6);
46
+ --color-popup-unselected: var(--color-text);
47
+ --color-popup-unselected-background: var(--color-background);
48
+ --color-popup-selected: var(--color-text);
49
+ --color-popup-selected-background: var(--color-4);
50
+ --color-edge-marker: gray;
51
+ --color-edge-icon: #eee;
52
+ }
53
+
54
+ .flexlayout__layout {
55
+ left: 0;
56
+ top: 0;
57
+ right: 0;
58
+ bottom: 0;
59
+ position: absolute;
60
+ display: flex;
61
+ }
62
+ .flexlayout__layout_overlay {
63
+ left: 0;
64
+ top: 0;
65
+ right: 0;
66
+ bottom: 0;
67
+ position: absolute;
68
+ z-index: 1000;
69
+ }
70
+ .flexlayout__layout_tab_stamps {
71
+ position: absolute;
72
+ top: -10000px;
73
+ z-index: 100;
74
+ display: flex;
75
+ flex-direction: column;
76
+ align-items: start;
77
+ }
78
+ .flexlayout__layout_moveables {
79
+ visibility: hidden;
80
+ position: absolute;
81
+ width: 100px;
82
+ height: 100px;
83
+ top: -20000px;
84
+ }
85
+ .flexlayout__layout_main {
86
+ display: flex;
87
+ flex-basis: 0px;
88
+ min-width: 0;
89
+ min-height: 0;
90
+ flex-grow: 1;
91
+ position: relative;
92
+ }
93
+ .flexlayout__layout_border_container {
94
+ display: flex;
95
+ flex-basis: 0px;
96
+ min-width: 0;
97
+ min-height: 0;
98
+ flex-grow: 1;
99
+ }
100
+ .flexlayout__layout_border_container_inner {
101
+ display: flex;
102
+ flex-basis: 0px;
103
+ min-width: 0;
104
+ min-height: 0;
105
+ flex-grow: 1;
106
+ }
107
+ .flexlayout__splitter {
108
+ display: flex;
109
+ align-items: center;
110
+ justify-content: center;
111
+ background-color: var(--color-splitter);
112
+ touch-action: none;
113
+ z-index: 10;
114
+ }
115
+ @media (hover: hover) {
116
+ .flexlayout__splitter:hover {
117
+ background-color: var(--color-splitter-hover);
118
+ transition: background-color ease-in 0.1s;
119
+ transition-delay: 0.05s;
120
+ }
121
+ }
122
+ .flexlayout__splitter_drag {
123
+ position: absolute;
124
+ display: flex;
125
+ align-items: center;
126
+ justify-content: center;
127
+ z-index: 1000;
128
+ background-color: var(--color-splitter-drag);
129
+ border-radius: 5px;
130
+ }
131
+ .flexlayout__splitter_handle {
132
+ background-color: #ccc;
133
+ border-radius: 3px;
134
+ }
135
+ .flexlayout__splitter_handle_horz {
136
+ width: 3px;
137
+ height: 30px;
138
+ }
139
+ .flexlayout__splitter_handle_vert {
140
+ width: 30px;
141
+ height: 3px;
142
+ }
143
+ .flexlayout__splitter_extra {
144
+ touch-action: none;
145
+ background-color: transparent;
146
+ }
147
+ .flexlayout__outline_rect {
148
+ position: absolute;
149
+ pointer-events: none;
150
+ box-sizing: border-box;
151
+ border: 2px solid var(--color-drag1);
152
+ background: var(--color-drag1-background);
153
+ border-radius: 5px;
154
+ z-index: 1000;
155
+ }
156
+ .flexlayout__outline_rect_edge {
157
+ pointer-events: none;
158
+ border: 2px solid var(--color-drag2);
159
+ background: var(--color-drag2-background);
160
+ border-radius: 5px;
161
+ z-index: 1000;
162
+ box-sizing: border-box;
163
+ }
164
+ .flexlayout__edge_rect {
165
+ position: absolute;
166
+ z-index: 1000;
167
+ background-color: var(--color-edge-marker);
168
+ pointer-events: none;
169
+ display: flex;
170
+ align-items: center;
171
+ justify-content: center;
172
+ }
173
+ .flexlayout__drag_rect {
174
+ color: var(--color-drag-rect);
175
+ background-color: var(--color-drag-rect-background);
176
+ border: 2px solid var(--color-drag-rect-border);
177
+ border-radius: 5px;
178
+ box-sizing: border-box;
179
+ display: flex;
180
+ justify-content: center;
181
+ flex-direction: column;
182
+ overflow: hidden;
183
+ padding: 0.3em 0.8em;
184
+ word-wrap: break-word;
185
+ font-size: var(--font-size);
186
+ font-family: var(--font-family);
187
+ }
188
+ .flexlayout__row {
189
+ display: flex;
190
+ flex-basis: 0px;
191
+ min-width: 0;
192
+ min-height: 0;
193
+ position: relative;
194
+ box-sizing: border-box;
195
+ overflow: hidden;
196
+ }
197
+ .flexlayout__tabset {
198
+ display: flex;
199
+ flex-direction: column;
200
+ position: relative;
201
+ background-color: var(--color-tabset-background);
202
+ box-sizing: border-box;
203
+ font-family: var(--font-family);
204
+ overflow: hidden;
205
+ flex-grow: 1;
206
+ }
207
+ .flexlayout__tabset_container {
208
+ display: flex;
209
+ flex-basis: 0px;
210
+ min-width: 0;
211
+ min-height: 0;
212
+ flex-direction: column;
213
+ overflow: hidden;
214
+ flex-grow: 1;
215
+ }
216
+ .flexlayout__tabset_tab_divider {
217
+ width: 4px;
218
+ }
219
+ .flexlayout__tabset_content {
220
+ display: flex;
221
+ flex-basis: 0px;
222
+ min-width: 0;
223
+ min-height: 0;
224
+ flex-grow: 1;
225
+ box-sizing: border-box;
226
+ position: relative;
227
+ }
228
+ .flexlayout__tabset_header {
229
+ display: flex;
230
+ align-items: center;
231
+ padding: 3px 3px 3px 5px;
232
+ box-sizing: border-box;
233
+ border-bottom: 1px solid var(--color-tabset-divider-line);
234
+ color: var(--color-tabset-header);
235
+ background-color: var(--color-tabset-header-background);
236
+ font-size: var(--font-size);
237
+ box-shadow: inset 0 0 3px 0 rgba(136, 136, 136, 0.54);
238
+ }
239
+ .flexlayout__tabset_header_content {
240
+ flex-grow: 1;
241
+ }
242
+ .flexlayout__tabset_tabbar_outer {
243
+ box-sizing: border-box;
244
+ background-color: var(--color-tabset-background);
245
+ overflow: hidden;
246
+ display: flex;
247
+ font-size: var(--font-size);
248
+ }
249
+ .flexlayout__tabset_tabbar_outer_top {
250
+ padding: 0px 2px 0px 2px;
251
+ border-bottom: 1px solid var(--color-tabset-divider-line);
252
+ }
253
+ .flexlayout__tabset_tabbar_outer_bottom {
254
+ padding: 0px 2px 0px 2px;
255
+ border-top: 1px solid var(--color-tabset-divider-line);
256
+ }
257
+ .flexlayout__tabset_tabbar_inner {
258
+ position: relative;
259
+ box-sizing: border-box;
260
+ display: flex;
261
+ flex-grow: 1;
262
+ overflow: hidden;
263
+ }
264
+ .flexlayout__tabset_tabbar_inner_tab_container {
265
+ position: relative;
266
+ display: flex;
267
+ padding-left: 4px;
268
+ padding-right: 4px;
269
+ box-sizing: border-box;
270
+ white-space: nowrap;
271
+ }
272
+ .flexlayout__tabset_tabbar_inner_tab_container_top {
273
+ border-top: 2px solid transparent;
274
+ }
275
+ .flexlayout__tabset_tabbar_inner_tab_container_bottom {
276
+ border-bottom: 2px solid transparent;
277
+ }
278
+ .flexlayout__tabset-selected {
279
+ background-color: var(--color-tabset-background-selected);
280
+ background-image: linear-gradient(var(--color-background), var(--color-4));
281
+ }
282
+ .flexlayout__tabset-maximized {
283
+ background-color: var(--color-tabset-background-maximized);
284
+ background-image: linear-gradient(var(--color-6), var(--color-2));
285
+ }
286
+ .flexlayout__tab_button_stamp {
287
+ display: inline-flex;
288
+ align-items: center;
289
+ gap: 0.3em;
290
+ white-space: nowrap;
291
+ box-sizing: border-box;
292
+ }
293
+ .flexlayout__tab {
294
+ overflow: hidden;
295
+ box-sizing: border-box;
296
+ background-color: var(--color-tab-content);
297
+ color: var(--color-text);
298
+ position: relative;
299
+ }
300
+ .flexlayout__tab_moveable {
301
+ position: relative;
302
+ height: 100%;
303
+ min-width: 1px;
304
+ min-height: 1px;
305
+ overflow: auto;
306
+ box-sizing: border-box;
307
+ }
308
+ .flexlayout__tab_overlay {
309
+ z-index: 20;
310
+ position: absolute;
311
+ top: 0;
312
+ left: 0;
313
+ right: 0;
314
+ bottom: 0;
315
+ background-color: rgba(0, 0, 0, 0.2392156863);
316
+ }
317
+ .flexlayout__tab_button {
318
+ display: flex;
319
+ gap: 0.3em;
320
+ align-items: center;
321
+ box-sizing: border-box;
322
+ padding: 3px 0.5em;
323
+ cursor: pointer;
324
+ }
325
+ .flexlayout__tab_button_stretch {
326
+ background-color: transparent;
327
+ color: var(--color-tab-selected);
328
+ width: 100%;
329
+ padding: 3px 0em;
330
+ text-wrap: nowrap;
331
+ display: flex;
332
+ gap: 0.3em;
333
+ align-items: center;
334
+ box-sizing: border-box;
335
+ cursor: pointer;
336
+ }
337
+ @media (hover: hover) {
338
+ .flexlayout__tab_button_stretch:hover {
339
+ color: var(--color-tab-selected);
340
+ }
341
+ }
342
+ .flexlayout__tab_button--selected {
343
+ background-color: var(--color-tab-selected-background);
344
+ color: var(--color-tab-selected);
345
+ }
346
+ @media (hover: hover) {
347
+ .flexlayout__tab_button:hover {
348
+ background-color: var(--color-tab-selected-background);
349
+ color: var(--color-tab-selected);
350
+ }
351
+ }
352
+ .flexlayout__tab_button--unselected {
353
+ background-color: var(--color-tab-unselected-background);
354
+ color: var(--color-tab-unselected);
355
+ }
356
+ .flexlayout__tab_button_top {
357
+ box-shadow: inset -2px 0px 5px rgba(0, 0, 0, 0.1);
358
+ border-top-left-radius: 3px;
359
+ border-top-right-radius: 3px;
360
+ }
361
+ .flexlayout__tab_button_bottom {
362
+ box-shadow: inset -2px 0px 5px rgba(0, 0, 0, 0.1);
363
+ border-bottom-left-radius: 3px;
364
+ border-bottom-right-radius: 3px;
365
+ }
366
+ .flexlayout__tab_button_leading {
367
+ display: flex;
368
+ }
369
+ .flexlayout__tab_button_content {
370
+ display: flex;
371
+ text-wrap: nowrap;
372
+ }
373
+ .flexlayout__tab_button_textbox {
374
+ border: none;
375
+ font-family: var(--font-family);
376
+ font-size: var(--font-size);
377
+ color: var(--color-tab-textbox);
378
+ background-color: var(--color-tab-textbox-background);
379
+ border: 1px inset var(--color-1);
380
+ border-radius: 3px;
381
+ width: 10em;
382
+ }
383
+ .flexlayout__tab_button_textbox:focus {
384
+ outline: none;
385
+ }
386
+ .flexlayout__tab_button_trailing {
387
+ display: flex;
388
+ visibility: hidden;
389
+ border-radius: 4px;
390
+ }
391
+ .flexlayout__tab_button_trailing:hover {
392
+ background-color: var(--color-6);
393
+ }
394
+ @media (hover: hover) {
395
+ .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
396
+ visibility: visible;
397
+ }
398
+ }
399
+ .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
400
+ visibility: visible;
401
+ }
402
+ .flexlayout__tab_button_overflow {
403
+ display: flex;
404
+ align-items: center;
405
+ border: none;
406
+ color: var(--color-overflow);
407
+ font-size: inherit;
408
+ background-color: transparent;
409
+ }
410
+ .flexlayout__tab_toolbar {
411
+ display: flex;
412
+ align-items: center;
413
+ gap: 0.3em;
414
+ padding-left: 0.5em;
415
+ padding-right: 0.3em;
416
+ }
417
+ .flexlayout__tab_toolbar_icon {
418
+ border: none;
419
+ outline: none;
420
+ font-size: inherit;
421
+ margin: 0px;
422
+ background-color: transparent;
423
+ padding: 1px;
424
+ }
425
+ .flexlayout__tab_toolbar_button {
426
+ border: none;
427
+ outline: none;
428
+ font-size: inherit;
429
+ margin: 0px;
430
+ background-color: transparent;
431
+ border-radius: 4px;
432
+ padding: 1px;
433
+ }
434
+ @media (hover: hover) {
435
+ .flexlayout__tab_toolbar_button:hover {
436
+ background-color: var(--color-4);
437
+ }
438
+ }
439
+ .flexlayout__tab_toolbar_sticky_buttons_container {
440
+ display: flex;
441
+ gap: 0.3em;
442
+ padding-left: 5px;
443
+ align-items: center;
444
+ }
445
+ .flexlayout__tab_floating {
446
+ overflow: auto;
447
+ position: absolute;
448
+ box-sizing: border-box;
449
+ color: var(--color-text);
450
+ background-color: var(--color-background);
451
+ display: flex;
452
+ justify-content: center;
453
+ align-items: center;
454
+ }
455
+ .flexlayout__tab_floating_inner {
456
+ overflow: auto;
457
+ display: flex;
458
+ flex-direction: column;
459
+ justify-content: center;
460
+ align-items: center;
461
+ }
462
+ .flexlayout__tab_floating_inner div {
463
+ margin-bottom: 5px;
464
+ text-align: center;
465
+ }
466
+ .flexlayout__tab_floating_inner div a {
467
+ color: royalblue;
468
+ }
469
+ .flexlayout__border {
470
+ box-sizing: border-box;
471
+ overflow: hidden;
472
+ display: flex;
473
+ font-size: var(--font-size);
474
+ font-family: var(--font-family);
475
+ color: var(--color-border);
476
+ background-color: var(--color-border-background);
477
+ }
478
+ .flexlayout__border_tab_contents {
479
+ box-sizing: border-box;
480
+ overflow: hidden;
481
+ background-color: var(--color-border-tab-content);
482
+ }
483
+ .flexlayout__border_top {
484
+ border-bottom: 1px solid var(--color-border-divider-line);
485
+ align-items: center;
486
+ }
487
+ .flexlayout__border_bottom {
488
+ border-top: 1px solid var(--color-border-divider-line);
489
+ align-items: center;
490
+ }
491
+ .flexlayout__border_left {
492
+ border-right: 1px solid var(--color-border-divider-line);
493
+ align-content: center;
494
+ flex-direction: column;
495
+ }
496
+ .flexlayout__border_right {
497
+ border-left: 1px solid var(--color-border-divider-line);
498
+ align-content: center;
499
+ flex-direction: column;
500
+ }
501
+ .flexlayout__border_inner {
502
+ position: relative;
503
+ box-sizing: border-box;
504
+ display: flex;
505
+ overflow: hidden;
506
+ flex-grow: 1;
507
+ }
508
+ .flexlayout__border_inner_tab_container {
509
+ white-space: nowrap;
510
+ display: flex;
511
+ padding-left: 2px;
512
+ padding-right: 2px;
513
+ box-sizing: border-box;
514
+ position: absolute;
515
+ width: 10000px;
516
+ }
517
+ .flexlayout__border_inner_tab_container_right {
518
+ transform-origin: top left;
519
+ transform: rotate(90deg);
520
+ }
521
+ .flexlayout__border_inner_tab_container_left {
522
+ flex-direction: row-reverse;
523
+ transform-origin: top right;
524
+ transform: rotate(-90deg);
525
+ }
526
+ .flexlayout__border_tab_divider {
527
+ width: 4px;
528
+ }
529
+ .flexlayout__border_button {
530
+ display: flex;
531
+ gap: 0.3em;
532
+ align-items: center;
533
+ cursor: pointer;
534
+ padding: 3px 0.5em;
535
+ margin: 2px 0px;
536
+ box-sizing: border-box;
537
+ white-space: nowrap;
538
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
539
+ border-radius: 3px;
540
+ }
541
+ .flexlayout__border_button--selected {
542
+ background-color: var(--color-border-tab-selected-background);
543
+ color: var(--color-border-tab-selected);
544
+ }
545
+ @media (hover: hover) {
546
+ .flexlayout__border_button:hover {
547
+ background-color: var(--color-border-tab-selected-background);
548
+ color: var(--color-border-tab-selected);
549
+ background-color: var(--color-4);
550
+ }
551
+ }
552
+ .flexlayout__border_button--unselected {
553
+ background-color: var(--color-border-tab-unselected-background);
554
+ color: var(--color-border-tab-unselected);
555
+ }
556
+ .flexlayout__border_button_leading {
557
+ display: flex;
558
+ }
559
+ .flexlayout__border_button_content {
560
+ display: flex;
561
+ }
562
+ .flexlayout__border_button_trailing {
563
+ display: flex;
564
+ border-radius: 4px;
565
+ visibility: hidden;
566
+ }
567
+ .flexlayout__border_button_trailing:hover {
568
+ background-color: var(--color-6);
569
+ }
570
+ @media (hover: hover) {
571
+ .flexlayout__border_button:hover .flexlayout__border_button_trailing {
572
+ visibility: visible;
573
+ }
574
+ }
575
+ .flexlayout__border_button--selected .flexlayout__border_button_trailing {
576
+ visibility: visible;
577
+ }
578
+ .flexlayout__border_toolbar {
579
+ display: flex;
580
+ gap: 0.3em;
581
+ align-items: center;
582
+ }
583
+ .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
584
+ flex-direction: column;
585
+ padding-top: 0.5em;
586
+ padding-bottom: 0.3em;
587
+ }
588
+ .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
589
+ padding-left: 0.5em;
590
+ padding-right: 0.3em;
591
+ }
592
+ .flexlayout__border_toolbar_button {
593
+ border: none;
594
+ outline: none;
595
+ font-size: inherit;
596
+ background-color: transparent;
597
+ border-radius: 4px;
598
+ padding: 1px;
599
+ }
600
+ @media (hover: hover) {
601
+ .flexlayout__border_toolbar_button:hover {
602
+ background-color: var(--color-4);
603
+ }
604
+ }
605
+ .flexlayout__border_toolbar_button_overflow {
606
+ display: flex;
607
+ align-items: center;
608
+ border: none;
609
+ color: var(--color-overflow);
610
+ font-size: inherit;
611
+ background-color: transparent;
612
+ }
613
+ .flexlayout__popup_menu {
614
+ font-size: var(--font-size);
615
+ font-family: var(--font-family);
616
+ }
617
+ .flexlayout__popup_menu_item {
618
+ padding: 2px 0.5em;
619
+ white-space: nowrap;
620
+ cursor: pointer;
621
+ border-radius: 2px;
622
+ }
623
+ @media (hover: hover) {
624
+ .flexlayout__popup_menu_item:hover {
625
+ background-color: var(--color-6);
626
+ }
627
+ }
628
+ .flexlayout__popup_menu_container {
629
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
630
+ border: 1px solid var(--color-popup-border);
631
+ color: var(--color-popup-unselected);
632
+ background: var(--color-popup-unselected-background);
633
+ border-radius: 3px;
634
+ position: absolute;
635
+ z-index: 1000;
636
+ max-height: 50%;
637
+ min-width: 100px;
638
+ overflow: auto;
639
+ padding: 2px;
640
+ }
641
+ .flexlayout__floating_window _body {
642
+ height: 100%;
643
+ }
644
+ .flexlayout__floating_window_content {
645
+ left: 0;
646
+ top: 0;
647
+ right: 0;
648
+ bottom: 0;
649
+ position: absolute;
650
+ }
651
+ .flexlayout__error_boundary_container {
652
+ left: 0;
653
+ top: 0;
654
+ right: 0;
655
+ bottom: 0;
656
+ position: absolute;
657
+ display: flex;
658
+ justify-content: center;
659
+ }
660
+ .flexlayout__error_boundary_content {
661
+ display: flex;
662
+ align-items: center;
663
+ }
664
+ .flexlayout__tabset_sizer {
665
+ padding-top: 5px;
666
+ padding-bottom: 3px;
667
+ font-size: var(--font-size);
668
+ font-family: var(--font-family);
669
+ }
670
+ .flexlayout__tabset_header_sizer {
671
+ padding-top: 3px;
672
+ padding-bottom: 3px;
673
+ font-size: var(--font-size);
674
+ font-family: var(--font-family);
675
+ }
676
+ .flexlayout__border_sizer {
677
+ position: absolute;
678
+ top: -30000px;
679
+ padding-top: 6px;
680
+ padding-bottom: 5px;
681
+ font-size: var(--font-size);
682
+ font-family: var(--font-family);
683
+ }
684
+
685
+ /*# sourceMappingURL=dark.css.map */