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