flexlayout-react 0.8.4 → 0.8.6

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