flexlayout-react 0.8.15 → 0.8.16

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