flexlayout-react 0.8.4 → 0.8.5

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