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