flexlayout-react 0.8.7 → 0.8.8

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