flexlayout-react 0.8.15 → 0.8.17

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,688 +1,688 @@
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_leading {
238
- display: flex;
239
- }
240
- .flexlayout__tabset_header {
241
- display: flex;
242
- align-items: center;
243
- padding: 3px 3px 3px 5px;
244
- box-sizing: border-box;
245
- border-bottom: 1px solid var(--color-tabset-divider-line);
246
- color: var(--color-tabset-header);
247
- background-color: var(--color-tabset-header-background);
248
- font-size: var(--font-size);
249
- }
250
- .flexlayout__tabset_header_content {
251
- flex-grow: 1;
252
- }
253
- .flexlayout__tabset_tabbar_outer {
254
- box-sizing: border-box;
255
- background-color: var(--color-tabset-background);
256
- overflow: hidden;
257
- display: flex;
258
- font-size: var(--font-size);
259
- }
260
- .flexlayout__tabset_tabbar_outer_top {
261
- padding: 0px 2px 0px 2px;
262
- border-bottom: 1px solid var(--color-tabset-divider-line);
263
- }
264
- .flexlayout__tabset_tabbar_outer_bottom {
265
- padding: 0px 2px 0px 2px;
266
- border-top: 1px solid var(--color-tabset-divider-line);
267
- }
268
- .flexlayout__tabset_tabbar_inner {
269
- position: relative;
270
- box-sizing: border-box;
271
- display: flex;
272
- flex-grow: 1;
273
- scrollbar-width: none;
274
- }
275
- .flexlayout__tabset_tabbar_inner::-webkit-scrollbar {
276
- display: none;
277
- }
278
- .flexlayout__tabset_tabbar_inner_tab_container {
279
- position: relative;
280
- display: flex;
281
- padding-left: 4px;
282
- padding-right: 4px;
283
- box-sizing: border-box;
284
- white-space: nowrap;
285
- }
286
- .flexlayout__tabset_tabbar_inner_tab_container_top {
287
- border-top: 2px solid transparent;
288
- }
289
- .flexlayout__tabset_tabbar_inner_tab_container_bottom {
290
- border-bottom: 2px solid transparent;
291
- }
292
- .flexlayout__tabset-selected {
293
- background-color: var(--color-tabset-background-selected);
294
- }
295
- .flexlayout__tabset-maximized {
296
- background-color: var(--color-tabset-background-maximized);
297
- }
298
- .flexlayout__tab_button_stamp {
299
- display: inline-flex;
300
- align-items: center;
301
- gap: 0.3em;
302
- white-space: nowrap;
303
- box-sizing: border-box;
304
- }
305
- .flexlayout__tab {
306
- overflow: hidden;
307
- box-sizing: border-box;
308
- background-color: var(--color-tab-content);
309
- color: var(--color-text);
310
- position: relative;
311
- }
312
- .flexlayout__tab_moveable {
313
- position: relative;
314
- height: 100%;
315
- min-width: 1px;
316
- min-height: 1px;
317
- overflow: auto;
318
- box-sizing: border-box;
319
- }
320
- .flexlayout__tab_overlay {
321
- z-index: 20;
322
- position: absolute;
323
- top: 0;
324
- left: 0;
325
- right: 0;
326
- bottom: 0;
327
- background-color: rgba(0, 0, 0, 0.2392156863);
328
- }
329
- .flexlayout__tab_button {
330
- display: flex;
331
- gap: 0.3em;
332
- align-items: center;
333
- box-sizing: border-box;
334
- padding: 3px 0.5em;
335
- cursor: pointer;
336
- }
337
- .flexlayout__tab_button_stretch {
338
- background-color: transparent;
339
- color: var(--color-tab-selected);
340
- width: 100%;
341
- padding: 3px 0em;
342
- text-wrap: nowrap;
343
- display: flex;
344
- gap: 0.3em;
345
- align-items: center;
346
- box-sizing: border-box;
347
- cursor: pointer;
348
- }
349
- @media (hover: hover) {
350
- .flexlayout__tab_button_stretch:hover {
351
- color: var(--color-tab-selected);
352
- }
353
- }
354
- .flexlayout__tab_button--selected {
355
- background-color: var(--color-tab-selected-background);
356
- color: var(--color-tab-selected);
357
- }
358
- @media (hover: hover) {
359
- .flexlayout__tab_button:hover {
360
- color: var(--color-tab-selected);
361
- }
362
- }
363
- .flexlayout__tab_button--unselected {
364
- background-color: var(--color-tab-unselected-background);
365
- color: var(--color-tab-unselected);
366
- }
367
- .flexlayout__tab_button_leading {
368
- display: flex;
369
- }
370
- .flexlayout__tab_button_content {
371
- display: flex;
372
- text-wrap: nowrap;
373
- }
374
- .flexlayout__tab_button_textbox {
375
- border: none;
376
- font-family: var(--font-family);
377
- font-size: var(--font-size);
378
- color: var(--color-tab-textbox);
379
- background-color: var(--color-tab-textbox-background);
380
- border: 1px inset var(--color-1);
381
- border-radius: 3px;
382
- width: 10em;
383
- }
384
- .flexlayout__tab_button_textbox:focus {
385
- outline: none;
386
- }
387
- .flexlayout__tab_button_trailing {
388
- display: flex;
389
- visibility: hidden;
390
- border-radius: 4px;
391
- }
392
- .flexlayout__tab_button_trailing:hover {
393
- background-color: var(--color-toolbar-button-hover);
394
- }
395
- @media (hover: hover) {
396
- .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
397
- visibility: visible;
398
- }
399
- }
400
- .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
401
- visibility: visible;
402
- }
403
- .flexlayout__tab_button_overflow {
404
- display: flex;
405
- align-items: center;
406
- border: none;
407
- color: var(--color-overflow);
408
- font-size: inherit;
409
- background-color: transparent;
410
- width: 2em;
411
- overflow: hidden;
412
- }
413
- .flexlayout__tab_toolbar {
414
- display: flex;
415
- align-items: center;
416
- gap: 0.3em;
417
- padding-left: 0.5em;
418
- padding-right: 0.3em;
419
- }
420
- .flexlayout__tab_toolbar_icon {
421
- border: none;
422
- outline: none;
423
- font-size: inherit;
424
- margin: 0px;
425
- background-color: transparent;
426
- padding: 1px;
427
- }
428
- .flexlayout__tab_toolbar_button {
429
- border: none;
430
- outline: none;
431
- font-size: inherit;
432
- margin: 0px;
433
- background-color: transparent;
434
- border-radius: 4px;
435
- padding: 1px;
436
- }
437
- @media (hover: hover) {
438
- .flexlayout__tab_toolbar_button:hover {
439
- background-color: var(--color-toolbar-button-hover);
440
- }
441
- }
442
- .flexlayout__tab_toolbar_sticky_buttons_container {
443
- display: flex;
444
- gap: 0.3em;
445
- padding-left: 5px;
446
- align-items: center;
447
- }
448
- .flexlayout__border {
449
- box-sizing: border-box;
450
- overflow: hidden;
451
- display: flex;
452
- font-size: var(--font-size);
453
- font-family: var(--font-family);
454
- color: var(--color-border);
455
- background-color: var(--color-border-background);
456
- }
457
- .flexlayout__border_tab_contents {
458
- box-sizing: border-box;
459
- overflow: hidden;
460
- background-color: var(--color-border-tab-content);
461
- }
462
- .flexlayout__border_leading {
463
- display: flex;
464
- }
465
- .flexlayout__border_top {
466
- border-bottom: 1px solid var(--color-border-divider-line);
467
- align-items: center;
468
- }
469
- .flexlayout__border_bottom {
470
- border-top: 1px solid var(--color-border-divider-line);
471
- align-items: center;
472
- }
473
- .flexlayout__border_left {
474
- border-right: 1px solid var(--color-border-divider-line);
475
- align-content: center;
476
- flex-direction: column;
477
- }
478
- .flexlayout__border_right {
479
- border-left: 1px solid var(--color-border-divider-line);
480
- align-content: center;
481
- flex-direction: column;
482
- }
483
- .flexlayout__border_inner {
484
- position: relative;
485
- box-sizing: border-box;
486
- align-items: center;
487
- display: flex;
488
- flex-grow: 1;
489
- scrollbar-width: none;
490
- }
491
- .flexlayout__border_inner::-webkit-scrollbar {
492
- display: none;
493
- }
494
- .flexlayout__border_inner_tab_container {
495
- white-space: nowrap;
496
- display: flex;
497
- padding-left: 2px;
498
- padding-right: 2px;
499
- box-sizing: border-box;
500
- position: absolute;
501
- }
502
- .flexlayout__border_inner_tab_container_right {
503
- transform-origin: top left;
504
- transform: rotate(90deg);
505
- }
506
- .flexlayout__border_inner_tab_container_left {
507
- flex-direction: row-reverse;
508
- transform-origin: top right;
509
- transform: rotate(-90deg);
510
- }
511
- .flexlayout__border_tab_divider {
512
- width: 4px;
513
- }
514
- .flexlayout__border_button {
515
- display: flex;
516
- gap: 0.3em;
517
- align-items: center;
518
- cursor: pointer;
519
- padding: 3px 0.5em;
520
- margin: 2px 0px;
521
- box-sizing: border-box;
522
- white-space: nowrap;
523
- }
524
- .flexlayout__border_button--selected {
525
- background-color: var(--color-border-tab-selected-background);
526
- color: var(--color-border-tab-selected);
527
- }
528
- @media (hover: hover) {
529
- .flexlayout__border_button:hover {
530
- color: var(--color-border-tab-selected);
531
- }
532
- }
533
- .flexlayout__border_button--unselected {
534
- background-color: var(--color-border-tab-unselected-background);
535
- color: var(--color-border-tab-unselected);
536
- }
537
- .flexlayout__border_button_leading {
538
- display: flex;
539
- }
540
- .flexlayout__border_button_content {
541
- display: flex;
542
- }
543
- .flexlayout__border_button_trailing {
544
- display: flex;
545
- border-radius: 4px;
546
- visibility: hidden;
547
- }
548
- @media (hover: hover) {
549
- .flexlayout__border_button:hover .flexlayout__border_button_trailing {
550
- visibility: visible;
551
- }
552
- }
553
- .flexlayout__border_button--selected .flexlayout__border_button_trailing {
554
- visibility: visible;
555
- }
556
- .flexlayout__border_toolbar {
557
- display: flex;
558
- gap: 0.3em;
559
- align-items: center;
560
- }
561
- .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
562
- flex-direction: column;
563
- padding-top: 0.5em;
564
- padding-bottom: 0.3em;
565
- }
566
- .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
567
- padding-left: 0.5em;
568
- padding-right: 0.3em;
569
- }
570
- .flexlayout__border_toolbar_button {
571
- border: none;
572
- outline: none;
573
- font-size: inherit;
574
- background-color: transparent;
575
- border-radius: 4px;
576
- padding: 1px;
577
- }
578
- @media (hover: hover) {
579
- .flexlayout__border_toolbar_button:hover {
580
- background-color: var(--color-toolbar-button-hover);
581
- }
582
- }
583
- .flexlayout__border_toolbar_button_overflow {
584
- display: flex;
585
- align-items: center;
586
- border: none;
587
- color: var(--color-overflow);
588
- font-size: inherit;
589
- background-color: transparent;
590
- width: 1.5em;
591
- }
592
- .flexlayout__popup_menu {
593
- font-size: var(--font-size);
594
- font-family: var(--font-family);
595
- }
596
- .flexlayout__popup_menu_item {
597
- padding: 2px 0.5em;
598
- white-space: nowrap;
599
- cursor: pointer;
600
- border-radius: 2px;
601
- }
602
- .flexlayout__popup_menu_item--selected {
603
- font-weight: 500;
604
- background-color: var(--color-tab-selected-background);
605
- color: var(--color-tab-selected);
606
- }
607
- @media (hover: hover) {
608
- .flexlayout__popup_menu_item:hover {
609
- background-color: var(--color-6);
610
- }
611
- }
612
- .flexlayout__popup_menu_container {
613
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
614
- border: 1px solid var(--color-popup-border);
615
- color: var(--color-popup-unselected);
616
- background: var(--color-popup-unselected-background);
617
- border-radius: 3px;
618
- position: absolute;
619
- z-index: 1000;
620
- max-height: 50%;
621
- min-width: 100px;
622
- overflow: auto;
623
- padding: 2px;
624
- }
625
- .flexlayout__floating_window _body {
626
- height: 100%;
627
- }
628
- .flexlayout__floating_window_content {
629
- left: 0;
630
- top: 0;
631
- right: 0;
632
- bottom: 0;
633
- position: absolute;
634
- }
635
- .flexlayout__error_boundary_container {
636
- left: 0;
637
- top: 0;
638
- right: 0;
639
- bottom: 0;
640
- position: absolute;
641
- display: flex;
642
- justify-content: center;
643
- }
644
- .flexlayout__error_boundary_content {
645
- display: flex;
646
- align-items: center;
647
- }
648
- .flexlayout__border_sizer {
649
- position: absolute;
650
- top: -30000px;
651
- padding-top: 6px;
652
- padding-bottom: 5px;
653
- font-size: var(--font-size);
654
- font-family: var(--font-family);
655
- }
656
- .flexlayout__mini_scrollbar {
657
- position: absolute;
658
- background-color: var(--color-mini-scroll-indicator);
659
- border-radius: 5px;
660
- width: var(--size-mini-scroll-indicator);
661
- height: var(--size-mini-scroll-indicator);
662
- visibility: hidden;
663
- opacity: 0;
664
- transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
665
- }
666
- .flexlayout__mini_scrollbar:hover {
667
- background-color: var(--color-mini-scroll-indicator-hovered);
668
- transition: background-color 0.3s ease-in-out;
669
- }
670
- .flexlayout__mini_scrollbar_container {
671
- position: relative;
672
- display: flex;
673
- flex-grow: 1;
674
- overflow: hidden;
675
- }
676
- @media (hover: hover) {
677
- .flexlayout__mini_scrollbar_container:hover .flexlayout__mini_scrollbar {
678
- opacity: 1;
679
- visibility: visible;
680
- }
681
- }
682
-
683
- /* ======================== End of Base Classes =========================== */
684
- /*
685
- light theme overrides
686
- */
687
-
688
- /*# 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_leading {
238
+ display: flex;
239
+ }
240
+ .flexlayout__tabset_header {
241
+ display: flex;
242
+ align-items: center;
243
+ padding: 3px 3px 3px 5px;
244
+ box-sizing: border-box;
245
+ border-bottom: 1px solid var(--color-tabset-divider-line);
246
+ color: var(--color-tabset-header);
247
+ background-color: var(--color-tabset-header-background);
248
+ font-size: var(--font-size);
249
+ }
250
+ .flexlayout__tabset_header_content {
251
+ flex-grow: 1;
252
+ }
253
+ .flexlayout__tabset_tabbar_outer {
254
+ box-sizing: border-box;
255
+ background-color: var(--color-tabset-background);
256
+ overflow: hidden;
257
+ display: flex;
258
+ font-size: var(--font-size);
259
+ }
260
+ .flexlayout__tabset_tabbar_outer_top {
261
+ padding: 0px 2px 0px 2px;
262
+ border-bottom: 1px solid var(--color-tabset-divider-line);
263
+ }
264
+ .flexlayout__tabset_tabbar_outer_bottom {
265
+ padding: 0px 2px 0px 2px;
266
+ border-top: 1px solid var(--color-tabset-divider-line);
267
+ }
268
+ .flexlayout__tabset_tabbar_inner {
269
+ position: relative;
270
+ box-sizing: border-box;
271
+ display: flex;
272
+ flex-grow: 1;
273
+ scrollbar-width: none;
274
+ }
275
+ .flexlayout__tabset_tabbar_inner::-webkit-scrollbar {
276
+ display: none;
277
+ }
278
+ .flexlayout__tabset_tabbar_inner_tab_container {
279
+ position: relative;
280
+ display: flex;
281
+ padding-left: 4px;
282
+ padding-right: 4px;
283
+ box-sizing: border-box;
284
+ white-space: nowrap;
285
+ }
286
+ .flexlayout__tabset_tabbar_inner_tab_container_top {
287
+ border-top: 2px solid transparent;
288
+ }
289
+ .flexlayout__tabset_tabbar_inner_tab_container_bottom {
290
+ border-bottom: 2px solid transparent;
291
+ }
292
+ .flexlayout__tabset-selected {
293
+ background-color: var(--color-tabset-background-selected);
294
+ }
295
+ .flexlayout__tabset-maximized {
296
+ background-color: var(--color-tabset-background-maximized);
297
+ }
298
+ .flexlayout__tab_button_stamp {
299
+ display: inline-flex;
300
+ align-items: center;
301
+ gap: 0.3em;
302
+ white-space: nowrap;
303
+ box-sizing: border-box;
304
+ }
305
+ .flexlayout__tab {
306
+ overflow: hidden;
307
+ box-sizing: border-box;
308
+ background-color: var(--color-tab-content);
309
+ color: var(--color-text);
310
+ position: relative;
311
+ }
312
+ .flexlayout__tab_moveable {
313
+ position: relative;
314
+ height: 100%;
315
+ min-width: 1px;
316
+ min-height: 1px;
317
+ overflow: auto;
318
+ box-sizing: border-box;
319
+ }
320
+ .flexlayout__tab_overlay {
321
+ z-index: 20;
322
+ position: absolute;
323
+ top: 0;
324
+ left: 0;
325
+ right: 0;
326
+ bottom: 0;
327
+ background-color: rgba(0, 0, 0, 0.2392156863);
328
+ }
329
+ .flexlayout__tab_button {
330
+ display: flex;
331
+ gap: 0.3em;
332
+ align-items: center;
333
+ box-sizing: border-box;
334
+ padding: 3px 0.5em;
335
+ cursor: pointer;
336
+ }
337
+ .flexlayout__tab_button_stretch {
338
+ background-color: transparent;
339
+ color: var(--color-tab-selected);
340
+ width: 100%;
341
+ padding: 3px 0em;
342
+ text-wrap: nowrap;
343
+ display: flex;
344
+ gap: 0.3em;
345
+ align-items: center;
346
+ box-sizing: border-box;
347
+ cursor: pointer;
348
+ }
349
+ @media (hover: hover) {
350
+ .flexlayout__tab_button_stretch:hover {
351
+ color: var(--color-tab-selected);
352
+ }
353
+ }
354
+ .flexlayout__tab_button--selected {
355
+ background-color: var(--color-tab-selected-background);
356
+ color: var(--color-tab-selected);
357
+ }
358
+ @media (hover: hover) {
359
+ .flexlayout__tab_button:hover {
360
+ color: var(--color-tab-selected);
361
+ }
362
+ }
363
+ .flexlayout__tab_button--unselected {
364
+ background-color: var(--color-tab-unselected-background);
365
+ color: var(--color-tab-unselected);
366
+ }
367
+ .flexlayout__tab_button_leading {
368
+ display: flex;
369
+ }
370
+ .flexlayout__tab_button_content {
371
+ display: flex;
372
+ text-wrap: nowrap;
373
+ }
374
+ .flexlayout__tab_button_textbox {
375
+ border: none;
376
+ font-family: var(--font-family);
377
+ font-size: var(--font-size);
378
+ color: var(--color-tab-textbox);
379
+ background-color: var(--color-tab-textbox-background);
380
+ border: 1px inset var(--color-1);
381
+ border-radius: 3px;
382
+ width: 10em;
383
+ }
384
+ .flexlayout__tab_button_textbox:focus {
385
+ outline: none;
386
+ }
387
+ .flexlayout__tab_button_trailing {
388
+ display: flex;
389
+ visibility: hidden;
390
+ border-radius: 4px;
391
+ }
392
+ .flexlayout__tab_button_trailing:hover {
393
+ background-color: var(--color-toolbar-button-hover);
394
+ }
395
+ @media (hover: hover) {
396
+ .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
397
+ visibility: visible;
398
+ }
399
+ }
400
+ .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
401
+ visibility: visible;
402
+ }
403
+ .flexlayout__tab_button_overflow {
404
+ display: flex;
405
+ align-items: center;
406
+ border: none;
407
+ color: var(--color-overflow);
408
+ font-size: inherit;
409
+ background-color: transparent;
410
+ width: 2em;
411
+ overflow: hidden;
412
+ }
413
+ .flexlayout__tab_toolbar {
414
+ display: flex;
415
+ align-items: center;
416
+ gap: 0.3em;
417
+ padding-left: 0.5em;
418
+ padding-right: 0.3em;
419
+ }
420
+ .flexlayout__tab_toolbar_icon {
421
+ border: none;
422
+ outline: none;
423
+ font-size: inherit;
424
+ margin: 0px;
425
+ background-color: transparent;
426
+ padding: 1px;
427
+ }
428
+ .flexlayout__tab_toolbar_button {
429
+ border: none;
430
+ outline: none;
431
+ font-size: inherit;
432
+ margin: 0px;
433
+ background-color: transparent;
434
+ border-radius: 4px;
435
+ padding: 1px;
436
+ }
437
+ @media (hover: hover) {
438
+ .flexlayout__tab_toolbar_button:hover {
439
+ background-color: var(--color-toolbar-button-hover);
440
+ }
441
+ }
442
+ .flexlayout__tab_toolbar_sticky_buttons_container {
443
+ display: flex;
444
+ gap: 0.3em;
445
+ padding-left: 5px;
446
+ align-items: center;
447
+ }
448
+ .flexlayout__border {
449
+ box-sizing: border-box;
450
+ overflow: hidden;
451
+ display: flex;
452
+ font-size: var(--font-size);
453
+ font-family: var(--font-family);
454
+ color: var(--color-border);
455
+ background-color: var(--color-border-background);
456
+ }
457
+ .flexlayout__border_tab_contents {
458
+ box-sizing: border-box;
459
+ overflow: hidden;
460
+ background-color: var(--color-border-tab-content);
461
+ }
462
+ .flexlayout__border_leading {
463
+ display: flex;
464
+ }
465
+ .flexlayout__border_top {
466
+ border-bottom: 1px solid var(--color-border-divider-line);
467
+ align-items: center;
468
+ }
469
+ .flexlayout__border_bottom {
470
+ border-top: 1px solid var(--color-border-divider-line);
471
+ align-items: center;
472
+ }
473
+ .flexlayout__border_left {
474
+ border-right: 1px solid var(--color-border-divider-line);
475
+ align-content: center;
476
+ flex-direction: column;
477
+ }
478
+ .flexlayout__border_right {
479
+ border-left: 1px solid var(--color-border-divider-line);
480
+ align-content: center;
481
+ flex-direction: column;
482
+ }
483
+ .flexlayout__border_inner {
484
+ position: relative;
485
+ box-sizing: border-box;
486
+ align-items: center;
487
+ display: flex;
488
+ flex-grow: 1;
489
+ scrollbar-width: none;
490
+ }
491
+ .flexlayout__border_inner::-webkit-scrollbar {
492
+ display: none;
493
+ }
494
+ .flexlayout__border_inner_tab_container {
495
+ white-space: nowrap;
496
+ display: flex;
497
+ padding-left: 2px;
498
+ padding-right: 2px;
499
+ box-sizing: border-box;
500
+ position: absolute;
501
+ }
502
+ .flexlayout__border_inner_tab_container_right {
503
+ transform-origin: top left;
504
+ transform: rotate(90deg);
505
+ }
506
+ .flexlayout__border_inner_tab_container_left {
507
+ flex-direction: row-reverse;
508
+ transform-origin: top right;
509
+ transform: rotate(-90deg);
510
+ }
511
+ .flexlayout__border_tab_divider {
512
+ width: 4px;
513
+ }
514
+ .flexlayout__border_button {
515
+ display: flex;
516
+ gap: 0.3em;
517
+ align-items: center;
518
+ cursor: pointer;
519
+ padding: 3px 0.5em;
520
+ margin: 2px 0px;
521
+ box-sizing: border-box;
522
+ white-space: nowrap;
523
+ }
524
+ .flexlayout__border_button--selected {
525
+ background-color: var(--color-border-tab-selected-background);
526
+ color: var(--color-border-tab-selected);
527
+ }
528
+ @media (hover: hover) {
529
+ .flexlayout__border_button:hover {
530
+ color: var(--color-border-tab-selected);
531
+ }
532
+ }
533
+ .flexlayout__border_button--unselected {
534
+ background-color: var(--color-border-tab-unselected-background);
535
+ color: var(--color-border-tab-unselected);
536
+ }
537
+ .flexlayout__border_button_leading {
538
+ display: flex;
539
+ }
540
+ .flexlayout__border_button_content {
541
+ display: flex;
542
+ }
543
+ .flexlayout__border_button_trailing {
544
+ display: flex;
545
+ border-radius: 4px;
546
+ visibility: hidden;
547
+ }
548
+ @media (hover: hover) {
549
+ .flexlayout__border_button:hover .flexlayout__border_button_trailing {
550
+ visibility: visible;
551
+ }
552
+ }
553
+ .flexlayout__border_button--selected .flexlayout__border_button_trailing {
554
+ visibility: visible;
555
+ }
556
+ .flexlayout__border_toolbar {
557
+ display: flex;
558
+ gap: 0.3em;
559
+ align-items: center;
560
+ }
561
+ .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
562
+ flex-direction: column;
563
+ padding-top: 0.5em;
564
+ padding-bottom: 0.3em;
565
+ }
566
+ .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
567
+ padding-left: 0.5em;
568
+ padding-right: 0.3em;
569
+ }
570
+ .flexlayout__border_toolbar_button {
571
+ border: none;
572
+ outline: none;
573
+ font-size: inherit;
574
+ background-color: transparent;
575
+ border-radius: 4px;
576
+ padding: 1px;
577
+ }
578
+ @media (hover: hover) {
579
+ .flexlayout__border_toolbar_button:hover {
580
+ background-color: var(--color-toolbar-button-hover);
581
+ }
582
+ }
583
+ .flexlayout__border_toolbar_button_overflow {
584
+ display: flex;
585
+ align-items: center;
586
+ border: none;
587
+ color: var(--color-overflow);
588
+ font-size: inherit;
589
+ background-color: transparent;
590
+ width: 1.5em;
591
+ }
592
+ .flexlayout__popup_menu {
593
+ font-size: var(--font-size);
594
+ font-family: var(--font-family);
595
+ }
596
+ .flexlayout__popup_menu_item {
597
+ padding: 2px 0.5em;
598
+ white-space: nowrap;
599
+ cursor: pointer;
600
+ border-radius: 2px;
601
+ }
602
+ .flexlayout__popup_menu_item--selected {
603
+ font-weight: 500;
604
+ background-color: var(--color-tab-selected-background);
605
+ color: var(--color-tab-selected);
606
+ }
607
+ @media (hover: hover) {
608
+ .flexlayout__popup_menu_item:hover {
609
+ background-color: var(--color-6);
610
+ }
611
+ }
612
+ .flexlayout__popup_menu_container {
613
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
614
+ border: 1px solid var(--color-popup-border);
615
+ color: var(--color-popup-unselected);
616
+ background: var(--color-popup-unselected-background);
617
+ border-radius: 3px;
618
+ position: absolute;
619
+ z-index: 1000;
620
+ max-height: 50%;
621
+ min-width: 100px;
622
+ overflow: auto;
623
+ padding: 2px;
624
+ }
625
+ .flexlayout__floating_window _body {
626
+ height: 100%;
627
+ }
628
+ .flexlayout__floating_window_content {
629
+ left: 0;
630
+ top: 0;
631
+ right: 0;
632
+ bottom: 0;
633
+ position: absolute;
634
+ }
635
+ .flexlayout__error_boundary_container {
636
+ left: 0;
637
+ top: 0;
638
+ right: 0;
639
+ bottom: 0;
640
+ position: absolute;
641
+ display: flex;
642
+ justify-content: center;
643
+ }
644
+ .flexlayout__error_boundary_content {
645
+ display: flex;
646
+ align-items: center;
647
+ }
648
+ .flexlayout__border_sizer {
649
+ position: absolute;
650
+ top: -30000px;
651
+ padding-top: 6px;
652
+ padding-bottom: 5px;
653
+ font-size: var(--font-size);
654
+ font-family: var(--font-family);
655
+ }
656
+ .flexlayout__mini_scrollbar {
657
+ position: absolute;
658
+ background-color: var(--color-mini-scroll-indicator);
659
+ border-radius: 5px;
660
+ width: var(--size-mini-scroll-indicator);
661
+ height: var(--size-mini-scroll-indicator);
662
+ visibility: hidden;
663
+ opacity: 0;
664
+ transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
665
+ }
666
+ .flexlayout__mini_scrollbar:hover {
667
+ background-color: var(--color-mini-scroll-indicator-hovered);
668
+ transition: background-color 0.3s ease-in-out;
669
+ }
670
+ .flexlayout__mini_scrollbar_container {
671
+ position: relative;
672
+ display: flex;
673
+ flex-grow: 1;
674
+ overflow: hidden;
675
+ }
676
+ @media (hover: hover) {
677
+ .flexlayout__mini_scrollbar_container:hover .flexlayout__mini_scrollbar {
678
+ opacity: 1;
679
+ visibility: visible;
680
+ }
681
+ }
682
+
683
+ /* ======================== End of Base Classes =========================== */
684
+ /*
685
+ light theme overrides
686
+ */
687
+
688
+ /*# sourceMappingURL=light.css.map */