flexlayout-react 0.8.1 → 0.8.2

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,690 +1,690 @@
1
- .flexlayout__layout {
2
- --color-text: black;
3
- --color-background: white;
4
- --color-base: white;
5
- --color-1: #fafafa;
6
- --color-2: whitesmoke;
7
- --color-3: #eeeeee;
8
- --color-4: #e6e6e6;
9
- --color-5: #e0e0e0;
10
- --color-6: #d9d9d9;
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
- }
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
- }
133
- .flexlayout__splitter_handle {
134
- background-color: #ccc;
135
- border-radius: 3px;
136
- }
137
- .flexlayout__splitter_handle_horz {
138
- width: 3px;
139
- height: 30px;
140
- }
141
- .flexlayout__splitter_handle_vert {
142
- width: 30px;
143
- height: 3px;
144
- }
145
- .flexlayout__splitter_extra {
146
- touch-action: none;
147
- background-color: transparent;
148
- }
149
- .flexlayout__outline_rect {
150
- position: absolute;
151
- pointer-events: none;
152
- box-sizing: border-box;
153
- border: 2px solid var(--color-drag1);
154
- background: var(--color-drag1-background);
155
- border-radius: 5px;
156
- z-index: 1000;
157
- }
158
- .flexlayout__outline_rect_edge {
159
- pointer-events: none;
160
- border: 2px solid var(--color-drag2);
161
- background: var(--color-drag2-background);
162
- border-radius: 5px;
163
- z-index: 1000;
164
- box-sizing: border-box;
165
- }
166
- .flexlayout__edge_rect {
167
- position: absolute;
168
- z-index: 1000;
169
- background-color: var(--color-edge-marker);
170
- pointer-events: none;
171
- display: flex;
172
- align-items: center;
173
- justify-content: center;
174
- }
175
- .flexlayout__drag_rect {
176
- color: var(--color-drag-rect);
177
- background-color: var(--color-drag-rect-background);
178
- border: 2px solid var(--color-drag-rect-border);
179
- border-radius: 5px;
180
- box-sizing: border-box;
181
- display: flex;
182
- justify-content: center;
183
- flex-direction: column;
184
- overflow: hidden;
185
- padding: 0.3em 0.8em;
186
- word-wrap: break-word;
187
- font-size: var(--font-size);
188
- font-family: var(--font-family);
189
- }
190
- .flexlayout__row {
191
- display: flex;
192
- flex-basis: 0px;
193
- min-width: 0;
194
- min-height: 0;
195
- position: relative;
196
- box-sizing: border-box;
197
- overflow: hidden;
198
- }
199
- .flexlayout__tabset {
200
- display: flex;
201
- flex-direction: column;
202
- position: relative;
203
- background-color: var(--color-tabset-background);
204
- box-sizing: border-box;
205
- font-family: var(--font-family);
206
- overflow: hidden;
207
- flex-grow: 1;
208
- }
209
- .flexlayout__tabset_container {
210
- display: flex;
211
- flex-basis: 0px;
212
- min-width: 0;
213
- min-height: 0;
214
- flex-direction: column;
215
- overflow: hidden;
216
- flex-grow: 1;
217
- }
218
- .flexlayout__tabset_tab_divider {
219
- width: 4px;
220
- width: 1px;
221
- margin: 4px 6px 4px 6px;
222
- border-left: 1px solid #ddd;
223
- }
224
- .flexlayout__tabset_content {
225
- display: flex;
226
- flex-basis: 0px;
227
- min-width: 0;
228
- min-height: 0;
229
- flex-grow: 1;
230
- box-sizing: border-box;
231
- position: relative;
232
- }
233
- .flexlayout__tabset_header {
234
- display: flex;
235
- align-items: center;
236
- padding: 3px 3px 3px 5px;
237
- box-sizing: border-box;
238
- border-bottom: 1px solid var(--color-tabset-divider-line);
239
- color: var(--color-tabset-header);
240
- background-color: var(--color-tabset-header-background);
241
- font-size: var(--font-size);
242
- }
243
- .flexlayout__tabset_header_content {
244
- flex-grow: 1;
245
- }
246
- .flexlayout__tabset_tabbar_outer {
247
- box-sizing: border-box;
248
- background-color: var(--color-tabset-background);
249
- overflow: hidden;
250
- display: flex;
251
- font-size: var(--font-size);
252
- }
253
- .flexlayout__tabset_tabbar_outer_top {
254
- padding: 0px 2px 0px 2px;
255
- border-bottom: 1px solid var(--color-tabset-divider-line);
256
- }
257
- .flexlayout__tabset_tabbar_outer_bottom {
258
- padding: 0px 2px 0px 2px;
259
- border-top: 1px solid var(--color-tabset-divider-line);
260
- }
261
- .flexlayout__tabset_tabbar_inner {
262
- position: relative;
263
- box-sizing: border-box;
264
- display: flex;
265
- flex-grow: 1;
266
- overflow: hidden;
267
- }
268
- .flexlayout__tabset_tabbar_inner_tab_container {
269
- position: relative;
270
- display: flex;
271
- padding-left: 4px;
272
- padding-right: 4px;
273
- box-sizing: border-box;
274
- white-space: nowrap;
275
- }
276
- .flexlayout__tabset_tabbar_inner_tab_container_top {
277
- border-top: 2px solid transparent;
278
- }
279
- .flexlayout__tabset_tabbar_inner_tab_container_bottom {
280
- border-bottom: 2px solid transparent;
281
- }
282
- .flexlayout__tabset-selected {
283
- background-color: var(--color-tabset-background-selected);
284
- }
285
- .flexlayout__tabset-maximized {
286
- background-color: var(--color-tabset-background-maximized);
287
- }
288
- .flexlayout__tab_button_stamp {
289
- display: inline-flex;
290
- align-items: center;
291
- gap: 0.3em;
292
- white-space: nowrap;
293
- box-sizing: border-box;
294
- }
295
- .flexlayout__tab {
296
- overflow: hidden;
297
- box-sizing: border-box;
298
- background-color: var(--color-tab-content);
299
- color: var(--color-text);
300
- position: relative;
301
- }
302
- .flexlayout__tab_moveable {
303
- position: relative;
304
- height: 100%;
305
- min-width: 1px;
306
- min-height: 1px;
307
- overflow: auto;
308
- box-sizing: border-box;
309
- }
310
- .flexlayout__tab_overlay {
311
- z-index: 20;
312
- position: absolute;
313
- top: 0;
314
- left: 0;
315
- right: 0;
316
- bottom: 0;
317
- background-color: rgba(0, 0, 0, 0.2392156863);
318
- }
319
- .flexlayout__tab_button {
320
- display: flex;
321
- gap: 0.3em;
322
- align-items: center;
323
- box-sizing: border-box;
324
- padding: 3px 0.5em;
325
- cursor: pointer;
326
- padding: 2px 0.5em calc(4px - var(--underline_height)) 0.5em;
327
- }
328
- .flexlayout__tab_button_stretch {
329
- background-color: transparent;
330
- color: var(--color-tab-selected);
331
- width: 100%;
332
- padding: 3px 0em;
333
- text-wrap: nowrap;
334
- display: flex;
335
- gap: 0.3em;
336
- align-items: center;
337
- box-sizing: border-box;
338
- cursor: pointer;
339
- }
340
- @media (hover: hover) {
341
- .flexlayout__tab_button_stretch:hover {
342
- color: var(--color-tab-selected);
343
- }
344
- }
345
- .flexlayout__tab_button--selected {
346
- background-color: var(--color-tab-selected-background);
347
- color: var(--color-tab-selected);
348
- border-bottom: var(--underline_height) solid var(--color-underline);
349
- }
350
- @media (hover: hover) {
351
- .flexlayout__tab_button:hover {
352
- background-color: var(--color-tab-selected-background);
353
- color: var(--color-tab-selected);
354
- border-bottom: var(--underline_height) solid var(--color-underline-hover);
355
- }
356
- }
357
- .flexlayout__tab_button--unselected {
358
- background-color: var(--color-tab-unselected-background);
359
- color: var(--color-tab-unselected);
360
- color: gray;
361
- border-bottom: var(--underline_height) solid transparent;
362
- }
363
- .flexlayout__tab_button_leading {
364
- display: flex;
365
- }
366
- .flexlayout__tab_button_content {
367
- display: flex;
368
- text-wrap: nowrap;
369
- }
370
- .flexlayout__tab_button_textbox {
371
- border: none;
372
- font-family: var(--font-family);
373
- font-size: var(--font-size);
374
- color: var(--color-tab-textbox);
375
- background-color: var(--color-tab-textbox-background);
376
- border: 1px inset var(--color-1);
377
- border-radius: 3px;
378
- width: 10em;
379
- }
380
- .flexlayout__tab_button_textbox:focus {
381
- outline: none;
382
- }
383
- .flexlayout__tab_button_trailing {
384
- display: flex;
385
- visibility: hidden;
386
- border-radius: 4px;
387
- }
388
- .flexlayout__tab_button_trailing:hover {
389
- background-color: var(--color-3);
390
- }
391
- @media (hover: hover) {
392
- .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
393
- visibility: visible;
394
- }
395
- }
396
- .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
397
- visibility: visible;
398
- }
399
- .flexlayout__tab_button_overflow {
400
- display: flex;
401
- align-items: center;
402
- border: none;
403
- color: var(--color-overflow);
404
- font-size: inherit;
405
- background-color: transparent;
406
- }
407
- .flexlayout__tab_toolbar {
408
- display: flex;
409
- align-items: center;
410
- gap: 0.3em;
411
- padding-left: 0.5em;
412
- padding-right: 0.3em;
413
- }
414
- .flexlayout__tab_toolbar_icon {
415
- border: none;
416
- outline: none;
417
- font-size: inherit;
418
- margin: 0px;
419
- background-color: transparent;
420
- padding: 1px;
421
- }
422
- .flexlayout__tab_toolbar_button {
423
- border: none;
424
- outline: none;
425
- font-size: inherit;
426
- margin: 0px;
427
- background-color: transparent;
428
- border-radius: 4px;
429
- padding: 1px;
430
- }
431
- @media (hover: hover) {
432
- .flexlayout__tab_toolbar_button:hover {
433
- background-color: var(--color-2);
434
- }
435
- }
436
- .flexlayout__tab_toolbar_sticky_buttons_container {
437
- display: flex;
438
- gap: 0.3em;
439
- padding-left: 5px;
440
- align-items: center;
441
- }
442
- .flexlayout__tab_floating {
443
- overflow: auto;
444
- position: absolute;
445
- box-sizing: border-box;
446
- color: var(--color-text);
447
- background-color: var(--color-background);
448
- display: flex;
449
- justify-content: center;
450
- align-items: center;
451
- }
452
- .flexlayout__tab_floating_inner {
453
- overflow: auto;
454
- display: flex;
455
- flex-direction: column;
456
- justify-content: center;
457
- align-items: center;
458
- }
459
- .flexlayout__tab_floating_inner div {
460
- margin-bottom: 5px;
461
- text-align: center;
462
- }
463
- .flexlayout__tab_floating_inner div a {
464
- color: royalblue;
465
- }
466
- .flexlayout__border {
467
- box-sizing: border-box;
468
- overflow: hidden;
469
- display: flex;
470
- font-size: var(--font-size);
471
- font-family: var(--font-family);
472
- color: var(--color-border);
473
- background-color: var(--color-border-background);
474
- }
475
- .flexlayout__border_tab_contents {
476
- box-sizing: border-box;
477
- overflow: hidden;
478
- background-color: var(--color-border-tab-content);
479
- }
480
- .flexlayout__border_top {
481
- border-bottom: 1px solid var(--color-border-divider-line);
482
- align-items: center;
483
- }
484
- .flexlayout__border_bottom {
485
- border-top: 1px solid var(--color-border-divider-line);
486
- align-items: center;
487
- }
488
- .flexlayout__border_left {
489
- border-right: 1px solid var(--color-border-divider-line);
490
- align-content: center;
491
- flex-direction: column;
492
- }
493
- .flexlayout__border_right {
494
- border-left: 1px solid var(--color-border-divider-line);
495
- align-content: center;
496
- flex-direction: column;
497
- }
498
- .flexlayout__border_inner {
499
- position: relative;
500
- box-sizing: border-box;
501
- display: flex;
502
- overflow: hidden;
503
- flex-grow: 1;
504
- }
505
- .flexlayout__border_inner_tab_container {
506
- white-space: nowrap;
507
- display: flex;
508
- padding-left: 2px;
509
- padding-right: 2px;
510
- box-sizing: border-box;
511
- position: absolute;
512
- width: 10000px;
513
- }
514
- .flexlayout__border_inner_tab_container_right {
515
- transform-origin: top left;
516
- transform: rotate(90deg);
517
- }
518
- .flexlayout__border_inner_tab_container_left {
519
- flex-direction: row-reverse;
520
- transform-origin: top right;
521
- transform: rotate(-90deg);
522
- }
523
- .flexlayout__border_tab_divider {
524
- width: 4px;
525
- width: 1px;
526
- margin: 4px 6px 4px 6px;
527
- border-left: 1px solid #ddd;
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
- padding: 2px 0.5em calc(4px - var(--underline_height)) 0.5em;
539
- }
540
- .flexlayout__border_button--selected {
541
- background-color: var(--color-border-tab-selected-background);
542
- color: var(--color-border-tab-selected);
543
- border-bottom: var(--underline_height) solid var(--color-underline);
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
- border-bottom: var(--underline_height) solid var(--color-underline-hover);
550
- }
551
- }
552
- .flexlayout__border_button--unselected {
553
- background-color: var(--color-border-tab-unselected-background);
554
- color: var(--color-border-tab-unselected);
555
- border-bottom: var(--underline_height) solid transparent;
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-3);
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-2);
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
- }
614
- .flexlayout__popup_menu {
615
- font-size: var(--font-size);
616
- font-family: var(--font-family);
617
- }
618
- .flexlayout__popup_menu_item {
619
- padding: 2px 0.5em;
620
- white-space: nowrap;
621
- cursor: pointer;
622
- border-radius: 2px;
623
- }
624
- @media (hover: hover) {
625
- .flexlayout__popup_menu_item:hover {
626
- background-color: var(--color-6);
627
- }
628
- }
629
- .flexlayout__popup_menu_container {
630
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
631
- border: 1px solid var(--color-popup-border);
632
- color: var(--color-popup-unselected);
633
- background: var(--color-popup-unselected-background);
634
- border-radius: 3px;
635
- position: absolute;
636
- z-index: 1000;
637
- max-height: 50%;
638
- min-width: 100px;
639
- overflow: auto;
640
- padding: 2px;
641
- }
642
- .flexlayout__floating_window _body {
643
- height: 100%;
644
- }
645
- .flexlayout__floating_window_content {
646
- left: 0;
647
- top: 0;
648
- right: 0;
649
- bottom: 0;
650
- position: absolute;
651
- }
652
- .flexlayout__error_boundary_container {
653
- left: 0;
654
- top: 0;
655
- right: 0;
656
- bottom: 0;
657
- position: absolute;
658
- display: flex;
659
- justify-content: center;
660
- }
661
- .flexlayout__error_boundary_content {
662
- display: flex;
663
- align-items: center;
664
- }
665
- .flexlayout__tabset_sizer {
666
- padding-top: 5px;
667
- padding-bottom: 3px;
668
- font-size: var(--font-size);
669
- font-family: var(--font-family);
670
- }
671
- .flexlayout__tabset_header_sizer {
672
- padding-top: 3px;
673
- padding-bottom: 3px;
674
- font-size: var(--font-size);
675
- font-family: var(--font-family);
676
- }
677
- .flexlayout__border_sizer {
678
- position: absolute;
679
- top: -30000px;
680
- padding-top: 6px;
681
- padding-bottom: 5px;
682
- font-size: var(--font-size);
683
- font-family: var(--font-family);
684
- }
685
-
686
- .flexlayout__tab_button_textbox {
687
- border: none;
688
- }
689
-
690
- /*# 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.902, 244.902, 244.902);
7
+ --color-3: rgb(237.55494, 237.55494, 237.55494);
8
+ --color-4: rgb(230.4282918, 230.4282918, 230.4282918);
9
+ --color-5: rgb(223.515443046, 223.515443046, 223.515443046);
10
+ --color-6: rgb(216.8099797546, 216.8099797546, 216.8099797546);
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
+ }
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
+ }
133
+ .flexlayout__splitter_handle {
134
+ background-color: #ccc;
135
+ border-radius: 3px;
136
+ }
137
+ .flexlayout__splitter_handle_horz {
138
+ width: 3px;
139
+ height: 30px;
140
+ }
141
+ .flexlayout__splitter_handle_vert {
142
+ width: 30px;
143
+ height: 3px;
144
+ }
145
+ .flexlayout__splitter_extra {
146
+ touch-action: none;
147
+ background-color: transparent;
148
+ }
149
+ .flexlayout__outline_rect {
150
+ position: absolute;
151
+ pointer-events: none;
152
+ box-sizing: border-box;
153
+ border: 2px solid var(--color-drag1);
154
+ background: var(--color-drag1-background);
155
+ border-radius: 5px;
156
+ z-index: 1000;
157
+ }
158
+ .flexlayout__outline_rect_edge {
159
+ pointer-events: none;
160
+ border: 2px solid var(--color-drag2);
161
+ background: var(--color-drag2-background);
162
+ border-radius: 5px;
163
+ z-index: 1000;
164
+ box-sizing: border-box;
165
+ }
166
+ .flexlayout__edge_rect {
167
+ position: absolute;
168
+ z-index: 1000;
169
+ background-color: var(--color-edge-marker);
170
+ pointer-events: none;
171
+ display: flex;
172
+ align-items: center;
173
+ justify-content: center;
174
+ }
175
+ .flexlayout__drag_rect {
176
+ color: var(--color-drag-rect);
177
+ background-color: var(--color-drag-rect-background);
178
+ border: 2px solid var(--color-drag-rect-border);
179
+ border-radius: 5px;
180
+ box-sizing: border-box;
181
+ display: flex;
182
+ justify-content: center;
183
+ flex-direction: column;
184
+ overflow: hidden;
185
+ padding: 0.3em 0.8em;
186
+ word-wrap: break-word;
187
+ font-size: var(--font-size);
188
+ font-family: var(--font-family);
189
+ }
190
+ .flexlayout__row {
191
+ display: flex;
192
+ flex-basis: 0px;
193
+ min-width: 0;
194
+ min-height: 0;
195
+ position: relative;
196
+ box-sizing: border-box;
197
+ overflow: hidden;
198
+ }
199
+ .flexlayout__tabset {
200
+ display: flex;
201
+ flex-direction: column;
202
+ position: relative;
203
+ background-color: var(--color-tabset-background);
204
+ box-sizing: border-box;
205
+ font-family: var(--font-family);
206
+ overflow: hidden;
207
+ flex-grow: 1;
208
+ }
209
+ .flexlayout__tabset_container {
210
+ display: flex;
211
+ flex-basis: 0px;
212
+ min-width: 0;
213
+ min-height: 0;
214
+ flex-direction: column;
215
+ overflow: hidden;
216
+ flex-grow: 1;
217
+ }
218
+ .flexlayout__tabset_tab_divider {
219
+ width: 4px;
220
+ width: 1px;
221
+ margin: 4px 6px 4px 6px;
222
+ border-left: 1px solid #ddd;
223
+ }
224
+ .flexlayout__tabset_content {
225
+ display: flex;
226
+ flex-basis: 0px;
227
+ min-width: 0;
228
+ min-height: 0;
229
+ flex-grow: 1;
230
+ box-sizing: border-box;
231
+ position: relative;
232
+ }
233
+ .flexlayout__tabset_header {
234
+ display: flex;
235
+ align-items: center;
236
+ padding: 3px 3px 3px 5px;
237
+ box-sizing: border-box;
238
+ border-bottom: 1px solid var(--color-tabset-divider-line);
239
+ color: var(--color-tabset-header);
240
+ background-color: var(--color-tabset-header-background);
241
+ font-size: var(--font-size);
242
+ }
243
+ .flexlayout__tabset_header_content {
244
+ flex-grow: 1;
245
+ }
246
+ .flexlayout__tabset_tabbar_outer {
247
+ box-sizing: border-box;
248
+ background-color: var(--color-tabset-background);
249
+ overflow: hidden;
250
+ display: flex;
251
+ font-size: var(--font-size);
252
+ }
253
+ .flexlayout__tabset_tabbar_outer_top {
254
+ padding: 0px 2px 0px 2px;
255
+ border-bottom: 1px solid var(--color-tabset-divider-line);
256
+ }
257
+ .flexlayout__tabset_tabbar_outer_bottom {
258
+ padding: 0px 2px 0px 2px;
259
+ border-top: 1px solid var(--color-tabset-divider-line);
260
+ }
261
+ .flexlayout__tabset_tabbar_inner {
262
+ position: relative;
263
+ box-sizing: border-box;
264
+ display: flex;
265
+ flex-grow: 1;
266
+ overflow: hidden;
267
+ }
268
+ .flexlayout__tabset_tabbar_inner_tab_container {
269
+ position: relative;
270
+ display: flex;
271
+ padding-left: 4px;
272
+ padding-right: 4px;
273
+ box-sizing: border-box;
274
+ white-space: nowrap;
275
+ }
276
+ .flexlayout__tabset_tabbar_inner_tab_container_top {
277
+ border-top: 2px solid transparent;
278
+ }
279
+ .flexlayout__tabset_tabbar_inner_tab_container_bottom {
280
+ border-bottom: 2px solid transparent;
281
+ }
282
+ .flexlayout__tabset-selected {
283
+ background-color: var(--color-tabset-background-selected);
284
+ }
285
+ .flexlayout__tabset-maximized {
286
+ background-color: var(--color-tabset-background-maximized);
287
+ }
288
+ .flexlayout__tab_button_stamp {
289
+ display: inline-flex;
290
+ align-items: center;
291
+ gap: 0.3em;
292
+ white-space: nowrap;
293
+ box-sizing: border-box;
294
+ }
295
+ .flexlayout__tab {
296
+ overflow: hidden;
297
+ box-sizing: border-box;
298
+ background-color: var(--color-tab-content);
299
+ color: var(--color-text);
300
+ position: relative;
301
+ }
302
+ .flexlayout__tab_moveable {
303
+ position: relative;
304
+ height: 100%;
305
+ min-width: 1px;
306
+ min-height: 1px;
307
+ overflow: auto;
308
+ box-sizing: border-box;
309
+ }
310
+ .flexlayout__tab_overlay {
311
+ z-index: 20;
312
+ position: absolute;
313
+ top: 0;
314
+ left: 0;
315
+ right: 0;
316
+ bottom: 0;
317
+ background-color: rgba(0, 0, 0, 0.2392156863);
318
+ }
319
+ .flexlayout__tab_button {
320
+ display: flex;
321
+ gap: 0.3em;
322
+ align-items: center;
323
+ box-sizing: border-box;
324
+ padding: 3px 0.5em;
325
+ cursor: pointer;
326
+ padding: 2px 0.5em calc(4px - var(--underline_height)) 0.5em;
327
+ }
328
+ .flexlayout__tab_button_stretch {
329
+ background-color: transparent;
330
+ color: var(--color-tab-selected);
331
+ width: 100%;
332
+ padding: 3px 0em;
333
+ text-wrap: nowrap;
334
+ display: flex;
335
+ gap: 0.3em;
336
+ align-items: center;
337
+ box-sizing: border-box;
338
+ cursor: pointer;
339
+ }
340
+ @media (hover: hover) {
341
+ .flexlayout__tab_button_stretch:hover {
342
+ color: var(--color-tab-selected);
343
+ }
344
+ }
345
+ .flexlayout__tab_button--selected {
346
+ background-color: var(--color-tab-selected-background);
347
+ color: var(--color-tab-selected);
348
+ border-bottom: var(--underline_height) solid var(--color-underline);
349
+ }
350
+ @media (hover: hover) {
351
+ .flexlayout__tab_button:hover {
352
+ background-color: var(--color-tab-selected-background);
353
+ color: var(--color-tab-selected);
354
+ border-bottom: var(--underline_height) solid var(--color-underline-hover);
355
+ }
356
+ }
357
+ .flexlayout__tab_button--unselected {
358
+ background-color: var(--color-tab-unselected-background);
359
+ color: var(--color-tab-unselected);
360
+ color: gray;
361
+ border-bottom: var(--underline_height) solid transparent;
362
+ }
363
+ .flexlayout__tab_button_leading {
364
+ display: flex;
365
+ }
366
+ .flexlayout__tab_button_content {
367
+ display: flex;
368
+ text-wrap: nowrap;
369
+ }
370
+ .flexlayout__tab_button_textbox {
371
+ border: none;
372
+ font-family: var(--font-family);
373
+ font-size: var(--font-size);
374
+ color: var(--color-tab-textbox);
375
+ background-color: var(--color-tab-textbox-background);
376
+ border: 1px inset var(--color-1);
377
+ border-radius: 3px;
378
+ width: 10em;
379
+ }
380
+ .flexlayout__tab_button_textbox:focus {
381
+ outline: none;
382
+ }
383
+ .flexlayout__tab_button_trailing {
384
+ display: flex;
385
+ visibility: hidden;
386
+ border-radius: 4px;
387
+ }
388
+ .flexlayout__tab_button_trailing:hover {
389
+ background-color: var(--color-3);
390
+ }
391
+ @media (hover: hover) {
392
+ .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
393
+ visibility: visible;
394
+ }
395
+ }
396
+ .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
397
+ visibility: visible;
398
+ }
399
+ .flexlayout__tab_button_overflow {
400
+ display: flex;
401
+ align-items: center;
402
+ border: none;
403
+ color: var(--color-overflow);
404
+ font-size: inherit;
405
+ background-color: transparent;
406
+ }
407
+ .flexlayout__tab_toolbar {
408
+ display: flex;
409
+ align-items: center;
410
+ gap: 0.3em;
411
+ padding-left: 0.5em;
412
+ padding-right: 0.3em;
413
+ }
414
+ .flexlayout__tab_toolbar_icon {
415
+ border: none;
416
+ outline: none;
417
+ font-size: inherit;
418
+ margin: 0px;
419
+ background-color: transparent;
420
+ padding: 1px;
421
+ }
422
+ .flexlayout__tab_toolbar_button {
423
+ border: none;
424
+ outline: none;
425
+ font-size: inherit;
426
+ margin: 0px;
427
+ background-color: transparent;
428
+ border-radius: 4px;
429
+ padding: 1px;
430
+ }
431
+ @media (hover: hover) {
432
+ .flexlayout__tab_toolbar_button:hover {
433
+ background-color: var(--color-2);
434
+ }
435
+ }
436
+ .flexlayout__tab_toolbar_sticky_buttons_container {
437
+ display: flex;
438
+ gap: 0.3em;
439
+ padding-left: 5px;
440
+ align-items: center;
441
+ }
442
+ .flexlayout__tab_floating {
443
+ overflow: auto;
444
+ position: absolute;
445
+ box-sizing: border-box;
446
+ color: var(--color-text);
447
+ background-color: var(--color-background);
448
+ display: flex;
449
+ justify-content: center;
450
+ align-items: center;
451
+ }
452
+ .flexlayout__tab_floating_inner {
453
+ overflow: auto;
454
+ display: flex;
455
+ flex-direction: column;
456
+ justify-content: center;
457
+ align-items: center;
458
+ }
459
+ .flexlayout__tab_floating_inner div {
460
+ margin-bottom: 5px;
461
+ text-align: center;
462
+ }
463
+ .flexlayout__tab_floating_inner div a {
464
+ color: royalblue;
465
+ }
466
+ .flexlayout__border {
467
+ box-sizing: border-box;
468
+ overflow: hidden;
469
+ display: flex;
470
+ font-size: var(--font-size);
471
+ font-family: var(--font-family);
472
+ color: var(--color-border);
473
+ background-color: var(--color-border-background);
474
+ }
475
+ .flexlayout__border_tab_contents {
476
+ box-sizing: border-box;
477
+ overflow: hidden;
478
+ background-color: var(--color-border-tab-content);
479
+ }
480
+ .flexlayout__border_top {
481
+ border-bottom: 1px solid var(--color-border-divider-line);
482
+ align-items: center;
483
+ }
484
+ .flexlayout__border_bottom {
485
+ border-top: 1px solid var(--color-border-divider-line);
486
+ align-items: center;
487
+ }
488
+ .flexlayout__border_left {
489
+ border-right: 1px solid var(--color-border-divider-line);
490
+ align-content: center;
491
+ flex-direction: column;
492
+ }
493
+ .flexlayout__border_right {
494
+ border-left: 1px solid var(--color-border-divider-line);
495
+ align-content: center;
496
+ flex-direction: column;
497
+ }
498
+ .flexlayout__border_inner {
499
+ position: relative;
500
+ box-sizing: border-box;
501
+ display: flex;
502
+ overflow: hidden;
503
+ flex-grow: 1;
504
+ }
505
+ .flexlayout__border_inner_tab_container {
506
+ white-space: nowrap;
507
+ display: flex;
508
+ padding-left: 2px;
509
+ padding-right: 2px;
510
+ box-sizing: border-box;
511
+ position: absolute;
512
+ width: 10000px;
513
+ }
514
+ .flexlayout__border_inner_tab_container_right {
515
+ transform-origin: top left;
516
+ transform: rotate(90deg);
517
+ }
518
+ .flexlayout__border_inner_tab_container_left {
519
+ flex-direction: row-reverse;
520
+ transform-origin: top right;
521
+ transform: rotate(-90deg);
522
+ }
523
+ .flexlayout__border_tab_divider {
524
+ width: 4px;
525
+ width: 1px;
526
+ margin: 4px 6px 4px 6px;
527
+ border-left: 1px solid #ddd;
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
+ padding: 2px 0.5em calc(4px - var(--underline_height)) 0.5em;
539
+ }
540
+ .flexlayout__border_button--selected {
541
+ background-color: var(--color-border-tab-selected-background);
542
+ color: var(--color-border-tab-selected);
543
+ border-bottom: var(--underline_height) solid var(--color-underline);
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
+ border-bottom: var(--underline_height) solid var(--color-underline-hover);
550
+ }
551
+ }
552
+ .flexlayout__border_button--unselected {
553
+ background-color: var(--color-border-tab-unselected-background);
554
+ color: var(--color-border-tab-unselected);
555
+ border-bottom: var(--underline_height) solid transparent;
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-3);
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-2);
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
+ }
614
+ .flexlayout__popup_menu {
615
+ font-size: var(--font-size);
616
+ font-family: var(--font-family);
617
+ }
618
+ .flexlayout__popup_menu_item {
619
+ padding: 2px 0.5em;
620
+ white-space: nowrap;
621
+ cursor: pointer;
622
+ border-radius: 2px;
623
+ }
624
+ @media (hover: hover) {
625
+ .flexlayout__popup_menu_item:hover {
626
+ background-color: var(--color-6);
627
+ }
628
+ }
629
+ .flexlayout__popup_menu_container {
630
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
631
+ border: 1px solid var(--color-popup-border);
632
+ color: var(--color-popup-unselected);
633
+ background: var(--color-popup-unselected-background);
634
+ border-radius: 3px;
635
+ position: absolute;
636
+ z-index: 1000;
637
+ max-height: 50%;
638
+ min-width: 100px;
639
+ overflow: auto;
640
+ padding: 2px;
641
+ }
642
+ .flexlayout__floating_window _body {
643
+ height: 100%;
644
+ }
645
+ .flexlayout__floating_window_content {
646
+ left: 0;
647
+ top: 0;
648
+ right: 0;
649
+ bottom: 0;
650
+ position: absolute;
651
+ }
652
+ .flexlayout__error_boundary_container {
653
+ left: 0;
654
+ top: 0;
655
+ right: 0;
656
+ bottom: 0;
657
+ position: absolute;
658
+ display: flex;
659
+ justify-content: center;
660
+ }
661
+ .flexlayout__error_boundary_content {
662
+ display: flex;
663
+ align-items: center;
664
+ }
665
+ .flexlayout__tabset_sizer {
666
+ padding-top: 5px;
667
+ padding-bottom: 3px;
668
+ font-size: var(--font-size);
669
+ font-family: var(--font-family);
670
+ }
671
+ .flexlayout__tabset_header_sizer {
672
+ padding-top: 3px;
673
+ padding-bottom: 3px;
674
+ font-size: var(--font-size);
675
+ font-family: var(--font-family);
676
+ }
677
+ .flexlayout__border_sizer {
678
+ position: absolute;
679
+ top: -30000px;
680
+ padding-top: 6px;
681
+ padding-bottom: 5px;
682
+ font-size: var(--font-size);
683
+ font-family: var(--font-family);
684
+ }
685
+
686
+ .flexlayout__tab_button_textbox {
687
+ border: none;
688
+ }
689
+
690
+ /*# sourceMappingURL=underline.css.map */