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/rounded.css CHANGED
@@ -1,730 +1,756 @@
1
- .flexlayout__layout {
2
- --color-text: black;
3
- --color-background: transparent;
4
- --color-base: #f2f6fb;
5
- --color-1: rgb(230.69, 238.17, 247.52);
6
- --color-2: rgb(219.7193, 230.5749, 244.1444);
7
- --color-3: rgb(209.077721, 223.207653, 240.870068);
8
- --color-4: rgb(198.75538937, 216.06142341, 237.69396596);
9
- --color-5: rgb(188.7427276889, 209.1295807077, 234.6131469812);
10
- --color-6: rgb(179.0304458582, 202.4056932865, 231.6247525718);
11
- --color-drag1: rgb(95, 134, 196);
12
- --color-drag2: rgb(95, 134, 196);
13
- --color-drag1-background: rgba(95, 134, 196, 0.1);
14
- --color-drag2-background: rgba(95, 134, 196, 0.1);
15
- --font-size: medium;
16
- --font-family: Roboto, Arial, sans-serif;
17
- --color-overflow: #999db2;
18
- --color-icon: #999db2;
19
- --color-tabset-background: white;
20
- --color-tabset-background-selected: white;
21
- --color-tabset-background-maximized: var(--color-2);
22
- --color-tabset-divider-line: white;
23
- --color-tabset-header-background: var(--color-background);
24
- --color-tabset-header: var(--color-text);
25
- --color-border-tab-content: white;
26
- --color-border-background: var(--color-background);
27
- --color-border-divider-line: var(--color-background);
28
- --color-tab-content: white;
29
- --color-tab-selected: var(--color-text);
30
- --color-tab-selected-background: var(--color-2);
31
- --color-tab-unselected: gray;
32
- --color-tab-unselected-background: #d3d4e745;
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-2);
37
- --color-border-tab-unselected: gray;
38
- --color-border-tab-unselected-background: var(--color-2);
39
- --color-splitter: #f2f6fb;
40
- --color-splitter-hover: var(--color-4);
41
- --color-splitter-drag: var(--color-4);
42
- --color-drag-rect-border: #ccc;
43
- --color-drag-rect-background: var(--color-5);
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: #f2f6fb;
48
- --color-popup-selected: var(--color-text);
49
- --color-popup-selected-background: var(--color-3);
50
- --color-edge-marker: #a6bbdf;
51
- --color-edge-icon: #555;
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
- }
130
- .flexlayout__splitter_handle {
131
- background-color: #ccc;
132
- border-radius: 3px;
133
- }
134
- .flexlayout__splitter_handle_horz {
135
- width: 3px;
136
- height: 30px;
137
- }
138
- .flexlayout__splitter_handle_vert {
139
- width: 30px;
140
- height: 3px;
141
- }
142
- .flexlayout__splitter_extra {
143
- touch-action: none;
144
- background-color: transparent;
145
- }
146
- .flexlayout__outline_rect {
147
- position: absolute;
148
- pointer-events: none;
149
- box-sizing: border-box;
150
- border: 2px solid var(--color-drag1);
151
- background: var(--color-drag1-background);
152
- border-radius: 5px;
153
- z-index: 1000;
154
- }
155
- .flexlayout__outline_rect_edge {
156
- pointer-events: none;
157
- border: 2px solid var(--color-drag2);
158
- background: var(--color-drag2-background);
159
- border-radius: 5px;
160
- z-index: 1000;
161
- box-sizing: border-box;
162
- }
163
- .flexlayout__edge_rect {
164
- position: absolute;
165
- z-index: 1000;
166
- background-color: var(--color-edge-marker);
167
- pointer-events: none;
168
- display: flex;
169
- align-items: center;
170
- justify-content: center;
171
- }
172
- .flexlayout__drag_rect {
173
- color: var(--color-drag-rect);
174
- background-color: var(--color-drag-rect-background);
175
- border: 2px solid var(--color-drag-rect-border);
176
- border-radius: 5px;
177
- box-sizing: border-box;
178
- display: flex;
179
- justify-content: center;
180
- flex-direction: column;
181
- overflow: hidden;
182
- padding: 0.3em 0.8em;
183
- word-wrap: break-word;
184
- font-size: var(--font-size);
185
- font-family: var(--font-family);
186
- }
187
- .flexlayout__row {
188
- display: flex;
189
- flex-basis: 0px;
190
- min-width: 0;
191
- min-height: 0;
192
- position: relative;
193
- box-sizing: border-box;
194
- overflow: hidden;
195
- }
196
- .flexlayout__tabset {
197
- display: flex;
198
- flex-direction: column;
199
- position: relative;
200
- background-color: var(--color-tabset-background);
201
- box-sizing: border-box;
202
- font-family: var(--font-family);
203
- overflow: hidden;
204
- flex-grow: 1;
205
- border-radius: 10px;
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
- }
238
- .flexlayout__tabset_header_content {
239
- flex-grow: 1;
240
- }
241
- .flexlayout__tabset_tabbar_outer {
242
- box-sizing: border-box;
243
- background-color: var(--color-tabset-background);
244
- overflow: hidden;
245
- display: flex;
246
- font-size: var(--font-size);
247
- }
248
- .flexlayout__tabset_tabbar_outer_top {
249
- padding: 0px 2px 0px 2px;
250
- border-bottom: 1px solid var(--color-tabset-divider-line);
251
- }
252
- .flexlayout__tabset_tabbar_outer_bottom {
253
- padding: 0px 2px 0px 2px;
254
- border-top: 1px solid var(--color-tabset-divider-line);
255
- }
256
- .flexlayout__tabset_tabbar_inner {
257
- position: relative;
258
- box-sizing: border-box;
259
- display: flex;
260
- flex-grow: 1;
261
- overflow: hidden;
262
- }
263
- .flexlayout__tabset_tabbar_inner_tab_container {
264
- position: relative;
265
- display: flex;
266
- padding-left: 4px;
267
- padding-right: 4px;
268
- box-sizing: border-box;
269
- white-space: nowrap;
270
- }
271
- .flexlayout__tabset_tabbar_inner_tab_container_top {
272
- border-top: 2px solid transparent;
273
- }
274
- .flexlayout__tabset_tabbar_inner_tab_container_bottom {
275
- border-bottom: 2px solid transparent;
276
- }
277
- .flexlayout__tabset-selected {
278
- background-color: var(--color-tabset-background-selected);
279
- }
280
- .flexlayout__tabset-maximized {
281
- background-color: var(--color-tabset-background-maximized);
282
- }
283
- .flexlayout__tab_button_stamp {
284
- display: inline-flex;
285
- align-items: center;
286
- gap: 0.3em;
287
- white-space: nowrap;
288
- box-sizing: border-box;
289
- }
290
- .flexlayout__tab {
291
- overflow: hidden;
292
- box-sizing: border-box;
293
- background-color: var(--color-tab-content);
294
- color: var(--color-text);
295
- position: relative;
296
- }
297
- .flexlayout__tab_moveable {
298
- position: relative;
299
- height: 100%;
300
- min-width: 1px;
301
- min-height: 1px;
302
- overflow: auto;
303
- box-sizing: border-box;
304
- }
305
- .flexlayout__tab_overlay {
306
- z-index: 20;
307
- position: absolute;
308
- top: 0;
309
- left: 0;
310
- right: 0;
311
- bottom: 0;
312
- background-color: rgba(0, 0, 0, 0.2392156863);
313
- }
314
- .flexlayout__tab_button {
315
- display: flex;
316
- gap: 0.3em;
317
- align-items: center;
318
- box-sizing: border-box;
319
- padding: 3px 0.5em;
320
- cursor: pointer;
321
- border-radius: 10px;
322
- padding: 2px 0.8em;
323
- }
324
- .flexlayout__tab_button_stretch {
325
- background-color: transparent;
326
- color: var(--color-tab-selected);
327
- width: 100%;
328
- padding: 3px 0em;
329
- text-wrap: nowrap;
330
- display: flex;
331
- gap: 0.3em;
332
- align-items: center;
333
- box-sizing: border-box;
334
- cursor: pointer;
335
- }
336
- @media (hover: hover) {
337
- .flexlayout__tab_button_stretch:hover {
338
- color: var(--color-tab-selected);
339
- }
340
- }
341
- .flexlayout__tab_button--selected {
342
- background-color: var(--color-tab-selected-background);
343
- color: var(--color-tab-selected);
344
- }
345
- @media (hover: hover) {
346
- .flexlayout__tab_button:hover {
347
- color: var(--color-tab-selected);
348
- }
349
- }
350
- .flexlayout__tab_button--unselected {
351
- background-color: var(--color-tab-unselected-background);
352
- color: var(--color-tab-unselected);
353
- color: gray;
354
- }
355
- .flexlayout__tab_button_leading {
356
- display: flex;
357
- }
358
- .flexlayout__tab_button_content {
359
- display: flex;
360
- text-wrap: nowrap;
361
- }
362
- .flexlayout__tab_button_textbox {
363
- border: none;
364
- font-family: var(--font-family);
365
- font-size: var(--font-size);
366
- color: var(--color-tab-textbox);
367
- background-color: var(--color-tab-textbox-background);
368
- border: 1px inset var(--color-1);
369
- border-radius: 3px;
370
- width: 10em;
371
- }
372
- .flexlayout__tab_button_textbox:focus {
373
- outline: none;
374
- }
375
- .flexlayout__tab_button_trailing {
376
- display: flex;
377
- visibility: hidden;
378
- border-radius: 4px;
379
- }
380
- .flexlayout__tab_button_trailing:hover {
381
- background-color: var(--color-3);
382
- }
383
- @media (hover: hover) {
384
- .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
385
- visibility: visible;
386
- }
387
- }
388
- .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
389
- visibility: visible;
390
- }
391
- .flexlayout__tab_button_overflow {
392
- display: flex;
393
- align-items: center;
394
- border: none;
395
- color: var(--color-overflow);
396
- font-size: inherit;
397
- background-color: transparent;
398
- width: 2em;
399
- overflow: hidden;
400
- }
401
- .flexlayout__tab_toolbar {
402
- display: flex;
403
- align-items: center;
404
- gap: 0.3em;
405
- padding-left: 0.5em;
406
- padding-right: 0.3em;
407
- }
408
- .flexlayout__tab_toolbar_icon {
409
- border: none;
410
- outline: none;
411
- font-size: inherit;
412
- margin: 0px;
413
- background-color: transparent;
414
- padding: 1px;
415
- }
416
- .flexlayout__tab_toolbar_button {
417
- border: none;
418
- outline: none;
419
- font-size: inherit;
420
- margin: 0px;
421
- background-color: transparent;
422
- border-radius: 4px;
423
- padding: 1px;
424
- }
425
- @media (hover: hover) {
426
- .flexlayout__tab_toolbar_button:hover {
427
- background-color: var(--color-2);
428
- }
429
- }
430
- .flexlayout__tab_toolbar_sticky_buttons_container {
431
- display: flex;
432
- gap: 0.3em;
433
- padding-left: 5px;
434
- align-items: center;
435
- }
436
- .flexlayout__tab_floating {
437
- overflow: auto;
438
- position: absolute;
439
- box-sizing: border-box;
440
- color: var(--color-text);
441
- background-color: var(--color-background);
442
- display: flex;
443
- justify-content: center;
444
- align-items: center;
445
- }
446
- .flexlayout__tab_floating_inner {
447
- overflow: auto;
448
- display: flex;
449
- flex-direction: column;
450
- justify-content: center;
451
- align-items: center;
452
- }
453
- .flexlayout__tab_floating_inner div {
454
- margin-bottom: 5px;
455
- text-align: center;
456
- }
457
- .flexlayout__tab_floating_inner div a {
458
- color: royalblue;
459
- }
460
- .flexlayout__border {
461
- box-sizing: border-box;
462
- overflow: hidden;
463
- display: flex;
464
- font-size: var(--font-size);
465
- font-family: var(--font-family);
466
- color: var(--color-border);
467
- background-color: var(--color-border-background);
468
- }
469
- .flexlayout__border_tab_contents {
470
- box-sizing: border-box;
471
- overflow: hidden;
472
- background-color: var(--color-border-tab-content);
473
- }
474
- .flexlayout__border_top {
475
- border-bottom: 1px solid var(--color-border-divider-line);
476
- align-items: center;
477
- }
478
- .flexlayout__border_bottom {
479
- border-top: 1px solid var(--color-border-divider-line);
480
- align-items: center;
481
- }
482
- .flexlayout__border_left {
483
- border-right: 1px solid var(--color-border-divider-line);
484
- align-content: center;
485
- flex-direction: column;
486
- }
487
- .flexlayout__border_right {
488
- border-left: 1px solid var(--color-border-divider-line);
489
- align-content: center;
490
- flex-direction: column;
491
- }
492
- .flexlayout__border_inner {
493
- position: relative;
494
- box-sizing: border-box;
495
- align-items: center;
496
- display: flex;
497
- overflow: hidden;
498
- flex-grow: 1;
499
- }
500
- .flexlayout__border_inner_tab_container {
501
- white-space: nowrap;
502
- display: flex;
503
- padding-left: 2px;
504
- padding-right: 2px;
505
- box-sizing: border-box;
506
- position: absolute;
507
- }
508
- .flexlayout__border_inner_tab_container_right {
509
- transform-origin: top left;
510
- transform: rotate(90deg);
511
- }
512
- .flexlayout__border_inner_tab_container_left {
513
- flex-direction: row-reverse;
514
- transform-origin: top right;
515
- transform: rotate(-90deg);
516
- }
517
- .flexlayout__border_tab_divider {
518
- width: 4px;
519
- }
520
- .flexlayout__border_button {
521
- display: flex;
522
- gap: 0.3em;
523
- align-items: center;
524
- cursor: pointer;
525
- padding: 3px 0.5em;
526
- margin: 2px 0px;
527
- box-sizing: border-box;
528
- white-space: nowrap;
529
- border-radius: 10px;
530
- padding: 2px 0.8em;
531
- }
532
- .flexlayout__border_button--selected {
533
- background-color: var(--color-border-tab-selected-background);
534
- color: var(--color-border-tab-selected);
535
- }
536
- @media (hover: hover) {
537
- .flexlayout__border_button:hover {
538
- background-color: var(--color-border-tab-selected-background);
539
- color: var(--color-border-tab-selected);
540
- }
541
- }
542
- .flexlayout__border_button--unselected {
543
- background-color: var(--color-border-tab-unselected-background);
544
- color: var(--color-border-tab-unselected);
545
- }
546
- .flexlayout__border_button_leading {
547
- display: flex;
548
- }
549
- .flexlayout__border_button_content {
550
- display: flex;
551
- }
552
- .flexlayout__border_button_trailing {
553
- display: flex;
554
- border-radius: 4px;
555
- visibility: hidden;
556
- }
557
- .flexlayout__border_button_trailing:hover {
558
- background-color: var(--color-3);
559
- }
560
- @media (hover: hover) {
561
- .flexlayout__border_button:hover .flexlayout__border_button_trailing {
562
- visibility: visible;
563
- }
564
- }
565
- .flexlayout__border_button--selected .flexlayout__border_button_trailing {
566
- visibility: visible;
567
- }
568
- .flexlayout__border_toolbar {
569
- display: flex;
570
- gap: 0.3em;
571
- align-items: center;
572
- }
573
- .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
574
- flex-direction: column;
575
- padding-top: 0.5em;
576
- padding-bottom: 0.3em;
577
- }
578
- .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
579
- padding-left: 0.5em;
580
- padding-right: 0.3em;
581
- }
582
- .flexlayout__border_toolbar_button {
583
- border: none;
584
- outline: none;
585
- font-size: inherit;
586
- background-color: transparent;
587
- border-radius: 4px;
588
- padding: 1px;
589
- }
590
- @media (hover: hover) {
591
- .flexlayout__border_toolbar_button:hover {
592
- background-color: var(--color-2);
593
- }
594
- }
595
- .flexlayout__border_toolbar_button_overflow {
596
- display: flex;
597
- align-items: center;
598
- border: none;
599
- color: var(--color-overflow);
600
- font-size: inherit;
601
- background-color: transparent;
602
- width: 2em;
603
- }
604
- .flexlayout__popup_menu {
605
- font-size: var(--font-size);
606
- font-family: var(--font-family);
607
- }
608
- .flexlayout__popup_menu_item {
609
- padding: 2px 0.5em;
610
- white-space: nowrap;
611
- cursor: pointer;
612
- border-radius: 2px;
613
- }
614
- @media (hover: hover) {
615
- .flexlayout__popup_menu_item:hover {
616
- background-color: var(--color-6);
617
- }
618
- }
619
- .flexlayout__popup_menu_container {
620
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
621
- border: 1px solid var(--color-popup-border);
622
- color: var(--color-popup-unselected);
623
- background: var(--color-popup-unselected-background);
624
- border-radius: 3px;
625
- position: absolute;
626
- z-index: 1000;
627
- max-height: 50%;
628
- min-width: 100px;
629
- overflow: auto;
630
- padding: 2px;
631
- }
632
- .flexlayout__floating_window _body {
633
- height: 100%;
634
- }
635
- .flexlayout__floating_window_content {
636
- left: 0;
637
- top: 0;
638
- right: 0;
639
- bottom: 0;
640
- position: absolute;
641
- }
642
- .flexlayout__error_boundary_container {
643
- left: 0;
644
- top: 0;
645
- right: 0;
646
- bottom: 0;
647
- position: absolute;
648
- display: flex;
649
- justify-content: center;
650
- }
651
- .flexlayout__error_boundary_content {
652
- display: flex;
653
- align-items: center;
654
- }
655
- .flexlayout__tabset_sizer {
656
- padding-top: 5px;
657
- padding-bottom: 3px;
658
- font-size: var(--font-size);
659
- font-family: var(--font-family);
660
- }
661
- .flexlayout__tabset_header_sizer {
662
- padding-top: 3px;
663
- padding-bottom: 3px;
664
- font-size: var(--font-size);
665
- font-family: var(--font-family);
666
- }
667
- .flexlayout__border_sizer {
668
- position: absolute;
669
- top: -30000px;
670
- padding-top: 6px;
671
- padding-bottom: 5px;
672
- font-size: var(--font-size);
673
- font-family: var(--font-family);
674
- }
675
- .flexlayout__mini_scrollbar::-webkit-scrollbar {
676
- width: 3px;
677
- height: 3px;
678
- }
679
- .flexlayout__mini_scrollbar_hidden::-webkit-scrollbar {
680
- display: none;
681
- }
682
- .flexlayout__mini_scrollbar::-webkit-scrollbar-button {
683
- display: none;
684
- }
685
- .flexlayout__mini_scrollbar::-webkit-scrollbar-thumb {
686
- background: #aaa;
687
- border-radius: 10px;
688
- }
689
-
690
- .flexlayout__tabset {
691
- padding: 3px;
692
- }
693
-
694
- .flexlayout__tabset_content {
695
- padding: 1px 3px 3px 3px;
696
- border-bottom-left-radius: 10px;
697
- border-bottom-right-radius: 10px;
698
- }
699
-
700
- .flexlayout__tab_border {
701
- border-radius: 10px;
702
- padding: 5px;
703
- }
704
-
705
- .flexlayout__tabset_tabbar_outer_top {
706
- border-bottom: unset;
707
- padding-bottom: 1px;
708
- }
709
-
710
- .flexlayout__tabset_tabbar_inner_tab_container_top {
711
- border-bottom: 2px solid transparent;
712
- }
713
-
714
- .flexlayout__border_tab_contents {
715
- background-color: white;
716
- }
717
-
718
- .flexlayout__border_tab_contents {
719
- border-radius: 10px;
720
- }
721
-
722
- .flexlayout__border_sizer {
723
- padding-bottom: 6px;
724
- }
725
-
726
- .flexlayout__border_bottom {
727
- border-top: 2px solid var(--color-border-divider-line);
728
- }
729
-
730
- /*# sourceMappingURL=rounded.css.map */
1
+ .flexlayout__layout {
2
+ --color-text: black;
3
+ --color-background: transparent;
4
+ --color-base: #f2f6fb;
5
+ --color-1: rgb(230.69, 238.17, 247.52);
6
+ --color-2: rgb(219.7193, 230.5749, 244.1444);
7
+ --color-3: rgb(209.077721, 223.207653, 240.870068);
8
+ --color-4: rgb(198.75538937, 216.06142341, 237.69396596);
9
+ --color-5: rgb(188.7427276889, 209.1295807077, 234.6131469812);
10
+ --color-6: rgb(179.0304458582, 202.4056932865, 231.6247525718);
11
+ --color-drag1: rgb(95, 134, 196);
12
+ --color-drag2: rgb(95, 134, 196);
13
+ --color-drag1-background: rgba(95, 134, 196, 0.1);
14
+ --color-drag2-background: rgba(95, 134, 196, 0.1);
15
+ --font-size: medium;
16
+ --font-family: Roboto, Arial, sans-serif;
17
+ --color-overflow: #999db2;
18
+ --color-icon: #999db2;
19
+ --color-tabset-background: white;
20
+ --color-tabset-background-selected: white;
21
+ --color-tabset-background-maximized: white;
22
+ --color-tabset-divider-line: white;
23
+ --color-tabset-header-background: var(--color-background);
24
+ --color-tabset-header: var(--color-text);
25
+ --color-border-tab-content: white;
26
+ --color-border-background: var(--color-background);
27
+ --color-border-divider-line: var(--color-background);
28
+ --color-tab-content: white;
29
+ --color-tab-selected: var(--color-text);
30
+ --color-tab-selected-background: var(--color-2);
31
+ --color-tab-unselected: gray;
32
+ --color-tab-unselected-background: #d3d4e745;
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-2);
37
+ --color-border-tab-unselected: gray;
38
+ --color-border-tab-unselected-background: var(--color-2);
39
+ --color-splitter: #f2f6fb;
40
+ --color-splitter-hover: var(--color-4);
41
+ --color-splitter-drag: var(--color-4);
42
+ --color-drag-rect-border: #ccc;
43
+ --color-drag-rect-background: var(--color-5);
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: #f2f6fb;
48
+ --color-popup-selected: var(--color-text);
49
+ --color-popup-selected-background: var(--color-3);
50
+ --color-edge-marker: #a6bbdf;
51
+ --color-edge-icon: #555;
52
+ --color-mini-scroll-indicator:rgba(180, 200, 230, 0.5);
53
+ --color-mini-scroll-indicator-hovered:rgba(180, 200, 230, 0.7);
54
+ --size-mini-scroll-indicator:4px;
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
+ border-radius: 10px;
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
+ }
241
+ .flexlayout__tabset_header_content {
242
+ flex-grow: 1;
243
+ }
244
+ .flexlayout__tabset_tabbar_outer {
245
+ box-sizing: border-box;
246
+ background-color: var(--color-tabset-background);
247
+ overflow: hidden;
248
+ display: flex;
249
+ font-size: var(--font-size);
250
+ }
251
+ .flexlayout__tabset_tabbar_outer_top {
252
+ padding: 0px 2px 0px 2px;
253
+ border-bottom: 1px solid var(--color-tabset-divider-line);
254
+ }
255
+ .flexlayout__tabset_tabbar_outer_bottom {
256
+ padding: 0px 2px 0px 2px;
257
+ border-top: 1px solid var(--color-tabset-divider-line);
258
+ }
259
+ .flexlayout__tabset_tabbar_inner {
260
+ position: relative;
261
+ box-sizing: border-box;
262
+ display: flex;
263
+ flex-grow: 1;
264
+ scrollbar-width: none;
265
+ }
266
+ .flexlayout__tabset_tabbar_inner::-webkit-scrollbar {
267
+ display: none;
268
+ }
269
+ .flexlayout__tabset_tabbar_inner_tab_container {
270
+ position: relative;
271
+ display: flex;
272
+ padding-left: 4px;
273
+ padding-right: 4px;
274
+ box-sizing: border-box;
275
+ white-space: nowrap;
276
+ }
277
+ .flexlayout__tabset_tabbar_inner_tab_container_top {
278
+ border-top: 2px solid transparent;
279
+ }
280
+ .flexlayout__tabset_tabbar_inner_tab_container_bottom {
281
+ border-bottom: 2px solid transparent;
282
+ }
283
+ .flexlayout__tabset-selected {
284
+ background-color: var(--color-tabset-background-selected);
285
+ }
286
+ .flexlayout__tabset-maximized {
287
+ background-color: var(--color-tabset-background-maximized);
288
+ }
289
+ .flexlayout__tab_button_stamp {
290
+ display: inline-flex;
291
+ align-items: center;
292
+ gap: 0.3em;
293
+ white-space: nowrap;
294
+ box-sizing: border-box;
295
+ }
296
+ .flexlayout__tab {
297
+ overflow: hidden;
298
+ box-sizing: border-box;
299
+ background-color: var(--color-tab-content);
300
+ color: var(--color-text);
301
+ position: relative;
302
+ }
303
+ .flexlayout__tab_moveable {
304
+ position: relative;
305
+ height: 100%;
306
+ min-width: 1px;
307
+ min-height: 1px;
308
+ overflow: auto;
309
+ box-sizing: border-box;
310
+ }
311
+ .flexlayout__tab_overlay {
312
+ z-index: 20;
313
+ position: absolute;
314
+ top: 0;
315
+ left: 0;
316
+ right: 0;
317
+ bottom: 0;
318
+ background-color: rgba(0, 0, 0, 0.2392156863);
319
+ }
320
+ .flexlayout__tab_button {
321
+ display: flex;
322
+ gap: 0.3em;
323
+ align-items: center;
324
+ box-sizing: border-box;
325
+ padding: 3px 0.5em;
326
+ cursor: pointer;
327
+ border-radius: 10px;
328
+ padding: 2px 0.8em;
329
+ }
330
+ .flexlayout__tab_button_stretch {
331
+ background-color: transparent;
332
+ color: var(--color-tab-selected);
333
+ width: 100%;
334
+ padding: 3px 0em;
335
+ text-wrap: nowrap;
336
+ display: flex;
337
+ gap: 0.3em;
338
+ align-items: center;
339
+ box-sizing: border-box;
340
+ cursor: pointer;
341
+ }
342
+ @media (hover: hover) {
343
+ .flexlayout__tab_button_stretch:hover {
344
+ color: var(--color-tab-selected);
345
+ }
346
+ }
347
+ .flexlayout__tab_button--selected {
348
+ background-color: var(--color-tab-selected-background);
349
+ color: var(--color-tab-selected);
350
+ }
351
+ @media (hover: hover) {
352
+ .flexlayout__tab_button:hover {
353
+ color: var(--color-tab-selected);
354
+ }
355
+ }
356
+ .flexlayout__tab_button--unselected {
357
+ background-color: var(--color-tab-unselected-background);
358
+ color: var(--color-tab-unselected);
359
+ color: gray;
360
+ }
361
+ .flexlayout__tab_button_leading {
362
+ display: flex;
363
+ }
364
+ .flexlayout__tab_button_content {
365
+ display: flex;
366
+ text-wrap: nowrap;
367
+ }
368
+ .flexlayout__tab_button_textbox {
369
+ border: none;
370
+ font-family: var(--font-family);
371
+ font-size: var(--font-size);
372
+ color: var(--color-tab-textbox);
373
+ background-color: var(--color-tab-textbox-background);
374
+ border: 1px inset var(--color-1);
375
+ border-radius: 3px;
376
+ width: 10em;
377
+ }
378
+ .flexlayout__tab_button_textbox:focus {
379
+ outline: none;
380
+ }
381
+ .flexlayout__tab_button_trailing {
382
+ display: flex;
383
+ visibility: hidden;
384
+ border-radius: 4px;
385
+ }
386
+ .flexlayout__tab_button_trailing:hover {
387
+ background-color: var(--color-3);
388
+ }
389
+ @media (hover: hover) {
390
+ .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
391
+ visibility: visible;
392
+ }
393
+ }
394
+ .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
395
+ visibility: visible;
396
+ }
397
+ .flexlayout__tab_button_overflow {
398
+ display: flex;
399
+ align-items: center;
400
+ border: none;
401
+ color: var(--color-overflow);
402
+ font-size: inherit;
403
+ background-color: transparent;
404
+ width: 2em;
405
+ overflow: hidden;
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
+ align-items: center;
502
+ display: flex;
503
+ flex-grow: 1;
504
+ scrollbar-width: none;
505
+ }
506
+ .flexlayout__border_inner::-webkit-scrollbar {
507
+ display: none;
508
+ }
509
+ .flexlayout__border_inner_tab_container {
510
+ white-space: nowrap;
511
+ display: flex;
512
+ padding-left: 2px;
513
+ padding-right: 2px;
514
+ box-sizing: border-box;
515
+ position: absolute;
516
+ }
517
+ .flexlayout__border_inner_tab_container_right {
518
+ transform-origin: top left;
519
+ transform: rotate(90deg);
520
+ }
521
+ .flexlayout__border_inner_tab_container_left {
522
+ flex-direction: row-reverse;
523
+ transform-origin: top right;
524
+ transform: rotate(-90deg);
525
+ }
526
+ .flexlayout__border_tab_divider {
527
+ width: 4px;
528
+ }
529
+ .flexlayout__border_button {
530
+ display: flex;
531
+ gap: 0.3em;
532
+ align-items: center;
533
+ cursor: pointer;
534
+ padding: 3px 0.5em;
535
+ margin: 2px 0px;
536
+ box-sizing: border-box;
537
+ white-space: nowrap;
538
+ border-radius: 10px;
539
+ padding: 2px 0.8em;
540
+ }
541
+ .flexlayout__border_button--selected {
542
+ background-color: var(--color-border-tab-selected-background);
543
+ color: var(--color-border-tab-selected);
544
+ }
545
+ @media (hover: hover) {
546
+ .flexlayout__border_button:hover {
547
+ background-color: var(--color-border-tab-selected-background);
548
+ color: var(--color-border-tab-selected);
549
+ }
550
+ }
551
+ .flexlayout__border_button--unselected {
552
+ background-color: var(--color-border-tab-unselected-background);
553
+ color: var(--color-border-tab-unselected);
554
+ }
555
+ .flexlayout__border_button_leading {
556
+ display: flex;
557
+ }
558
+ .flexlayout__border_button_content {
559
+ display: flex;
560
+ }
561
+ .flexlayout__border_button_trailing {
562
+ display: flex;
563
+ border-radius: 4px;
564
+ visibility: hidden;
565
+ }
566
+ .flexlayout__border_button_trailing:hover {
567
+ background-color: var(--color-3);
568
+ }
569
+ @media (hover: hover) {
570
+ .flexlayout__border_button:hover .flexlayout__border_button_trailing {
571
+ visibility: visible;
572
+ }
573
+ }
574
+ .flexlayout__border_button--selected .flexlayout__border_button_trailing {
575
+ visibility: visible;
576
+ }
577
+ .flexlayout__border_toolbar {
578
+ display: flex;
579
+ gap: 0.3em;
580
+ align-items: center;
581
+ }
582
+ .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
583
+ flex-direction: column;
584
+ padding-top: 0.5em;
585
+ padding-bottom: 0.3em;
586
+ }
587
+ .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
588
+ padding-left: 0.5em;
589
+ padding-right: 0.3em;
590
+ }
591
+ .flexlayout__border_toolbar_button {
592
+ border: none;
593
+ outline: none;
594
+ font-size: inherit;
595
+ background-color: transparent;
596
+ border-radius: 4px;
597
+ padding: 1px;
598
+ }
599
+ @media (hover: hover) {
600
+ .flexlayout__border_toolbar_button:hover {
601
+ background-color: var(--color-2);
602
+ }
603
+ }
604
+ .flexlayout__border_toolbar_button_overflow {
605
+ display: flex;
606
+ align-items: center;
607
+ border: none;
608
+ color: var(--color-overflow);
609
+ font-size: inherit;
610
+ background-color: transparent;
611
+ width: 1.5em;
612
+ }
613
+ .flexlayout__popup_menu {
614
+ font-size: var(--font-size);
615
+ font-family: var(--font-family);
616
+ }
617
+ .flexlayout__popup_menu_item {
618
+ padding: 2px 0.5em;
619
+ white-space: nowrap;
620
+ cursor: pointer;
621
+ border-radius: 2px;
622
+ }
623
+ .flexlayout__popup_menu_item--selected {
624
+ font-weight: 500;
625
+ background-color: var(--color-tab-selected-background);
626
+ color: var(--color-tab-selected);
627
+ }
628
+ @media (hover: hover) {
629
+ .flexlayout__popup_menu_item:hover {
630
+ background-color: var(--color-6);
631
+ }
632
+ }
633
+ .flexlayout__popup_menu_container {
634
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
635
+ border: 1px solid var(--color-popup-border);
636
+ color: var(--color-popup-unselected);
637
+ background: var(--color-popup-unselected-background);
638
+ border-radius: 3px;
639
+ position: absolute;
640
+ z-index: 1000;
641
+ max-height: 50%;
642
+ min-width: 100px;
643
+ overflow: auto;
644
+ padding: 2px;
645
+ }
646
+ .flexlayout__floating_window _body {
647
+ height: 100%;
648
+ }
649
+ .flexlayout__floating_window_content {
650
+ left: 0;
651
+ top: 0;
652
+ right: 0;
653
+ bottom: 0;
654
+ position: absolute;
655
+ }
656
+ .flexlayout__error_boundary_container {
657
+ left: 0;
658
+ top: 0;
659
+ right: 0;
660
+ bottom: 0;
661
+ position: absolute;
662
+ display: flex;
663
+ justify-content: center;
664
+ }
665
+ .flexlayout__error_boundary_content {
666
+ display: flex;
667
+ align-items: center;
668
+ }
669
+ .flexlayout__tabset_sizer {
670
+ padding-top: 5px;
671
+ padding-bottom: 3px;
672
+ font-size: var(--font-size);
673
+ font-family: var(--font-family);
674
+ }
675
+ .flexlayout__tabset_header_sizer {
676
+ padding-top: 3px;
677
+ padding-bottom: 3px;
678
+ font-size: var(--font-size);
679
+ font-family: var(--font-family);
680
+ }
681
+ .flexlayout__border_sizer {
682
+ position: absolute;
683
+ top: -30000px;
684
+ padding-top: 6px;
685
+ padding-bottom: 5px;
686
+ font-size: var(--font-size);
687
+ font-family: var(--font-family);
688
+ }
689
+ .flexlayout__mini_scrollbar {
690
+ position: absolute;
691
+ background-color: var(--color-mini-scroll-indicator);
692
+ border-radius: 5px;
693
+ width: var(--size-mini-scroll-indicator);
694
+ height: var(--size-mini-scroll-indicator);
695
+ visibility: hidden;
696
+ opacity: 0;
697
+ transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
698
+ }
699
+ .flexlayout__mini_scrollbar:hover {
700
+ background-color: var(--color-mini-scroll-indicator-hovered);
701
+ transition: background-color 0.3s ease-in-out;
702
+ }
703
+ .flexlayout__mini_scrollbar_container {
704
+ position: relative;
705
+ display: flex;
706
+ flex-grow: 1;
707
+ overflow: hidden;
708
+ }
709
+ @media (hover: hover) {
710
+ .flexlayout__mini_scrollbar_container:hover .flexlayout__mini_scrollbar {
711
+ opacity: 1;
712
+ visibility: visible;
713
+ }
714
+ }
715
+
716
+ .flexlayout__tabset {
717
+ padding: 3px;
718
+ }
719
+
720
+ .flexlayout__tabset_content {
721
+ padding: 1px 3px 3px 3px;
722
+ border-bottom-left-radius: 10px;
723
+ border-bottom-right-radius: 10px;
724
+ }
725
+
726
+ .flexlayout__tab_border {
727
+ border-radius: 10px;
728
+ padding: 5px;
729
+ }
730
+
731
+ .flexlayout__tabset_tabbar_outer_top {
732
+ border-bottom: unset;
733
+ padding-bottom: 1px;
734
+ }
735
+
736
+ .flexlayout__tabset_tabbar_inner_tab_container_top {
737
+ border-bottom: 2px solid transparent;
738
+ }
739
+
740
+ .flexlayout__border_tab_contents {
741
+ background-color: white;
742
+ }
743
+
744
+ .flexlayout__border_tab_contents {
745
+ border-radius: 10px;
746
+ }
747
+
748
+ .flexlayout__border_sizer {
749
+ padding-bottom: 6px;
750
+ }
751
+
752
+ .flexlayout__border_bottom {
753
+ border-top: 2px solid var(--color-border-divider-line);
754
+ }
755
+
756
+ /*# sourceMappingURL=rounded.css.map */