@likec4/styles 1.36.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/recipes/compound-node.d.ts +30 -0
- package/dist/recipes/compound-node.mjs +39 -0
- package/dist/recipes/edge-label.d.ts +4 -0
- package/dist/recipes/edge-label.mjs +7 -1
- package/dist/recipes/element-shape-recipe.d.ts +30 -0
- package/dist/recipes/element-shape-recipe.mjs +29 -0
- package/dist/recipes/index.d.ts +2 -0
- package/dist/recipes/index.mjs +2 -0
- package/dist/styles.css +802 -678
- package/dist/tokens/index.mjs +5 -5
- package/dist/types/conditions.d.ts +5 -5
- package/dist/types/prop-type.d.ts +2 -2
- package/dist/types/style-props.d.ts +2 -2
- package/package.json +3 -3
- package/preset.d.mts +23 -1
- package/preset.mjs +548 -89
package/dist/styles.css
CHANGED
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
--likec4-palette-relation-stroke: #3b82f6;
|
|
100
100
|
--likec4-palette-relation-label: #60a5fa;
|
|
101
101
|
--likec4-palette-relation-label-bg: #172554;
|
|
102
|
+
--likec4-palette-outline: var(--likec4-palette-loContrast);
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
@property --likec4-text-size {
|
|
@@ -357,11 +358,11 @@
|
|
|
357
358
|
--durations-slower: 400ms;
|
|
358
359
|
--durations-slowest: 500ms;
|
|
359
360
|
--shadows-none: none;
|
|
360
|
-
--shadows-xs: 0 1px 3px
|
|
361
|
-
--shadows-sm: 0 1px 3px
|
|
362
|
-
--shadows-md: 0 1px 3px
|
|
363
|
-
--shadows-lg: 0 1px 3px
|
|
364
|
-
--shadows-xl: 0 1px 3px
|
|
361
|
+
--shadows-xs: 0 1px 3px rgb(0 0 0/5%), 0 1px 2px rgb(0 0 0/10%);
|
|
362
|
+
--shadows-sm: 0 1px 3px rgb(0 0 0/5%), 0 10px 15px -5px rgb(0 0 0/5%), 0 7px 7px -5px rgb(0 0 0/4%);
|
|
363
|
+
--shadows-md: 0 1px 3px rgb(0 0 0/5%), 0 20px 25px -5px rgb(0 0 0/5%), 0 10px 10px -5px rgb(0 0 0/4%);
|
|
364
|
+
--shadows-lg: 0 1px 3px rgb(0 0 0/5%), 0 28px 23px -7px rgb(0 0 0/5%), 0 12px 12px -7px rgb(0 0 0/4%);
|
|
365
|
+
--shadows-xl: 0 1px 3px rgb(0 0 0/5%), 0 36px 28px -7px rgb(0 0 0/5%), 0 17px 17px -7px rgb(0 0 0/4%);
|
|
365
366
|
--breakpoints-xs: 36em;
|
|
366
367
|
--breakpoints-sm: 48em;
|
|
367
368
|
--breakpoints-md: 62em;
|
|
@@ -3286,6 +3287,16 @@
|
|
|
3286
3287
|
--colors-likec4-panel-border: color-mix(in srgb, var(--colors-mantine-colors-default-border) 30%, transparent)
|
|
3287
3288
|
}
|
|
3288
3289
|
|
|
3290
|
+
@keyframes indicatorOpacity {
|
|
3291
|
+
0% {
|
|
3292
|
+
opacity: 0.9;
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
100% {
|
|
3296
|
+
opacity: 0.6;
|
|
3297
|
+
}
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3289
3300
|
@keyframes indicatorStrokeOpacity {
|
|
3290
3301
|
0% {
|
|
3291
3302
|
stroke-opacity: 0.8;
|
|
@@ -3325,19 +3336,29 @@
|
|
|
3325
3336
|
|
|
3326
3337
|
.likec4-markdown-block {
|
|
3327
3338
|
--text-fz: 1rem;
|
|
3328
|
-
--typography-spacing: calc(0.75 * var(--text-fz) * var(--mantine-scale, 1));
|
|
3329
3339
|
--text-fz-sm: calc(var(--text-fz) * var(--mantine-scale, 1) / 1.125);
|
|
3330
3340
|
--text-fz-md: calc(var(--text-fz) * var(--mantine-scale, 1));
|
|
3341
|
+
--typography-spacing: calc(0.75 * var(--text-fz-md));
|
|
3331
3342
|
--text-fw-headings: 600;
|
|
3332
|
-
pointer-events: all;
|
|
3333
3343
|
font-size: var(--text-fz-md);
|
|
3334
|
-
|
|
3344
|
+
line-height: var(--mantine-line-height);
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
[data-mantine-color-scheme="light"] .likec4-markdown-block {
|
|
3348
|
+
--code-background: var(--mantine-color-gray-2);
|
|
3349
|
+
--code-color: var(--mantine-color-black);
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3352
|
+
[data-mantine-color-scheme="dark"] .likec4-markdown-block {
|
|
3353
|
+
--code-background: var(--mantine-color-dark-8);
|
|
3354
|
+
--code-color: var(--mantine-color-white);
|
|
3335
3355
|
}
|
|
3336
3356
|
|
|
3337
3357
|
.likec4-markdown-block :where(hr) {
|
|
3338
|
-
margin: var(--typography-spacing);
|
|
3339
3358
|
border: var(--borders-none);
|
|
3340
3359
|
border-bottom: 1px solid;
|
|
3360
|
+
margin-top: calc(var(--typography-spacing) / 2);
|
|
3361
|
+
margin-bottom: calc(var(--typography-spacing) / 2);
|
|
3341
3362
|
}
|
|
3342
3363
|
|
|
3343
3364
|
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(hr) {
|
|
@@ -3349,49 +3370,36 @@
|
|
|
3349
3370
|
}
|
|
3350
3371
|
|
|
3351
3372
|
.likec4-markdown-block :where(pre) {
|
|
3352
|
-
padding: var(--mantine-spacing-xs);
|
|
3353
3373
|
margin: var(--spacing-0);
|
|
3354
|
-
|
|
3355
|
-
|
|
3374
|
+
padding-inline: var(--spacing-3);
|
|
3375
|
+
padding-block: var(--spacing-2);
|
|
3376
|
+
border-radius: var(--radii-sm);
|
|
3377
|
+
line-height: var(--mantine-line-height-xs);
|
|
3356
3378
|
font-family: var(--mantine-font-family-monospace);
|
|
3357
3379
|
font-size: var(--text-fz-sm);
|
|
3358
|
-
|
|
3359
|
-
|
|
3380
|
+
background-color: var(--code-background);
|
|
3381
|
+
color: var(--code-color);
|
|
3382
|
+
margin-top: var(--typography-spacing);
|
|
3383
|
+
margin-bottom: var(--typography-spacing);
|
|
3360
3384
|
overflow-x: auto;
|
|
3361
3385
|
}
|
|
3362
3386
|
|
|
3363
|
-
.likec4-markdown-block :where(pre) :where(code) {
|
|
3364
|
-
padding: var(--spacing-0);
|
|
3365
|
-
border: 0;
|
|
3366
|
-
border-radius: var(--radii-0);
|
|
3367
|
-
background-color: var(--colors-transparent);
|
|
3368
|
-
color: inherit;
|
|
3369
|
-
}
|
|
3370
|
-
|
|
3371
|
-
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(pre) {
|
|
3372
|
-
background-color: var(--colors-mantine-colors-gray\[0\]);
|
|
3373
|
-
}
|
|
3374
|
-
|
|
3375
|
-
[data-mantine-color-scheme="dark"] .likec4-markdown-block :where(pre) {
|
|
3376
|
-
background-color: var(--colors-mantine-colors-dark\[8\]);
|
|
3377
|
-
}
|
|
3378
|
-
|
|
3379
3387
|
.likec4-markdown-block :where(code) {
|
|
3380
3388
|
padding: 1px 4px;
|
|
3381
|
-
border-radius:
|
|
3389
|
+
border-radius: var(--radii-xs);
|
|
3382
3390
|
line-height: var(--line-heights-1);
|
|
3383
3391
|
font-family: var(--mantine-font-family-monospace);
|
|
3384
3392
|
font-size: var(--text-fz-sm);
|
|
3393
|
+
background-color: var(--code-background);
|
|
3394
|
+
color: var(--code-color);
|
|
3385
3395
|
}
|
|
3386
3396
|
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
background-color: var(--colors-mantine-colors-dark\[5\]);
|
|
3394
|
-
color: var(--colors-mantine-colors-white);
|
|
3397
|
+
.likec4-markdown-block :where(pre code) {
|
|
3398
|
+
padding: var(--spacing-0);
|
|
3399
|
+
border: 0;
|
|
3400
|
+
border-radius: var(--radii-0);
|
|
3401
|
+
background-color: var(--colors-transparent);
|
|
3402
|
+
color: inherit;
|
|
3395
3403
|
}
|
|
3396
3404
|
|
|
3397
3405
|
.likec4-markdown-block :where(blockquote) {
|
|
@@ -3399,15 +3407,14 @@
|
|
|
3399
3407
|
padding: var(--spacing-xs);
|
|
3400
3408
|
border-radius: var(--mantine-radius-sm);
|
|
3401
3409
|
font-size: var(--text-fz-md);
|
|
3402
|
-
line-height: var(--mantine-line-height);
|
|
3403
3410
|
}
|
|
3404
3411
|
|
|
3405
3412
|
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(blockquote) {
|
|
3406
|
-
background-color: var(--
|
|
3413
|
+
background-color: var(--mantine-color-gray-1);
|
|
3407
3414
|
}
|
|
3408
3415
|
|
|
3409
3416
|
[data-mantine-color-scheme="dark"] .likec4-markdown-block :where(blockquote) {
|
|
3410
|
-
background-color: var(--
|
|
3417
|
+
background-color: var(--mantine-color-dark-5);
|
|
3411
3418
|
}
|
|
3412
3419
|
|
|
3413
3420
|
.likec4-markdown-block :where(blockquote):not(:first-child) {
|
|
@@ -3433,38 +3440,37 @@
|
|
|
3433
3440
|
}
|
|
3434
3441
|
|
|
3435
3442
|
.likec4-markdown-block :is(h1) {
|
|
3436
|
-
font-size: calc(1.476 * var(--text-fz
|
|
3443
|
+
font-size: calc(1.476 * var(--text-fz-md));
|
|
3437
3444
|
font-weight: var(--text-fw-headings);
|
|
3438
3445
|
}
|
|
3439
3446
|
|
|
3440
3447
|
.likec4-markdown-block :is(h2) {
|
|
3441
|
-
font-size: calc(1.383 * var(--text-fz
|
|
3448
|
+
font-size: calc(1.383 * var(--text-fz-md));
|
|
3442
3449
|
font-weight: var(--text-fw-headings);
|
|
3443
3450
|
}
|
|
3444
3451
|
|
|
3445
3452
|
.likec4-markdown-block :is(h3) {
|
|
3446
|
-
font-size: calc(1.296 * var(--text-fz
|
|
3453
|
+
font-size: calc(1.296 * var(--text-fz-md));
|
|
3447
3454
|
font-weight: var(--text-fw-headings);
|
|
3448
3455
|
}
|
|
3449
3456
|
|
|
3450
3457
|
.likec4-markdown-block :is(h4) {
|
|
3451
|
-
font-size: calc(1.215 * var(--text-fz
|
|
3458
|
+
font-size: calc(1.215 * var(--text-fz-md));
|
|
3452
3459
|
font-weight: var(--text-fw-headings);
|
|
3453
3460
|
}
|
|
3454
3461
|
|
|
3455
3462
|
.likec4-markdown-block :is(h5) {
|
|
3456
|
-
font-size: calc(1.138 * var(--text-fz
|
|
3463
|
+
font-size: calc(1.138 * var(--text-fz-md));
|
|
3457
3464
|
font-weight: var(--text-fw-headings);
|
|
3458
3465
|
}
|
|
3459
3466
|
|
|
3460
3467
|
.likec4-markdown-block :is(h6) {
|
|
3461
|
-
font-size: calc(1.067 * var(--text-fz
|
|
3468
|
+
font-size: calc(1.067 * var(--text-fz-md));
|
|
3462
3469
|
font-weight: var(--text-fw-headings);
|
|
3463
3470
|
}
|
|
3464
3471
|
|
|
3465
3472
|
.likec4-markdown-block :where(p) {
|
|
3466
3473
|
font-size: var(--text-fz-md);
|
|
3467
|
-
white-space: preserve-breaks;
|
|
3468
3474
|
margin-top: var(--spacing-0);
|
|
3469
3475
|
margin-bottom: var(--typography-spacing);
|
|
3470
3476
|
}
|
|
@@ -3497,7 +3503,7 @@
|
|
|
3497
3503
|
border-collapse: collapse;
|
|
3498
3504
|
caption-side: bottom;
|
|
3499
3505
|
width: 100%;
|
|
3500
|
-
margin-bottom: var(--
|
|
3506
|
+
margin-bottom: var(--typography-spacing);
|
|
3501
3507
|
}
|
|
3502
3508
|
|
|
3503
3509
|
[data-mantine-color-scheme="light"] .likec4-markdown-block :where(table) {
|
|
@@ -3509,14 +3515,14 @@
|
|
|
3509
3515
|
}
|
|
3510
3516
|
|
|
3511
3517
|
.likec4-markdown-block :where(table) :where(th) {
|
|
3512
|
-
padding: var(--
|
|
3518
|
+
padding: var(--typography-spacing);
|
|
3513
3519
|
text-align: left;
|
|
3514
3520
|
font-weight: bold;
|
|
3515
3521
|
font-size: var(--text-fz-sm);
|
|
3516
3522
|
}
|
|
3517
3523
|
|
|
3518
3524
|
.likec4-markdown-block :where(table) :where(td) {
|
|
3519
|
-
padding: var(--
|
|
3525
|
+
padding: var(--typography-spacing);
|
|
3520
3526
|
border-bottom: 1px solid;
|
|
3521
3527
|
border-color: var(--table-border-color);
|
|
3522
3528
|
font-size: var(--text-fz-sm);
|
|
@@ -3539,7 +3545,7 @@
|
|
|
3539
3545
|
.likec4-markdown-block :where(table) :where(caption) {
|
|
3540
3546
|
font-size: var(--text-fz-sm);
|
|
3541
3547
|
color: var(--mantine-color-dimmed);
|
|
3542
|
-
margin-top: var(--
|
|
3548
|
+
margin-top: calc(.5 * var(--typography-spacing) + 1px);
|
|
3543
3549
|
}
|
|
3544
3550
|
|
|
3545
3551
|
.likec4-markdown-block :first-child {
|
|
@@ -3574,17 +3580,17 @@
|
|
|
3574
3580
|
opacity: 0.75;
|
|
3575
3581
|
}
|
|
3576
3582
|
|
|
3577
|
-
:where([data-likec4-hovered="true"]) .action-btn {
|
|
3583
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .action-btn {
|
|
3578
3584
|
--ai-bg: var(--actionbtn-bg-hovered);
|
|
3579
3585
|
opacity: 1;
|
|
3580
3586
|
color: var(--actionbtn-color-hovered);
|
|
3581
3587
|
}
|
|
3582
3588
|
|
|
3583
|
-
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .action-btn {
|
|
3589
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .action-btn {
|
|
3584
3590
|
display: none;
|
|
3585
3591
|
}
|
|
3586
3592
|
|
|
3587
|
-
:where([data-likec4-zoom-small]) .action-btn {
|
|
3593
|
+
:where([data-likec4-zoom-small="true"]) .action-btn {
|
|
3588
3594
|
display: none;
|
|
3589
3595
|
}
|
|
3590
3596
|
|
|
@@ -3598,6 +3604,177 @@
|
|
|
3598
3604
|
color: var(--actionbtn-color-hovered-btn);
|
|
3599
3605
|
}
|
|
3600
3606
|
|
|
3607
|
+
.likec4-compound-node {
|
|
3608
|
+
--_border-width: 3px;
|
|
3609
|
+
--_border-radius: 6px;
|
|
3610
|
+
--_compound-transparency: 100%;
|
|
3611
|
+
--_border-transparency: 100%;
|
|
3612
|
+
--_indicator-spacing: calc(var(--_border-width) + 2px);
|
|
3613
|
+
--_compound-color: var(--likec4-palette-loContrast);
|
|
3614
|
+
padding: var(--spacing-0);
|
|
3615
|
+
margin: var(--spacing-0);
|
|
3616
|
+
border-style: solid;
|
|
3617
|
+
border-width: var(--_border-width);
|
|
3618
|
+
border-radius: var(--_border-radius);
|
|
3619
|
+
position: relative;
|
|
3620
|
+
pointer-events: none;
|
|
3621
|
+
background-clip: padding-box;
|
|
3622
|
+
-webkit-background-clip: padding-box;
|
|
3623
|
+
box-sizing: border-box;
|
|
3624
|
+
color: var(--_compound-color);
|
|
3625
|
+
width: 100%;
|
|
3626
|
+
height: 100%;
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
[data-mantine-color-scheme="light"] .likec4-compound-node {
|
|
3630
|
+
--likec4-palette-outline: color-mix(in srgb, var(--likec4-palette-stroke) 80%, var(--likec4-palette-hiContrast));
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
[data-mantine-color-scheme="dark"] .likec4-compound-node {
|
|
3634
|
+
--likec4-palette-outline: color-mix(in srgb, var(--likec4-palette-stroke) 60%, var(--likec4-palette-hiContrast));
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
.likec4-compound-node::after {
|
|
3638
|
+
border-style: solid;
|
|
3639
|
+
border-width: calc(var(--_border-width) + 1px);
|
|
3640
|
+
border-radius: calc(var(--_border-radius) + 4px);
|
|
3641
|
+
border-color: var(--likec4-palette-outline);
|
|
3642
|
+
position: absolute;
|
|
3643
|
+
content: " ";
|
|
3644
|
+
pointer-events: none;
|
|
3645
|
+
display: none;
|
|
3646
|
+
animation-duration: 1s;
|
|
3647
|
+
animation-iteration-count: infinite;
|
|
3648
|
+
animation-direction: alternate;
|
|
3649
|
+
animation-name: indicatorOpacity;
|
|
3650
|
+
animation-play-state: paused;
|
|
3651
|
+
top: calc(-1 * var(--_indicator-spacing));
|
|
3652
|
+
left: calc(-1 * var(--_indicator-spacing));
|
|
3653
|
+
width: calc(100% + 2 * var(--_indicator-spacing));
|
|
3654
|
+
height: calc(100% + 2 * var(--_indicator-spacing));
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) .likec4-compound-node::after {
|
|
3658
|
+
display: block;
|
|
3659
|
+
animation-play-state: running;
|
|
3660
|
+
}
|
|
3661
|
+
|
|
3662
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-compound-node::after {
|
|
3663
|
+
display: block;
|
|
3664
|
+
animation-play-state: running;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .likec4-compound-node::after {
|
|
3668
|
+
animation-play-state: paused;
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
.likec4-compound-node:has(.likec4-compound-navigation) .likec4-compound-title-container {
|
|
3672
|
+
padding-left: 24px;
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
.likec4-compound-node .action-btn {
|
|
3676
|
+
--actionbtn-color: var(--_compound-color);
|
|
3677
|
+
--actionbtn-color-hovered: var(--_compound-color);
|
|
3678
|
+
--actionbtn-color-hovered-btn: color-mix(in srgb, var(--_compound-color) 80%, #fff);
|
|
3679
|
+
opacity: 0.6;
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .likec4-compound-node .action-btn {
|
|
3683
|
+
transition: all var(--durations-fast) var(--easings-in-out);
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .likec4-compound-node .action-btn {
|
|
3687
|
+
opacity: 0.75;
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-compound-node .action-btn {
|
|
3691
|
+
opacity: 0.75;
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
.likec4-compound-node .action-btn:is(:hover, [data-hover]) {
|
|
3695
|
+
opacity: 1;
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
.likec4-compound-node .likec4-compound-title-container {
|
|
3699
|
+
gap: var(--spacing-1\.5);
|
|
3700
|
+
position: absolute;
|
|
3701
|
+
display: flex;
|
|
3702
|
+
align-items: center;
|
|
3703
|
+
left: var(--spacing-2\.5);
|
|
3704
|
+
top: var(--spacing-0\.5);
|
|
3705
|
+
right: 30px;
|
|
3706
|
+
width: auto;
|
|
3707
|
+
min-height: 30px;
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
:where(.react-flow__node.draggable) .likec4-compound-node .likec4-compound-title-container {
|
|
3711
|
+
pointer-events: all;
|
|
3712
|
+
cursor: grab;
|
|
3713
|
+
}
|
|
3714
|
+
|
|
3715
|
+
.likec4-compound-node .likec4-compound-title {
|
|
3716
|
+
flex: 1 1 0%;
|
|
3717
|
+
font-family: var(--fonts-likec4-compound);
|
|
3718
|
+
font-weight: 600;
|
|
3719
|
+
font-size: 15px;
|
|
3720
|
+
text-transform: uppercase;
|
|
3721
|
+
letter-spacing: 0.25px;
|
|
3722
|
+
line-height: var(--line-heights-1);
|
|
3723
|
+
color: var(--_compound-color);
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
.likec4-compound-node .likec4-compound-icon {
|
|
3727
|
+
flex: 0 0 20px;
|
|
3728
|
+
display: flex;
|
|
3729
|
+
align-items: center;
|
|
3730
|
+
justify-content: center;
|
|
3731
|
+
mix-blend-mode: hard-light;
|
|
3732
|
+
height: 20px;
|
|
3733
|
+
width: 20px;
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-compound-node .likec4-compound-icon {
|
|
3737
|
+
mix-blend-mode: normal;
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
.likec4-compound-node .likec4-compound-icon svg,.likec4-compound-node .likec4-compound-icon img {
|
|
3741
|
+
pointer-events: none;
|
|
3742
|
+
filter: drop-shadow(0 0 3px rgb(0 0 0 / 12%))
|
|
3743
|
+
drop-shadow(0 1px 8px rgb(0 0 0 / 8%))
|
|
3744
|
+
drop-shadow(1px 1px 16px rgb(0 0 0 / 3%));
|
|
3745
|
+
width: 100%;
|
|
3746
|
+
height: auto;
|
|
3747
|
+
max-height: 100%;
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3750
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-compound-node .likec4-compound-icon svg,.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-compound-node .likec4-compound-icon img {
|
|
3751
|
+
filter: none;
|
|
3752
|
+
}
|
|
3753
|
+
|
|
3754
|
+
.likec4-compound-node .likec4-compound-icon img {
|
|
3755
|
+
object-fit: contain;
|
|
3756
|
+
}
|
|
3757
|
+
|
|
3758
|
+
.likec4-compound-node .likec4-compound-navigation {
|
|
3759
|
+
position: absolute;
|
|
3760
|
+
top: var(--spacing-1);
|
|
3761
|
+
left: var(--spacing-0\.5);
|
|
3762
|
+
}
|
|
3763
|
+
|
|
3764
|
+
:where([data-likec4-zoom-small="true"]) .likec4-compound-node .likec4-compound-navigation {
|
|
3765
|
+
display: none;
|
|
3766
|
+
}
|
|
3767
|
+
|
|
3768
|
+
.likec4-compound-node .likec4-compound-details {
|
|
3769
|
+
position: absolute;
|
|
3770
|
+
top: var(--spacing-0\.5);
|
|
3771
|
+
right: var(--spacing-0\.5);
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3774
|
+
:where([data-likec4-zoom-small="true"]) .likec4-compound-node .likec4-compound-details {
|
|
3775
|
+
display: none;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3601
3778
|
.likec4-edge-action-btn {
|
|
3602
3779
|
--ai-bg: transparent;
|
|
3603
3780
|
--ai-hover: color-mix(in srgb , var(--xy-edge-label-background-color), var(--colors-likec4-mix-color) 10%);
|
|
@@ -3611,7 +3788,7 @@
|
|
|
3611
3788
|
translate: var(--translate-x) var(--translate-y);
|
|
3612
3789
|
}
|
|
3613
3790
|
|
|
3614
|
-
:where([data-likec4-hovered="true"]) .likec4-edge-action-btn {
|
|
3791
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .likec4-edge-action-btn {
|
|
3615
3792
|
--ai-bg: var(--xy-edge-label-background-color);
|
|
3616
3793
|
opacity: 1;
|
|
3617
3794
|
}
|
|
@@ -3632,6 +3809,53 @@
|
|
|
3632
3809
|
scale: 0.9;
|
|
3633
3810
|
}
|
|
3634
3811
|
|
|
3812
|
+
.likec4-element-shape {
|
|
3813
|
+
overflow: visible;
|
|
3814
|
+
position: absolute;
|
|
3815
|
+
pointer-events: none;
|
|
3816
|
+
top: var(--spacing-0);
|
|
3817
|
+
left: var(--spacing-0);
|
|
3818
|
+
width: 100%;
|
|
3819
|
+
height: 100%;
|
|
3820
|
+
}
|
|
3821
|
+
|
|
3822
|
+
[data-mantine-color-scheme="light"] .likec4-element-shape {
|
|
3823
|
+
--likec4-palette-outline: color-mix(in srgb, var(--likec4-palette-stroke) 60%, var(--likec4-palette-hiContrast));
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
[data-mantine-color-scheme="dark"] .likec4-element-shape {
|
|
3827
|
+
--likec4-palette-outline: color-mix(in srgb, var(--likec4-palette-stroke) 30%, var(--likec4-palette-loContrast));
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3830
|
+
.likec4-element-shape .likec4-shape-outline {
|
|
3831
|
+
visibility: hidden;
|
|
3832
|
+
animation-play-state: paused;
|
|
3833
|
+
pointer-events: none;
|
|
3834
|
+
}
|
|
3835
|
+
|
|
3836
|
+
:where([data-likec4-zoom-small="true"]) .likec4-element-shape .likec4-shape-outline {
|
|
3837
|
+
visibility: hidden;
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-element-shape .likec4-shape-outline {
|
|
3841
|
+
visibility: visible;
|
|
3842
|
+
animation-play-state: running;
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) .likec4-element-shape .likec4-shape-outline {
|
|
3846
|
+
visibility: visible;
|
|
3847
|
+
animation-play-state: running;
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3850
|
+
.group:is(:focus-visible, [data-focus-visible]) .likec4-element-shape .likec4-shape-outline {
|
|
3851
|
+
visibility: visible;
|
|
3852
|
+
animation-play-state: running;
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .likec4-element-shape .likec4-shape-outline {
|
|
3856
|
+
animation-play-state: paused;
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3635
3859
|
.likec4-tag {
|
|
3636
3860
|
transition: all var(--durations-fast) var(--easings-in-out);
|
|
3637
3861
|
gap: 1px;
|
|
@@ -3672,7 +3896,7 @@
|
|
|
3672
3896
|
width: var(--likec4-icon-size);
|
|
3673
3897
|
}
|
|
3674
3898
|
|
|
3675
|
-
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .likec4-element-node-icon {
|
|
3899
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-element-node-icon {
|
|
3676
3900
|
mix-blend-mode: normal;
|
|
3677
3901
|
}
|
|
3678
3902
|
|
|
@@ -3684,7 +3908,7 @@
|
|
|
3684
3908
|
max-height: 100%;
|
|
3685
3909
|
}
|
|
3686
3910
|
|
|
3687
|
-
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .likec4-element-node-icon svg,.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .likec4-element-node-icon img {
|
|
3911
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-element-node-icon svg,.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-element-node-icon img {
|
|
3688
3912
|
filter: none;
|
|
3689
3913
|
}
|
|
3690
3914
|
|
|
@@ -3722,21 +3946,20 @@
|
|
|
3722
3946
|
}
|
|
3723
3947
|
|
|
3724
3948
|
.likec4-markdown-block--uselikec4palette_true {
|
|
3725
|
-
--
|
|
3949
|
+
--code-background: color-mix(in srgb , var(--likec4-palette-stroke) 70%, transparent);
|
|
3950
|
+
--code-color: var(--likec4-palette-loContrast);
|
|
3951
|
+
--typography-spacing: calc(0.5 * var(--text-fz-md));
|
|
3726
3952
|
}
|
|
3727
3953
|
|
|
3728
3954
|
.likec4-markdown-block--uselikec4palette_true :where(blockquote) {
|
|
3729
|
-
padding:
|
|
3955
|
+
padding: var(--spacing-xxs);
|
|
3730
3956
|
--mix-backgroundColor: color-mix(in srgb, var(--likec4-palette-stroke) 65%, transparent);
|
|
3731
3957
|
background-color: var(--mix-backgroundColor, var(--likec4-palette-stroke));
|
|
3732
3958
|
}
|
|
3733
3959
|
|
|
3734
|
-
.likec4-markdown-block--uselikec4palette_true :where(
|
|
3960
|
+
.likec4-markdown-block--uselikec4palette_true :where(hr) {
|
|
3735
3961
|
--mix-borderColor: color-mix(in srgb, var(--likec4-palette-stroke) 85%, transparent);
|
|
3736
3962
|
border-color: var(--mix-borderColor, var(--likec4-palette-stroke));
|
|
3737
|
-
color: var(--likec4-palette-loContrast);
|
|
3738
|
-
--mix-backgroundColor: color-mix(in srgb, var(--likec4-palette-stroke) 70%, transparent);
|
|
3739
|
-
background-color: var(--mix-backgroundColor, var(--likec4-palette-stroke));
|
|
3740
3963
|
}
|
|
3741
3964
|
|
|
3742
3965
|
.likec4-markdown-block--uselikec4palette_true :where(a) {
|
|
@@ -3757,11 +3980,15 @@
|
|
|
3757
3980
|
--ai-radius: var(--mantine-radius-md);
|
|
3758
3981
|
}
|
|
3759
3982
|
|
|
3983
|
+
.action-btn--variant_transparent {
|
|
3984
|
+
--actionbtn-bg-hovered: var(--actionbtn-bg-idle);
|
|
3985
|
+
}
|
|
3986
|
+
|
|
3760
3987
|
.action-btn--variant_filled {
|
|
3761
3988
|
box-shadow: 1px 1px 3px 0px transparent;
|
|
3762
3989
|
}
|
|
3763
3990
|
|
|
3764
|
-
:where([data-likec4-hovered="true"]) .action-btn--variant_filled {
|
|
3991
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .action-btn--variant_filled {
|
|
3765
3992
|
box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
|
|
3766
3993
|
}
|
|
3767
3994
|
|
|
@@ -3769,8 +3996,231 @@
|
|
|
3769
3996
|
box-shadow: var(--shadows-none);
|
|
3770
3997
|
}
|
|
3771
3998
|
|
|
3772
|
-
.
|
|
3773
|
-
|
|
3999
|
+
.likec4-compound-node--borderStyle_dashed {
|
|
4000
|
+
border-style: dashed;
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
.likec4-compound-node--borderStyle_none {
|
|
4004
|
+
--_indicator-spacing: calc(var(--_border-width) * 2);
|
|
4005
|
+
border-color: var(--colors-transparent) !important;
|
|
4006
|
+
background-clip: border-box !important;
|
|
4007
|
+
-webkit-background-clip: border-box !important;
|
|
4008
|
+
}
|
|
4009
|
+
|
|
4010
|
+
.likec4-compound-node--isTransparent_false {
|
|
4011
|
+
border-color: var(--likec4-palette-stroke);
|
|
4012
|
+
background-color: var(--likec4-palette-fill);
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .likec4-compound-node--isTransparent_false {
|
|
4016
|
+
box-shadow: 0 4px 10px 0.5px rgb(0 0 0/10%) , 0 2px 2px -1px rgb(0 0 0/40%);
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-compound-node--isTransparent_false {
|
|
4020
|
+
box-shadow: var(--shadows-none);
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .likec4-compound-node--isTransparent_false {
|
|
4024
|
+
box-shadow: var(--shadows-none) !important;
|
|
4025
|
+
}
|
|
4026
|
+
|
|
4027
|
+
.likec4-compound-node--isTransparent_true {
|
|
4028
|
+
border-color: color-mix(in srgb, var(--likec4-palette-stroke) var(--_border-transparency), transparent);
|
|
4029
|
+
background-color: color-mix(in srgb, var(--likec4-palette-fill) var(--_compound-transparency), transparent);
|
|
4030
|
+
}
|
|
4031
|
+
|
|
4032
|
+
.likec4-compound-node--inverseColor_true {
|
|
4033
|
+
--_compound-color: var(--likec4-palette-stroke);
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
[data-mantine-color-scheme="dark"] .likec4-compound-node--inverseColor_true {
|
|
4037
|
+
--_compound-color: color-mix(in srgb, var(--likec4-palette-loContrast) 60%, var(--likec4-palette-fill));
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
[data-mantine-color-scheme="dark"] .likec4-compound-node--inverseColor_true .action-btn {
|
|
4041
|
+
--actionbtn-color-hovered-btn: var(--likec4-palette-loContrast);
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
[data-mantine-color-scheme="light"] .likec4-compound-node--inverseColor_true .action-btn {
|
|
4045
|
+
--actionbtn-color: var(--likec4-palette-stroke);
|
|
4046
|
+
--actionbtn-color-hovered: var(--likec4-palette-stroke);
|
|
4047
|
+
--actionbtn-color-hovered-btn: var(--likec4-palette-hiContrast);
|
|
4048
|
+
--actionbtn-bg-hovered: var(--likec4-palette-fill)/50;
|
|
4049
|
+
--actionbtn-bg-hovered-btn: var(--likec4-palette-fill);
|
|
4050
|
+
}
|
|
4051
|
+
|
|
4052
|
+
.likec4-compound-node--borderStyle_solid {
|
|
4053
|
+
border-style: solid;
|
|
4054
|
+
}
|
|
4055
|
+
|
|
4056
|
+
.likec4-compound-node--borderStyle_dotted {
|
|
4057
|
+
border-style: dotted;
|
|
4058
|
+
}
|
|
4059
|
+
|
|
4060
|
+
.likec4-element-shape--shapetype_html {
|
|
4061
|
+
--likec4-outline-size: 4px;
|
|
4062
|
+
border-radius: 6px;
|
|
4063
|
+
transition: background-color 120ms linear, box-shadow 130ms var(--easings-in-out);
|
|
4064
|
+
background-color: var(--likec4-palette-fill);
|
|
4065
|
+
box-shadow: 0 2px 1px 0 rgb(0 0 0 / 21%),0 1px 1px 0 color-mix(in srgb, var(--likec4-palette-stroke) 40%, transparent),0 5px 3px 0 rgb(0 0 0 / 10%);
|
|
4066
|
+
transition-delay: 0ms;
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-element-shape--shapetype_html {
|
|
4070
|
+
transition: none;
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4073
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .likec4-element-shape--shapetype_html {
|
|
4074
|
+
box-shadow: 0 2px 1px 0 rgb(0 0 0 / 25%),0 8px 3px 0 rgb(0 0 0 / 10%),0 10px 10px 0 rgb(0 0 0 / 8%);
|
|
4075
|
+
}
|
|
4076
|
+
|
|
4077
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-element-shape--shapetype_html {
|
|
4078
|
+
box-shadow: var(--shadows-none);
|
|
4079
|
+
}
|
|
4080
|
+
|
|
4081
|
+
:where([data-likec4-zoom-small="true"]) .likec4-element-shape--shapetype_html {
|
|
4082
|
+
box-shadow: var(--shadows-none);
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .likec4-element-shape--shapetype_html {
|
|
4086
|
+
box-shadow: var(--shadows-none);
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4089
|
+
.likec4-element-shape--shapetype_html .likec4-shape-multiple {
|
|
4090
|
+
border-radius: 6px;
|
|
4091
|
+
position: absolute;
|
|
4092
|
+
content: " ";
|
|
4093
|
+
background-color: var(--likec4-palette-fill);
|
|
4094
|
+
z-index: -1;
|
|
4095
|
+
filter: brightness(0.65);
|
|
4096
|
+
visibility: visible;
|
|
4097
|
+
top: 14px;
|
|
4098
|
+
left: 14px;
|
|
4099
|
+
width: calc(100% - 6px);
|
|
4100
|
+
height: calc(100% - 6px);
|
|
4101
|
+
}
|
|
4102
|
+
|
|
4103
|
+
:where([data-likec4-zoom-small="true"]) .likec4-element-shape--shapetype_html .likec4-shape-multiple {
|
|
4104
|
+
visibility: hidden;
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-element-shape--shapetype_html .likec4-shape-multiple {
|
|
4108
|
+
visibility: hidden;
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4111
|
+
:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) .likec4-element-shape--shapetype_html .likec4-shape-multiple {
|
|
4112
|
+
visibility: hidden;
|
|
4113
|
+
}
|
|
4114
|
+
|
|
4115
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-element-shape--shapetype_html .likec4-shape-multiple {
|
|
4116
|
+
visibility: hidden;
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
.likec4-element-shape--shapetype_html .likec4-shape-outline {
|
|
4120
|
+
border-style: solid;
|
|
4121
|
+
border-width: var(--likec4-outline-size);
|
|
4122
|
+
border-radius: 10px;
|
|
4123
|
+
border-color: var(--likec4-palette-outline);
|
|
4124
|
+
position: absolute;
|
|
4125
|
+
content: " ";
|
|
4126
|
+
animation-duration: 1s;
|
|
4127
|
+
animation-iteration-count: infinite;
|
|
4128
|
+
animation-direction: alternate;
|
|
4129
|
+
animation-name: indicatorOpacity;
|
|
4130
|
+
top: calc(-1 * var(--likec4-outline-size));
|
|
4131
|
+
left: calc(-1 * var(--likec4-outline-size));
|
|
4132
|
+
width: calc(100% + 2 * var(--likec4-outline-size));
|
|
4133
|
+
height: calc(100% + 2 * var(--likec4-outline-size));
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
.likec4-element-shape--shapetype_svg {
|
|
4137
|
+
transition: fill 120ms linear, filter 130ms var(--easings-in-out);
|
|
4138
|
+
fill: var(--likec4-palette-fill);
|
|
4139
|
+
stroke: var(--likec4-palette-stroke);
|
|
4140
|
+
transition-delay: 0ms;
|
|
4141
|
+
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.21))
|
|
4142
|
+
drop-shadow(0 1px 1px color-mix(in srgb, var(--likec4-palette-stroke) 40%, transparent))
|
|
4143
|
+
drop-shadow(0 5px 3px rgba(0, 0, 0, 0.1));
|
|
4144
|
+
}
|
|
4145
|
+
|
|
4146
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .likec4-element-shape--shapetype_svg {
|
|
4147
|
+
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.25))
|
|
4148
|
+
drop-shadow(0 8px 3px rgba(0, 0, 0, 0.1))
|
|
4149
|
+
drop-shadow(0 10px 10px rgba(0, 0, 0, 0.05));
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-element-shape--shapetype_svg {
|
|
4153
|
+
filter: none;
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4156
|
+
:where([data-likec4-zoom-small="true"]) .likec4-element-shape--shapetype_svg {
|
|
4157
|
+
filter: none;
|
|
4158
|
+
}
|
|
4159
|
+
|
|
4160
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .likec4-element-shape--shapetype_svg {
|
|
4161
|
+
filter: none;
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4164
|
+
.likec4-element-shape--shapetype_svg [data-likec4-fill="fill"] {
|
|
4165
|
+
fill: var(--likec4-palette-fill);
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
.likec4-element-shape--shapetype_svg [data-likec4-fill="stroke"] {
|
|
4169
|
+
fill: var(--likec4-palette-stroke);
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4172
|
+
.likec4-element-shape--shapetype_svg [data-likec4-fill="mix-stroke"] {
|
|
4173
|
+
fill: color-mix(in srgb, var(--likec4-palette-stroke) 90%, var(--likec4-palette-fill));
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
.likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4177
|
+
transform-origin: 50% 50%;
|
|
4178
|
+
transform: translate(14px, 14px) perspective(300px) translateZ(-8px);
|
|
4179
|
+
filter: brightness(0.65);
|
|
4180
|
+
stroke: none;
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
:where([data-likec4-shape='queue']) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4184
|
+
transform-origin: 75% 25%;
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
:where([data-likec4-shape='cylinder']) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4188
|
+
transform-origin: 50% 100%;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
:where([data-likec4-shape='storage']) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4192
|
+
transform-origin: 50% 100%;
|
|
4193
|
+
}
|
|
4194
|
+
|
|
4195
|
+
:where([data-likec4-zoom-small="true"]) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4196
|
+
display: none;
|
|
4197
|
+
}
|
|
4198
|
+
|
|
4199
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4200
|
+
display: none;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
:where(.react-flow__node.selected, .react-flow__edge.selected) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4204
|
+
display: none;
|
|
4205
|
+
}
|
|
4206
|
+
|
|
4207
|
+
:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) .likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) {
|
|
4208
|
+
display: none;
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
.likec4-element-shape--shapetype_svg:is([data-likec4-shape-multiple="true"]) [data-likec4-fill="mix-stroke"] {
|
|
4212
|
+
fill: var(--likec4-palette-fill);
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
.likec4-element-shape--shapetype_svg .likec4-shape-outline {
|
|
4216
|
+
stroke: var(--likec4-palette-outline);
|
|
4217
|
+
fill: none;
|
|
4218
|
+
stroke-width: 8;
|
|
4219
|
+
stroke-opacity: 0.8;
|
|
4220
|
+
animation-duration: 1s;
|
|
4221
|
+
animation-iteration-count: infinite;
|
|
4222
|
+
animation-direction: alternate;
|
|
4223
|
+
animation-name: indicatorStrokeOpacity;
|
|
3774
4224
|
}
|
|
3775
4225
|
|
|
3776
4226
|
.likec4-tag--autoTextColor_false > span {
|
|
@@ -3849,9 +4299,12 @@
|
|
|
3849
4299
|
}
|
|
3850
4300
|
|
|
3851
4301
|
.likec4-edge-label__root {
|
|
4302
|
+
background: var(--xy-edge-label-background-color);
|
|
4303
|
+
border: 0px solid transparent;
|
|
3852
4304
|
padding-block: var(--spacing-1);
|
|
3853
4305
|
padding-inline: var(--spacing-1\.5);
|
|
3854
4306
|
gap: var(--spacing-0\.5);
|
|
4307
|
+
border-radius: 4px;
|
|
3855
4308
|
pointer-events: all;
|
|
3856
4309
|
font-family: var(--fonts-likec4-relation);
|
|
3857
4310
|
display: flex;
|
|
@@ -4017,10 +4470,18 @@
|
|
|
4017
4470
|
display: none;
|
|
4018
4471
|
}
|
|
4019
4472
|
|
|
4020
|
-
:where([data-likec4-zoom-small]) .likec4-el-node-data__description {
|
|
4473
|
+
:where([data-likec4-zoom-small="true"]) .likec4-el-node-data__description {
|
|
4021
4474
|
display: none;
|
|
4022
4475
|
}
|
|
4023
4476
|
|
|
4477
|
+
.likec4-el-node-data__description:not(.likec4-markdown-block) {
|
|
4478
|
+
white-space: preserve-breaks;
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
.likec4-el-node-data__description a {
|
|
4482
|
+
pointer-events: all;
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4024
4485
|
.likec4-el-node-data__technology {
|
|
4025
4486
|
flex: 0 0 auto;
|
|
4026
4487
|
text-wrap: balance;
|
|
@@ -4035,7 +4496,7 @@
|
|
|
4035
4496
|
opacity: 0.92;
|
|
4036
4497
|
}
|
|
4037
4498
|
|
|
4038
|
-
:where([data-likec4-hovered="true"]) .likec4-el-node-data__technology {
|
|
4499
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .likec4-el-node-data__technology {
|
|
4039
4500
|
opacity: 1;
|
|
4040
4501
|
}
|
|
4041
4502
|
|
|
@@ -4047,7 +4508,7 @@
|
|
|
4047
4508
|
display: none;
|
|
4048
4509
|
}
|
|
4049
4510
|
|
|
4050
|
-
:where([data-likec4-zoom-small]) .likec4-el-node-data__technology {
|
|
4511
|
+
:where([data-likec4-zoom-small="true"]) .likec4-el-node-data__technology {
|
|
4051
4512
|
display: none;
|
|
4052
4513
|
}
|
|
4053
4514
|
}
|
|
@@ -4059,6 +4520,14 @@
|
|
|
4059
4520
|
width: 100%;
|
|
4060
4521
|
}
|
|
4061
4522
|
|
|
4523
|
+
.likec4-edge-label__root--cursor_pointer {
|
|
4524
|
+
cursor: pointer;
|
|
4525
|
+
}
|
|
4526
|
+
|
|
4527
|
+
.likec4-edge-label__root--cursor_default {
|
|
4528
|
+
cursor: default;
|
|
4529
|
+
}
|
|
4530
|
+
|
|
4062
4531
|
.likec4-edge-label__root--isStepEdge_true {
|
|
4063
4532
|
padding: var(--spacing-0);
|
|
4064
4533
|
gap: var(--spacing-1);
|
|
@@ -4103,38 +4572,33 @@
|
|
|
4103
4572
|
padding-inline: var(--spacing-xs);
|
|
4104
4573
|
border-radius: var(--radii-0);
|
|
4105
4574
|
background-color: var(--colors-likec4-panel-bg);
|
|
4106
|
-
backdrop-filter: blur(10px);
|
|
4107
|
-
-webkit-backdrop-filter: blur(10px);
|
|
4108
4575
|
}
|
|
4109
4576
|
|
|
4110
|
-
|
|
4577
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .layerStyle_likec4\.panel {
|
|
4111
4578
|
border-radius: var(--radii-0);
|
|
4112
|
-
background-color: var(--colors-likec4-panel-bg-when-panning);
|
|
4113
4579
|
box-shadow: var(--shadows-none);
|
|
4580
|
+
backdrop-filter: none;
|
|
4581
|
+
-webkit-backdrop-filter: none;
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4584
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .layerStyle_likec4\.panel {
|
|
4585
|
+
background-color: var(--colors-likec4-panel-bg-when-panning);
|
|
4114
4586
|
}
|
|
4115
4587
|
|
|
4116
4588
|
.layerStyle_likec4\.dropdown {
|
|
4589
|
+
padding: var(--spacing-xxs);
|
|
4117
4590
|
border: 1px solid var(--colors-likec4-dropdown-border);
|
|
4118
|
-
padding-inline: 2xs;
|
|
4119
|
-
padding-block: 2xs;
|
|
4120
4591
|
border-radius: var(--radii-md);
|
|
4121
4592
|
background-color: var(--colors-likec4-dropdown-bg);
|
|
4122
4593
|
box-shadow: var(--shadows-lg);
|
|
4123
4594
|
}
|
|
4124
4595
|
|
|
4125
|
-
|
|
4596
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .layerStyle_likec4\.dropdown {
|
|
4126
4597
|
border-radius: 0px;
|
|
4127
4598
|
border-color: var(--colors-transparent);
|
|
4128
4599
|
box-shadow: var(--shadows-none);
|
|
4129
4600
|
}
|
|
4130
4601
|
|
|
4131
|
-
.animationStyle_indicator {
|
|
4132
|
-
animation-duration: 1s;
|
|
4133
|
-
animation-iteration-count: infinite;
|
|
4134
|
-
animation-direction: alternate;
|
|
4135
|
-
animation-name: indicatorStrokeOpacity;
|
|
4136
|
-
}
|
|
4137
|
-
|
|
4138
4602
|
.layerStyle_likec4\.tag {
|
|
4139
4603
|
border: var(--borders-none);
|
|
4140
4604
|
border-radius: 3px;
|
|
@@ -4146,7 +4610,7 @@
|
|
|
4146
4610
|
background-color: var(--colors-likec4-tag-bg-hover);
|
|
4147
4611
|
}
|
|
4148
4612
|
|
|
4149
|
-
:
|
|
4613
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:animationStyle_xyedgeAnimated {
|
|
4150
4614
|
animation-duration: 800ms;
|
|
4151
4615
|
animation-iteration-count: infinite;
|
|
4152
4616
|
animation-timing-function: linear;
|
|
@@ -4154,42 +4618,17 @@
|
|
|
4154
4618
|
animation-name: xyedgeAnimated;
|
|
4155
4619
|
}
|
|
4156
4620
|
|
|
4157
|
-
:where(.react-flow__edge.selected, [data-edge-active='true'], [data-edge-animated='true']) .\[\:where\(\.react-flow__edge\.selected\,_\[data-edge-active\=\'true\'\]\,_\[data-edge-animated\=\'true\'\]\)_\&\]\:animationStyle_xyedgeAnimated {
|
|
4158
|
-
animation-duration: 800ms;
|
|
4159
|
-
animation-iteration-count: infinite;
|
|
4160
|
-
animation-timing-function: linear;
|
|
4161
|
-
animation-fill-mode: both;
|
|
4162
|
-
animation-name: xyedgeAnimated;
|
|
4163
|
-
}
|
|
4164
|
-
|
|
4165
|
-
:where(.react-flow__node.selected, .react-flow__edge.selected) .whenSelected\:animationStyle_indicator {
|
|
4166
|
-
animation-duration: 1s;
|
|
4167
|
-
animation-iteration-count: infinite;
|
|
4168
|
-
animation-direction: alternate;
|
|
4169
|
-
animation-name: indicatorStrokeOpacity;
|
|
4170
|
-
}
|
|
4171
|
-
|
|
4172
4621
|
@container (min-width: 40rem) {
|
|
4173
4622
|
.layerStyle_likec4\.panel {
|
|
4174
4623
|
padding: 2xs;
|
|
4175
4624
|
border-radius: var(--radii-md);
|
|
4176
4625
|
box-shadow: var(--shadows-lg);
|
|
4626
|
+
backdrop-filter: blur(10px);
|
|
4627
|
+
-webkit-backdrop-filter: blur(10px);
|
|
4177
4628
|
}
|
|
4178
4629
|
}
|
|
4179
4630
|
}
|
|
4180
4631
|
|
|
4181
|
-
.\--xy-background-color_transparent\! {
|
|
4182
|
-
--xy-background-color: transparent !important;
|
|
4183
|
-
}
|
|
4184
|
-
|
|
4185
|
-
.\--xy-background-color_\{colors\.likec4\.background\} {
|
|
4186
|
-
--xy-background-color: var(--colors-likec4-background);
|
|
4187
|
-
}
|
|
4188
|
-
|
|
4189
|
-
.\--xy-background-pattern-color_\{colors\.likec4\.background\.pattern\} {
|
|
4190
|
-
--xy-background-pattern-color: var(--colors-likec4-background-pattern);
|
|
4191
|
-
}
|
|
4192
|
-
|
|
4193
4632
|
.\--mantine-cursor-pointer_pointer {
|
|
4194
4633
|
--mantine-cursor-pointer: pointer;
|
|
4195
4634
|
}
|
|
@@ -4198,6 +4637,14 @@
|
|
|
4198
4637
|
--thickness: 1px;
|
|
4199
4638
|
}
|
|
4200
4639
|
|
|
4640
|
+
.\--bleed-x_token\(spacing\.2\,_2\) {
|
|
4641
|
+
--bleed-x: var(--spacing-2, 2);
|
|
4642
|
+
}
|
|
4643
|
+
|
|
4644
|
+
.\--bleed-y_token\(spacing\.2\,_2\) {
|
|
4645
|
+
--bleed-y: var(--spacing-2, 2);
|
|
4646
|
+
}
|
|
4647
|
+
|
|
4201
4648
|
.\--view-title-color_\{colors\.mantine\.colors\.dark\[1\]\} {
|
|
4202
4649
|
--view-title-color: var(--colors-mantine-colors-dark\[1\]);
|
|
4203
4650
|
}
|
|
@@ -4278,10 +4725,6 @@
|
|
|
4278
4725
|
background: var(--colors-transparent);
|
|
4279
4726
|
}
|
|
4280
4727
|
|
|
4281
|
-
.bg_transparent\! {
|
|
4282
|
-
background: var(--colors-transparent) !important;
|
|
4283
|
-
}
|
|
4284
|
-
|
|
4285
4728
|
.p_0 {
|
|
4286
4729
|
padding: var(--spacing-0);
|
|
4287
4730
|
}
|
|
@@ -4310,6 +4753,19 @@
|
|
|
4310
4753
|
background: var(--colors-transparent);
|
|
4311
4754
|
}
|
|
4312
4755
|
|
|
4756
|
+
.p_4 {
|
|
4757
|
+
padding: var(--spacing-4);
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4760
|
+
.p_\[2px_4px\] {
|
|
4761
|
+
padding: 2px 4px;
|
|
4762
|
+
}
|
|
4763
|
+
|
|
4764
|
+
.bg_var\(--likec4-palette-fill\)\/30 {
|
|
4765
|
+
--mix-background: color-mix(in srgb, var(--likec4-palette-fill) 30%, transparent);
|
|
4766
|
+
background: var(--mix-background, var(--likec4-palette-fill));
|
|
4767
|
+
}
|
|
4768
|
+
|
|
4313
4769
|
.m_xs {
|
|
4314
4770
|
margin: var(--spacing-xs);
|
|
4315
4771
|
}
|
|
@@ -4445,27 +4901,6 @@
|
|
|
4445
4901
|
border: 2px dashed;
|
|
4446
4902
|
}
|
|
4447
4903
|
|
|
4448
|
-
.bg_\[var\(--xy-edge-label-background-color\)\] {
|
|
4449
|
-
background: var(--xy-edge-label-background-color);
|
|
4450
|
-
}
|
|
4451
|
-
|
|
4452
|
-
.bd_0px_solid_transparent {
|
|
4453
|
-
border: 0px solid transparent;
|
|
4454
|
-
}
|
|
4455
|
-
|
|
4456
|
-
.p_4 {
|
|
4457
|
-
padding: var(--spacing-4);
|
|
4458
|
-
}
|
|
4459
|
-
|
|
4460
|
-
.p_\[2px_4px\] {
|
|
4461
|
-
padding: 2px 4px;
|
|
4462
|
-
}
|
|
4463
|
-
|
|
4464
|
-
.bg_var\(--likec4-palette-fill\)\/30 {
|
|
4465
|
-
--mix-background: color-mix(in srgb, var(--likec4-palette-fill) 30%, transparent);
|
|
4466
|
-
background: var(--mix-background, var(--likec4-palette-fill));
|
|
4467
|
-
}
|
|
4468
|
-
|
|
4469
4904
|
.p_sm {
|
|
4470
4905
|
padding: var(--spacing-sm);
|
|
4471
4906
|
}
|
|
@@ -4555,22 +4990,66 @@
|
|
|
4555
4990
|
gap: 10px;
|
|
4556
4991
|
}
|
|
4557
4992
|
|
|
4993
|
+
.gap_3\.5 {
|
|
4994
|
+
gap: var(--spacing-3\.5);
|
|
4995
|
+
}
|
|
4996
|
+
|
|
4997
|
+
.mx_calc\(var\(--bleed-x\,_0\)_\*_-1\) {
|
|
4998
|
+
margin-inline: calc(var(--bleed-x, 0) * -1);
|
|
4999
|
+
}
|
|
5000
|
+
|
|
5001
|
+
.my_calc\(var\(--bleed-y\,_0\)_\*_-1\) {
|
|
5002
|
+
margin-block: calc(var(--bleed-y, 0) * -1);
|
|
5003
|
+
}
|
|
5004
|
+
|
|
5005
|
+
.py_2 {
|
|
5006
|
+
padding-block: var(--spacing-2);
|
|
5007
|
+
}
|
|
5008
|
+
|
|
5009
|
+
.px_2 {
|
|
5010
|
+
padding-inline: var(--spacing-2);
|
|
5011
|
+
}
|
|
5012
|
+
|
|
5013
|
+
.gap_1 {
|
|
5014
|
+
gap: var(--spacing-1);
|
|
5015
|
+
}
|
|
5016
|
+
|
|
4558
5017
|
.gap_0\.5 {
|
|
4559
5018
|
gap: var(--spacing-0\.5);
|
|
4560
5019
|
}
|
|
4561
5020
|
|
|
5021
|
+
.gap_2 {
|
|
5022
|
+
gap: var(--spacing-2);
|
|
5023
|
+
}
|
|
5024
|
+
|
|
5025
|
+
.py_1\.5 {
|
|
5026
|
+
padding-block: var(--spacing-1\.5);
|
|
5027
|
+
}
|
|
5028
|
+
|
|
5029
|
+
.bd-l_2px_dotted {
|
|
5030
|
+
border-left: 2px dotted;
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5033
|
+
.bdr_\[2px\] {
|
|
5034
|
+
border-radius: 2px;
|
|
5035
|
+
}
|
|
5036
|
+
|
|
4562
5037
|
.px_xxs {
|
|
4563
5038
|
padding-inline: var(--spacing-xxs);
|
|
4564
5039
|
}
|
|
4565
5040
|
|
|
4566
|
-
.gap_2 {
|
|
4567
|
-
gap: var(--spacing-2);
|
|
4568
|
-
}
|
|
4569
|
-
|
|
4570
5041
|
.gap_md {
|
|
4571
5042
|
gap: var(--spacing-md);
|
|
4572
5043
|
}
|
|
4573
5044
|
|
|
5045
|
+
.ov_auto {
|
|
5046
|
+
overflow: auto;
|
|
5047
|
+
}
|
|
5048
|
+
|
|
5049
|
+
.ovs-b_contain {
|
|
5050
|
+
overscroll-behavior: contain;
|
|
5051
|
+
}
|
|
5052
|
+
|
|
4574
5053
|
.my_md {
|
|
4575
5054
|
margin-block: var(--spacing-md);
|
|
4576
5055
|
}
|
|
@@ -4731,10 +5210,6 @@
|
|
|
4731
5210
|
outline: var(--borders-none) !important;
|
|
4732
5211
|
}
|
|
4733
5212
|
|
|
4734
|
-
.gap_1 {
|
|
4735
|
-
gap: var(--spacing-1);
|
|
4736
|
-
}
|
|
4737
|
-
|
|
4738
5213
|
.bdr_4px {
|
|
4739
5214
|
border-radius: 4px;
|
|
4740
5215
|
}
|
|
@@ -4767,38 +5242,6 @@
|
|
|
4767
5242
|
padding-block: var(--spacing-xl);
|
|
4768
5243
|
}
|
|
4769
5244
|
|
|
4770
|
-
.bdr_var\(--_border-radius\,_4px\) {
|
|
4771
|
-
border-radius: var(--_border-radius, 4px);
|
|
4772
|
-
}
|
|
4773
|
-
|
|
4774
|
-
.transition_all_250ms_\{easings\.inOut\} {
|
|
4775
|
-
transition: all 250ms var(--easings-in-out);
|
|
4776
|
-
}
|
|
4777
|
-
|
|
4778
|
-
.border-style_dashed {
|
|
4779
|
-
border-style: dashed;
|
|
4780
|
-
}
|
|
4781
|
-
|
|
4782
|
-
.bd-w_\[var\(--_border-width\,_2px\)\] {
|
|
4783
|
-
border-width: var(--_border-width, 2px);
|
|
4784
|
-
}
|
|
4785
|
-
|
|
4786
|
-
.bd-c_\[color-mix\(in_srgb\,_var\(--likec4-palette-stroke\)_var\(--_border-opacity-percent\,_100\%\)\,_transparent\)\] {
|
|
4787
|
-
border-color: color-mix(in srgb, var(--likec4-palette-stroke) var(--_border-opacity-percent, 100%), transparent);
|
|
4788
|
-
}
|
|
4789
|
-
|
|
4790
|
-
.flex_0_0_20px {
|
|
4791
|
-
flex: 0 0 20px;
|
|
4792
|
-
}
|
|
4793
|
-
|
|
4794
|
-
.tw_pretty {
|
|
4795
|
-
text-wrap: pretty;
|
|
4796
|
-
}
|
|
4797
|
-
|
|
4798
|
-
.transition_fill_120ms_linear\,_filter_130ms_\{easings\.inOut\} {
|
|
4799
|
-
transition: fill 120ms linear, filter 130ms var(--easings-in-out);
|
|
4800
|
-
}
|
|
4801
|
-
|
|
4802
5245
|
.bdr_\[4px\] {
|
|
4803
5246
|
border-radius: 4px;
|
|
4804
5247
|
}
|
|
@@ -4811,20 +5254,12 @@
|
|
|
4811
5254
|
gap: 6px;
|
|
4812
5255
|
}
|
|
4813
5256
|
|
|
4814
|
-
.
|
|
4815
|
-
|
|
4816
|
-
}
|
|
4817
|
-
|
|
4818
|
-
.bdr_\[2px\] {
|
|
4819
|
-
border-radius: 2px;
|
|
4820
|
-
}
|
|
4821
|
-
|
|
4822
|
-
.gap_3 {
|
|
4823
|
-
gap: var(--spacing-3);
|
|
5257
|
+
.tw_pretty {
|
|
5258
|
+
text-wrap: pretty;
|
|
4824
5259
|
}
|
|
4825
5260
|
|
|
4826
|
-
.
|
|
4827
|
-
|
|
5261
|
+
.offset_16 {
|
|
5262
|
+
offset: 16px;
|
|
4828
5263
|
}
|
|
4829
5264
|
|
|
4830
5265
|
.flex_0_0_auto {
|
|
@@ -4863,6 +5298,10 @@
|
|
|
4863
5298
|
border-width: 3px;
|
|
4864
5299
|
}
|
|
4865
5300
|
|
|
5301
|
+
.border-style_dashed {
|
|
5302
|
+
border-style: dashed;
|
|
5303
|
+
}
|
|
5304
|
+
|
|
4866
5305
|
.offset_2 {
|
|
4867
5306
|
offset: 2px;
|
|
4868
5307
|
}
|
|
@@ -4924,6 +5363,10 @@
|
|
|
4924
5363
|
user-select: all;
|
|
4925
5364
|
}
|
|
4926
5365
|
|
|
5366
|
+
.bg-c_transparent {
|
|
5367
|
+
background-color: var(--colors-transparent);
|
|
5368
|
+
}
|
|
5369
|
+
|
|
4927
5370
|
.stk_2\.5 {
|
|
4928
5371
|
stroke: 2.5px;
|
|
4929
5372
|
}
|
|
@@ -5093,6 +5536,54 @@
|
|
|
5093
5536
|
order: 6;
|
|
5094
5537
|
}
|
|
5095
5538
|
|
|
5539
|
+
.bd-be-w_var\(--thickness\) {
|
|
5540
|
+
border-block-end-width: var(--thickness);
|
|
5541
|
+
}
|
|
5542
|
+
|
|
5543
|
+
.cursor_default {
|
|
5544
|
+
cursor: default;
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5547
|
+
.flex-wrap_wrap {
|
|
5548
|
+
flex-wrap: wrap;
|
|
5549
|
+
}
|
|
5550
|
+
|
|
5551
|
+
.op_0\.65 {
|
|
5552
|
+
opacity: 0.65;
|
|
5553
|
+
}
|
|
5554
|
+
|
|
5555
|
+
.d_inline-block {
|
|
5556
|
+
display: inline-block;
|
|
5557
|
+
}
|
|
5558
|
+
|
|
5559
|
+
.fs_xxs {
|
|
5560
|
+
font-size: var(--font-sizes-xxs);
|
|
5561
|
+
}
|
|
5562
|
+
|
|
5563
|
+
.lh_\[1\.11\] {
|
|
5564
|
+
line-height: 1.11;
|
|
5565
|
+
}
|
|
5566
|
+
|
|
5567
|
+
.d_block {
|
|
5568
|
+
display: block;
|
|
5569
|
+
}
|
|
5570
|
+
|
|
5571
|
+
.white-space_nowrap {
|
|
5572
|
+
white-space: nowrap;
|
|
5573
|
+
}
|
|
5574
|
+
|
|
5575
|
+
.mix-bm_hard-light {
|
|
5576
|
+
mix-blend-mode: hard-light;
|
|
5577
|
+
}
|
|
5578
|
+
|
|
5579
|
+
.white-space-collapse_preserve-breaks {
|
|
5580
|
+
white-space-collapse: preserve-breaks;
|
|
5581
|
+
}
|
|
5582
|
+
|
|
5583
|
+
.lh_sm {
|
|
5584
|
+
line-height: var(--line-heights-sm);
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5096
5587
|
.c_likec4\.panel\.action-icon\.text {
|
|
5097
5588
|
color: var(--colors-likec4-panel-action-icon-text);
|
|
5098
5589
|
}
|
|
@@ -5105,10 +5596,6 @@
|
|
|
5105
5596
|
opacity: 0.8;
|
|
5106
5597
|
}
|
|
5107
5598
|
|
|
5108
|
-
.white-space_nowrap {
|
|
5109
|
-
white-space: nowrap;
|
|
5110
|
-
}
|
|
5111
|
-
|
|
5112
5599
|
.pos_bottom-end {
|
|
5113
5600
|
position: bottom-end;
|
|
5114
5601
|
}
|
|
@@ -5125,22 +5612,10 @@
|
|
|
5125
5612
|
stroke: 1.8px;
|
|
5126
5613
|
}
|
|
5127
5614
|
|
|
5128
|
-
.flex-wrap_wrap {
|
|
5129
|
-
flex-wrap: wrap;
|
|
5130
|
-
}
|
|
5131
|
-
|
|
5132
5615
|
.fs_xs {
|
|
5133
5616
|
font-size: var(--font-sizes-xs);
|
|
5134
5617
|
}
|
|
5135
5618
|
|
|
5136
|
-
.fs_xxs {
|
|
5137
|
-
font-size: var(--font-sizes-xxs);
|
|
5138
|
-
}
|
|
5139
|
-
|
|
5140
|
-
.cursor_default {
|
|
5141
|
-
cursor: default;
|
|
5142
|
-
}
|
|
5143
|
-
|
|
5144
5619
|
.op_0\.5 {
|
|
5145
5620
|
opacity: 0.5;
|
|
5146
5621
|
}
|
|
@@ -5213,10 +5688,6 @@
|
|
|
5213
5688
|
flex-shrink: 0;
|
|
5214
5689
|
}
|
|
5215
5690
|
|
|
5216
|
-
.d_block {
|
|
5217
|
-
display: block;
|
|
5218
|
-
}
|
|
5219
|
-
|
|
5220
5691
|
.bx-s_border-box {
|
|
5221
5692
|
box-sizing: border-box;
|
|
5222
5693
|
}
|
|
@@ -5305,10 +5776,6 @@
|
|
|
5305
5776
|
stroke: 1.6px;
|
|
5306
5777
|
}
|
|
5307
5778
|
|
|
5308
|
-
.bd-be-w_var\(--thickness\) {
|
|
5309
|
-
border-block-end-width: var(--thickness);
|
|
5310
|
-
}
|
|
5311
|
-
|
|
5312
5779
|
.trs-prop_all {
|
|
5313
5780
|
--transition-prop: all;
|
|
5314
5781
|
transition-property: all;
|
|
@@ -5348,14 +5815,6 @@
|
|
|
5348
5815
|
stroke: 1.2px;
|
|
5349
5816
|
}
|
|
5350
5817
|
|
|
5351
|
-
.op_0\.65 {
|
|
5352
|
-
opacity: 0.65;
|
|
5353
|
-
}
|
|
5354
|
-
|
|
5355
|
-
.d_inline-block {
|
|
5356
|
-
display: inline-block;
|
|
5357
|
-
}
|
|
5358
|
-
|
|
5359
5818
|
.lh_1\.2 {
|
|
5360
5819
|
line-height: 1.2;
|
|
5361
5820
|
}
|
|
@@ -5518,42 +5977,6 @@
|
|
|
5518
5977
|
z-index: 903;
|
|
5519
5978
|
}
|
|
5520
5979
|
|
|
5521
|
-
.vis_hidden {
|
|
5522
|
-
visibility: hidden;
|
|
5523
|
-
}
|
|
5524
|
-
|
|
5525
|
-
.stk_\[color-mix\(in_srgb\,_var\(--likec4-palette-stroke\)_60\%\,_var\(--likec4-palette-hiContrast\)\)\] {
|
|
5526
|
-
stroke: color-mix(in srgb, var(--likec4-palette-stroke) 60%, var(--likec4-palette-hiContrast));
|
|
5527
|
-
}
|
|
5528
|
-
|
|
5529
|
-
.stk-w_4 {
|
|
5530
|
-
stroke-width: 4;
|
|
5531
|
-
}
|
|
5532
|
-
|
|
5533
|
-
.fill_\[none\] {
|
|
5534
|
-
fill: none;
|
|
5535
|
-
}
|
|
5536
|
-
|
|
5537
|
-
.ff_likec4\.compound {
|
|
5538
|
-
font-family: var(--fonts-likec4-compound);
|
|
5539
|
-
}
|
|
5540
|
-
|
|
5541
|
-
.tt_uppercase {
|
|
5542
|
-
text-transform: uppercase;
|
|
5543
|
-
}
|
|
5544
|
-
|
|
5545
|
-
.ls_0\.2px {
|
|
5546
|
-
letter-spacing: 0.2px;
|
|
5547
|
-
}
|
|
5548
|
-
|
|
5549
|
-
.c_var\(--likec4-palette-loContrast\) {
|
|
5550
|
-
color: var(--likec4-palette-loContrast);
|
|
5551
|
-
}
|
|
5552
|
-
|
|
5553
|
-
.mix-bm_hard-light {
|
|
5554
|
-
mix-blend-mode: hard-light;
|
|
5555
|
-
}
|
|
5556
|
-
|
|
5557
5980
|
.trs-dur_normal {
|
|
5558
5981
|
--transition-duration: var(--durations-normal);
|
|
5559
5982
|
transition-duration: var(--durations-normal);
|
|
@@ -5563,24 +5986,8 @@
|
|
|
5563
5986
|
transition-delay: 0.2s;
|
|
5564
5987
|
}
|
|
5565
5988
|
|
|
5566
|
-
.
|
|
5567
|
-
|
|
5568
|
-
}
|
|
5569
|
-
|
|
5570
|
-
.white-space-collapse_preserve-breaks {
|
|
5571
|
-
white-space-collapse: preserve-breaks;
|
|
5572
|
-
}
|
|
5573
|
-
|
|
5574
|
-
.lh_1\.25 {
|
|
5575
|
-
line-height: 1.25;
|
|
5576
|
-
}
|
|
5577
|
-
|
|
5578
|
-
.c_\[var\(--xy-edge-label-color\)\] {
|
|
5579
|
-
color: var(--xy-edge-label-color);
|
|
5580
|
-
}
|
|
5581
|
-
|
|
5582
|
-
.trf_var\(--edge-translate\) {
|
|
5583
|
-
transform: var(--edge-translate);
|
|
5989
|
+
.fill_\[none\] {
|
|
5990
|
+
fill: none;
|
|
5584
5991
|
}
|
|
5585
5992
|
|
|
5586
5993
|
.stk-op_0 {
|
|
@@ -5595,11 +6002,6 @@
|
|
|
5595
6002
|
stroke-opacity: 0.08;
|
|
5596
6003
|
}
|
|
5597
6004
|
|
|
5598
|
-
.trs-prop_stroke-width\,_stroke-opacity {
|
|
5599
|
-
--transition-prop: stroke-width, stroke-opacity;
|
|
5600
|
-
transition-property: stroke-width, stroke-opacity;
|
|
5601
|
-
}
|
|
5602
|
-
|
|
5603
6005
|
.fill_\[var\(--xy-edge-stroke\)\] {
|
|
5604
6006
|
fill: var(--xy-edge-stroke);
|
|
5605
6007
|
}
|
|
@@ -5616,58 +6018,6 @@
|
|
|
5616
6018
|
stroke-dashoffset: 10;
|
|
5617
6019
|
}
|
|
5618
6020
|
|
|
5619
|
-
.stk_var\(--likec4-palette-loContrast\) {
|
|
5620
|
-
stroke: var(--likec4-palette-loContrast);
|
|
5621
|
-
}
|
|
5622
|
-
|
|
5623
|
-
.stk-w_8 {
|
|
5624
|
-
stroke-width: 8;
|
|
5625
|
-
}
|
|
5626
|
-
|
|
5627
|
-
.stk-op_0\.8 {
|
|
5628
|
-
stroke-opacity: 0.8;
|
|
5629
|
-
}
|
|
5630
|
-
|
|
5631
|
-
.fill_var\(--likec4-palette-fill\) {
|
|
5632
|
-
fill: var(--likec4-palette-fill);
|
|
5633
|
-
}
|
|
5634
|
-
|
|
5635
|
-
.fill_var\(--likec4-palette-stroke\) {
|
|
5636
|
-
fill: var(--likec4-palette-stroke);
|
|
5637
|
-
}
|
|
5638
|
-
|
|
5639
|
-
.fill_\[color-mix\(in_srgb\,_var\(--likec4-palette-stroke\)_90\%\,_var\(--likec4-palette-fill\)\)\] {
|
|
5640
|
-
fill: color-mix(in srgb, var(--likec4-palette-stroke) 90%, var(--likec4-palette-fill));
|
|
5641
|
-
}
|
|
5642
|
-
|
|
5643
|
-
.stk_var\(--likec4-palette-stroke\) {
|
|
5644
|
-
stroke: var(--likec4-palette-stroke);
|
|
5645
|
-
}
|
|
5646
|
-
|
|
5647
|
-
.trf-o_50\%_50\% {
|
|
5648
|
-
transform-origin: 50% 50%;
|
|
5649
|
-
}
|
|
5650
|
-
|
|
5651
|
-
.trf_translate\(14px\,_14px\)_perspective\(300px\)_translateZ\(-8px\) {
|
|
5652
|
-
transform: translate(14px, 14px) perspective(300px) translateZ(-8px);
|
|
5653
|
-
}
|
|
5654
|
-
|
|
5655
|
-
.filter_brightness\(0\.65\)_saturate\(0\.8\) {
|
|
5656
|
-
filter: brightness(0.65) saturate(0.8);
|
|
5657
|
-
}
|
|
5658
|
-
|
|
5659
|
-
.stk_\[none\] {
|
|
5660
|
-
stroke: none;
|
|
5661
|
-
}
|
|
5662
|
-
|
|
5663
|
-
.trs-dly_0ms {
|
|
5664
|
-
transition-delay: 0ms;
|
|
5665
|
-
}
|
|
5666
|
-
|
|
5667
|
-
.filter_drop-shadow\(0_2px_1px_rgba\(0\,_0\,_0\,_0\.21\)\)_drop-shadow\(0_1px_1px_color-mix\(in_srgb\,_var\(--likec4-palette-stroke\)_40\%\,_transparent\)\)_drop-shadow\(0_5px_3px_rgba\(0\,_0\,_0\,_0\.1\)\) {
|
|
5668
|
-
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.21)) drop-shadow(0 1px 1px color-mix(in srgb, var(--likec4-palette-stroke) 40%, transparent)) drop-shadow(0 5px 3px rgba(0, 0, 0, 0.1));
|
|
5669
|
-
}
|
|
5670
|
-
|
|
5671
6021
|
.fs_lg {
|
|
5672
6022
|
font-size: var(--font-sizes-lg);
|
|
5673
6023
|
}
|
|
@@ -5684,8 +6034,12 @@
|
|
|
5684
6034
|
z-index: 9;
|
|
5685
6035
|
}
|
|
5686
6036
|
|
|
5687
|
-
.
|
|
5688
|
-
|
|
6037
|
+
.ta_left {
|
|
6038
|
+
text-align: left;
|
|
6039
|
+
}
|
|
6040
|
+
|
|
6041
|
+
.lh_1\.25 {
|
|
6042
|
+
line-height: 1.25;
|
|
5689
6043
|
}
|
|
5690
6044
|
|
|
5691
6045
|
.mix-bm_normal {
|
|
@@ -5716,6 +6070,10 @@
|
|
|
5716
6070
|
pointer-events: auto;
|
|
5717
6071
|
}
|
|
5718
6072
|
|
|
6073
|
+
.vis_hidden {
|
|
6074
|
+
visibility: hidden;
|
|
6075
|
+
}
|
|
6076
|
+
|
|
5719
6077
|
.cursor_grabbing {
|
|
5720
6078
|
cursor: grabbing;
|
|
5721
6079
|
}
|
|
@@ -5733,14 +6091,22 @@
|
|
|
5733
6091
|
opacity: 0.7;
|
|
5734
6092
|
}
|
|
5735
6093
|
|
|
5736
|
-
.
|
|
5737
|
-
|
|
6094
|
+
.fill_var\(--likec4-palette-fill\) {
|
|
6095
|
+
fill: var(--likec4-palette-fill);
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
.stk_var\(--likec4-palette-stroke\) {
|
|
6099
|
+
stroke: var(--likec4-palette-stroke);
|
|
5738
6100
|
}
|
|
5739
6101
|
|
|
5740
6102
|
.filter_drop-shadow\(0_2px_3px_rgb\(0_0_0_\/_22\%\)\)_drop-shadow\(0_1px_8px_rgb\(0_0_0_\/_10\%\)\) {
|
|
5741
6103
|
filter: drop-shadow(0 2px 3px rgb(0 0 0 / 22%)) drop-shadow(0 1px 8px rgb(0 0 0 / 10%));
|
|
5742
6104
|
}
|
|
5743
6105
|
|
|
6106
|
+
.ls_0\.2px {
|
|
6107
|
+
letter-spacing: 0.2px;
|
|
6108
|
+
}
|
|
6109
|
+
|
|
5744
6110
|
.tt_lowercase {
|
|
5745
6111
|
text-transform: lowercase;
|
|
5746
6112
|
}
|
|
@@ -5890,8 +6256,24 @@
|
|
|
5890
6256
|
padding-bottom: var(--spacing-sm);
|
|
5891
6257
|
}
|
|
5892
6258
|
|
|
5893
|
-
.pr_xs {
|
|
5894
|
-
padding-right: var(--spacing-xs);
|
|
6259
|
+
.pr_xs {
|
|
6260
|
+
padding-right: var(--spacing-xs);
|
|
6261
|
+
}
|
|
6262
|
+
|
|
6263
|
+
.w_max-content {
|
|
6264
|
+
width: max-content;
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6267
|
+
.pt_2\.5 {
|
|
6268
|
+
padding-top: var(--spacing-2\.5);
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6271
|
+
.pl_2\.5 {
|
|
6272
|
+
padding-left: var(--spacing-2\.5);
|
|
6273
|
+
}
|
|
6274
|
+
|
|
6275
|
+
.bd-l-c_mantine\.colors\.gray\[3\] {
|
|
6276
|
+
border-left-color: var(--colors-mantine-colors-gray\[3\]);
|
|
5895
6277
|
}
|
|
5896
6278
|
|
|
5897
6279
|
.mt_1 {
|
|
@@ -5914,10 +6296,6 @@
|
|
|
5914
6296
|
max-height: calc(100cqh - 100px);
|
|
5915
6297
|
}
|
|
5916
6298
|
|
|
5917
|
-
.w_max-content {
|
|
5918
|
-
width: max-content;
|
|
5919
|
-
}
|
|
5920
|
-
|
|
5921
6299
|
.h_auto {
|
|
5922
6300
|
height: auto;
|
|
5923
6301
|
}
|
|
@@ -6121,28 +6499,15 @@
|
|
|
6121
6499
|
min-width: 200px;
|
|
6122
6500
|
}
|
|
6123
6501
|
|
|
6124
|
-
.
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
left: 4px;
|
|
6130
|
-
}
|
|
6131
|
-
|
|
6132
|
-
.top_0\.5 {
|
|
6133
|
-
top: var(--spacing-0\.5);
|
|
6134
|
-
}
|
|
6135
|
-
|
|
6136
|
-
.left_\[14px\] {
|
|
6137
|
-
left: 14px;
|
|
6138
|
-
}
|
|
6139
|
-
|
|
6140
|
-
.top_\[4px\] {
|
|
6141
|
-
top: 4px;
|
|
6502
|
+
.lc_5 {
|
|
6503
|
+
overflow: hidden;
|
|
6504
|
+
display: -webkit-box;
|
|
6505
|
+
-webkit-line-clamp: 5;
|
|
6506
|
+
-webkit-box-orient: vertical;
|
|
6142
6507
|
}
|
|
6143
6508
|
|
|
6144
|
-
.
|
|
6145
|
-
|
|
6509
|
+
.top_\[calc\(100\%_-_30px\)\] {
|
|
6510
|
+
top: calc(100% - 30px);
|
|
6146
6511
|
}
|
|
6147
6512
|
|
|
6148
6513
|
.w_auto {
|
|
@@ -6153,31 +6518,8 @@
|
|
|
6153
6518
|
min-height: 30px;
|
|
6154
6519
|
}
|
|
6155
6520
|
|
|
6156
|
-
.
|
|
6157
|
-
|
|
6158
|
-
}
|
|
6159
|
-
|
|
6160
|
-
.w_20px {
|
|
6161
|
-
width: 20px;
|
|
6162
|
-
}
|
|
6163
|
-
|
|
6164
|
-
.top_1 {
|
|
6165
|
-
top: var(--spacing-1);
|
|
6166
|
-
}
|
|
6167
|
-
|
|
6168
|
-
.right_1 {
|
|
6169
|
-
right: var(--spacing-1);
|
|
6170
|
-
}
|
|
6171
|
-
|
|
6172
|
-
.lc_5 {
|
|
6173
|
-
overflow: hidden;
|
|
6174
|
-
display: -webkit-box;
|
|
6175
|
-
-webkit-line-clamp: 5;
|
|
6176
|
-
-webkit-box-orient: vertical;
|
|
6177
|
-
}
|
|
6178
|
-
|
|
6179
|
-
.top_\[calc\(100\%_-_30px\)\] {
|
|
6180
|
-
top: calc(100% - 30px);
|
|
6521
|
+
.top_0\.5 {
|
|
6522
|
+
top: var(--spacing-0\.5);
|
|
6181
6523
|
}
|
|
6182
6524
|
|
|
6183
6525
|
.bottom_0 {
|
|
@@ -6218,30 +6560,6 @@
|
|
|
6218
6560
|
right: 1px;
|
|
6219
6561
|
}
|
|
6220
6562
|
|
|
6221
|
-
.ov-y_scroll {
|
|
6222
|
-
overflow-y: scroll;
|
|
6223
|
-
}
|
|
6224
|
-
|
|
6225
|
-
.min-w_250px {
|
|
6226
|
-
min-width: 250px;
|
|
6227
|
-
}
|
|
6228
|
-
|
|
6229
|
-
.max-w_min\(90vw\,_500px\) {
|
|
6230
|
-
max-width: min(90vw, 500px);
|
|
6231
|
-
}
|
|
6232
|
-
|
|
6233
|
-
.top_5 {
|
|
6234
|
-
top: var(--spacing-5);
|
|
6235
|
-
}
|
|
6236
|
-
|
|
6237
|
-
.right_6 {
|
|
6238
|
-
right: var(--spacing-6);
|
|
6239
|
-
}
|
|
6240
|
-
|
|
6241
|
-
.w_xs {
|
|
6242
|
-
width: xs;
|
|
6243
|
-
}
|
|
6244
|
-
|
|
6245
6563
|
.min-w_200 {
|
|
6246
6564
|
min-width: 200px;
|
|
6247
6565
|
}
|
|
@@ -6379,14 +6697,6 @@
|
|
|
6379
6697
|
background: var(--mix-background, var(--colors-mantine-colors-white));
|
|
6380
6698
|
}
|
|
6381
6699
|
|
|
6382
|
-
.before\:bd_transparent::before {
|
|
6383
|
-
border: var(--borders-transparent);
|
|
6384
|
-
}
|
|
6385
|
-
|
|
6386
|
-
.before\:bg_var\(--likec4-palette-fill\)::before {
|
|
6387
|
-
background: var(--likec4-palette-fill);
|
|
6388
|
-
}
|
|
6389
|
-
|
|
6390
6700
|
.before\:bg_\[transparent\]::before {
|
|
6391
6701
|
background: var(--colors-transparent);
|
|
6392
6702
|
}
|
|
@@ -6412,7 +6722,7 @@
|
|
|
6412
6722
|
border-color: var(--colors-mantine-colors-dark\[4\]);
|
|
6413
6723
|
}
|
|
6414
6724
|
|
|
6415
|
-
|
|
6725
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .whenPanning\:transition_none\! {
|
|
6416
6726
|
transition: none !important;
|
|
6417
6727
|
}
|
|
6418
6728
|
|
|
@@ -6461,14 +6771,6 @@
|
|
|
6461
6771
|
border-color: var(--colors-transparent);
|
|
6462
6772
|
}
|
|
6463
6773
|
|
|
6464
|
-
.before\:bdr_var\(--_border-radius\,_4px\)::before {
|
|
6465
|
-
border-radius: var(--_border-radius, 4px);
|
|
6466
|
-
}
|
|
6467
|
-
|
|
6468
|
-
.\[\&\:is\(\[data-likec4-hovered\=\'true\'\]\)\]\:transition_all_190ms_\{easings\.inOut\}:is([data-likec4-hovered='true']) {
|
|
6469
|
-
transition: all 190ms var(--easings-in-out);
|
|
6470
|
-
}
|
|
6471
|
-
|
|
6472
6774
|
.likec4-root:is([data-likec4-reduced-graphics]) .reduceGraphics\:transition_none {
|
|
6473
6775
|
transition: none;
|
|
6474
6776
|
}
|
|
@@ -6477,11 +6779,7 @@
|
|
|
6477
6779
|
transition: stroke 130ms ease-out,stroke-width 130ms ease-out;
|
|
6478
6780
|
}
|
|
6479
6781
|
|
|
6480
|
-
:
|
|
6481
|
-
transition: none;
|
|
6482
|
-
}
|
|
6483
|
-
|
|
6484
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:bdr_4 {
|
|
6782
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:bdr_4 {
|
|
6485
6783
|
border-radius: 4px;
|
|
6486
6784
|
}
|
|
6487
6785
|
|
|
@@ -6489,14 +6787,6 @@
|
|
|
6489
6787
|
transition: fill-opacity 150ms ease-out, stroke 150ms ease-out, stroke-width 150ms ease-out;
|
|
6490
6788
|
}
|
|
6491
6789
|
|
|
6492
|
-
.\[\&_\.react-flow__pane\]\:-webkit-user-select_none .react-flow__pane {
|
|
6493
|
-
-webkit-user-select: none;
|
|
6494
|
-
}
|
|
6495
|
-
|
|
6496
|
-
.\[\&_\.react-flow__attribution\]\:d_none .react-flow__attribution {
|
|
6497
|
-
display: none;
|
|
6498
|
-
}
|
|
6499
|
-
|
|
6500
6790
|
.\[\&_\:where\(\.likec4-diagram\,_\.likec4-compound-node\,_\.likec4-element-node\)\]\:cursor_pointer :where(.likec4-diagram, .likec4-compound-node, .likec4-element-node) {
|
|
6501
6791
|
cursor: pointer;
|
|
6502
6792
|
}
|
|
@@ -6530,7 +6820,7 @@
|
|
|
6530
6820
|
color: var(--colors-mantine-colors-text);
|
|
6531
6821
|
}
|
|
6532
6822
|
|
|
6533
|
-
|
|
6823
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .whenPanning\:bx-sh_none\! {
|
|
6534
6824
|
box-shadow: var(--shadows-none) !important;
|
|
6535
6825
|
}
|
|
6536
6826
|
|
|
@@ -6582,6 +6872,14 @@
|
|
|
6582
6872
|
background-color: rgb(250 250 250 / var(--_opacity, 95%));
|
|
6583
6873
|
}
|
|
6584
6874
|
|
|
6875
|
+
[data-mantine-color-scheme="light"] .light\:c_\[color-mix\(in_srgb\,_var\(--likec4-palette-stroke\)\,_\{colors\.likec4\.mixColor\}_60\%\)\] {
|
|
6876
|
+
color: color-mix(in srgb, var(--likec4-palette-stroke), var(--colors-likec4-mix-color) 60%);
|
|
6877
|
+
}
|
|
6878
|
+
|
|
6879
|
+
[data-mantine-color-scheme="dark"] .dark\:c_var\(--likec4-palette-loContrast\) {
|
|
6880
|
+
color: var(--likec4-palette-loContrast);
|
|
6881
|
+
}
|
|
6882
|
+
|
|
6585
6883
|
[data-mantine-color-scheme="light"] .light\:c_mantine\.colors\.gray\[8\] {
|
|
6586
6884
|
color: var(--colors-mantine-colors-gray\[8\]);
|
|
6587
6885
|
}
|
|
@@ -6598,7 +6896,7 @@
|
|
|
6598
6896
|
pointer-events: all;
|
|
6599
6897
|
}
|
|
6600
6898
|
|
|
6601
|
-
|
|
6899
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .whenPanning\:bx-sh_none {
|
|
6602
6900
|
box-shadow: var(--shadows-none);
|
|
6603
6901
|
}
|
|
6604
6902
|
|
|
@@ -6619,6 +6917,10 @@
|
|
|
6619
6917
|
background-color: var(--colors-mantine-colors-dark\[6\]);
|
|
6620
6918
|
}
|
|
6621
6919
|
|
|
6920
|
+
.\[\&_\.react-flow__attribution\]\:d_none .react-flow__attribution {
|
|
6921
|
+
display: none;
|
|
6922
|
+
}
|
|
6923
|
+
|
|
6622
6924
|
[data-mantine-color-scheme="dark"] .dark\:mix-bm_hard-light {
|
|
6623
6925
|
mix-blend-mode: hard-light;
|
|
6624
6926
|
}
|
|
@@ -6777,81 +7079,39 @@
|
|
|
6777
7079
|
background-color: rgb(255 255 255 / 0.6);
|
|
6778
7080
|
}
|
|
6779
7081
|
|
|
6780
|
-
:
|
|
7082
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .reduceGraphicsOnPan\:d_none {
|
|
6781
7083
|
display: none;
|
|
6782
7084
|
}
|
|
6783
7085
|
|
|
6784
|
-
:where([data-likec4-
|
|
6785
|
-
opacity: 0.75;
|
|
6786
|
-
}
|
|
6787
|
-
|
|
6788
|
-
.before\:content_\"_\"::before {
|
|
6789
|
-
content: " ";
|
|
6790
|
-
}
|
|
6791
|
-
|
|
6792
|
-
.before\:bg-cp_padding-box::before {
|
|
6793
|
-
background-clip: padding-box;
|
|
6794
|
-
-webkit-background-clip: padding-box;
|
|
6795
|
-
}
|
|
6796
|
-
|
|
6797
|
-
.before\:trs-dly_\.075ms::before {
|
|
6798
|
-
transition-delay: .075ms;
|
|
6799
|
-
}
|
|
6800
|
-
|
|
6801
|
-
:where(.react-flow__node.selected, .react-flow__edge.selected) .whenSelected\:vis_visible {
|
|
6802
|
-
visibility: visible;
|
|
6803
|
-
}
|
|
6804
|
-
|
|
6805
|
-
:is(.likec4-root[data-likec4-diagram-panning]) .whenPanning\:d_none {
|
|
7086
|
+
:where([data-likec4-zoom-small="true"]) .smallZoom\:d_none {
|
|
6806
7087
|
display: none;
|
|
6807
7088
|
}
|
|
6808
7089
|
|
|
6809
|
-
[data-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
:where(.react-flow__node.draggable) .\[\:where\(\.react-flow__node\.draggable\)_\&\]\:pointer-events_all {
|
|
6814
|
-
pointer-events: all;
|
|
6815
|
-
}
|
|
6816
|
-
|
|
6817
|
-
:where(.react-flow__node.draggable) .\[\:where\(\.react-flow__node\.draggable\)_\&\]\:cursor_grab {
|
|
6818
|
-
cursor: grab;
|
|
6819
|
-
}
|
|
6820
|
-
|
|
6821
|
-
[data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:c_\[color-mix\(in_srgb\,_var\(--likec4-palette-loContrast\)_60\%\,_var\(--likec4-palette-fill\)\)\] {
|
|
6822
|
-
color: color-mix(in srgb, var(--likec4-palette-loContrast) 60%, var(--likec4-palette-fill));
|
|
6823
|
-
}
|
|
6824
|
-
|
|
6825
|
-
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .reduceGraphicsOnPan\:mix-bm_normal {
|
|
6826
|
-
mix-blend-mode: normal;
|
|
6827
|
-
}
|
|
6828
|
-
|
|
6829
|
-
.\[\&_svg\,_\&_img\]\:filter_drop-shadow\(0_0_3px_rgb\(0_0_0_\/_12\%\)\) svg,.\[\&_svg\,_\&_img\]\:filter_drop-shadow\(0_0_3px_rgb\(0_0_0_\/_12\%\)\) img {
|
|
6830
|
-
filter: drop-shadow(0 0 3px rgb(0 0 0 / 12%));
|
|
6831
|
-
}
|
|
6832
|
-
|
|
6833
|
-
.\[\&\:is\(\[data-likec4-hovered\=\'true\'\]\)\]\:trf_var\(--edge-translate\,_translate\(0px\,_0px\)\)_scale\(1\.12\):is([data-likec4-hovered='true']) {
|
|
6834
|
-
transform: var(--edge-translate, translate(0px, 0px)) scale(1.12);
|
|
7090
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:trs-prop_stroke-width\,_stroke-opacity {
|
|
7091
|
+
--transition-prop: stroke-width, stroke-opacity;
|
|
7092
|
+
transition-property: stroke-width, stroke-opacity;
|
|
6835
7093
|
}
|
|
6836
7094
|
|
|
6837
|
-
|
|
6838
|
-
transition-
|
|
7095
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:trs-dur_fast {
|
|
7096
|
+
--transition-duration: var(--durations-fast);
|
|
7097
|
+
transition-duration: var(--durations-fast);
|
|
6839
7098
|
}
|
|
6840
7099
|
|
|
6841
|
-
.likec4-root:
|
|
6842
|
-
|
|
7100
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:trs-tmf_inOut {
|
|
7101
|
+
--transition-easing: var(--easings-in-out);
|
|
7102
|
+
transition-timing-function: var(--easings-in-out);
|
|
6843
7103
|
}
|
|
6844
7104
|
|
|
6845
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:trs-tmf_out {
|
|
7105
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:trs-tmf_out {
|
|
6846
7106
|
--transition-easing: var(--easings-out);
|
|
6847
7107
|
transition-timing-function: var(--easings-out);
|
|
6848
7108
|
}
|
|
6849
7109
|
|
|
6850
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:stk-w_calc\(var\(--xy-edge-stroke-width\)_\+_4\) {
|
|
7110
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:stk-w_calc\(var\(--xy-edge-stroke-width\)_\+_4\) {
|
|
6851
7111
|
stroke-width: calc(var(--xy-edge-stroke-width) + 4);
|
|
6852
7112
|
}
|
|
6853
7113
|
|
|
6854
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:stk-op_0\.2 {
|
|
7114
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:stk-op_0\.2 {
|
|
6855
7115
|
stroke-opacity: 0.2;
|
|
6856
7116
|
}
|
|
6857
7117
|
|
|
@@ -6863,32 +7123,32 @@
|
|
|
6863
7123
|
stroke-opacity: 0.25;
|
|
6864
7124
|
}
|
|
6865
7125
|
|
|
6866
|
-
:
|
|
6867
|
-
animation-
|
|
6868
|
-
}
|
|
6869
|
-
|
|
6870
|
-
:where(.react-flow__edge.selected, [data-edge-active='true'], [data-edge-animated='true']) .\[\:where\(\.react-flow__edge\.selected\,_\[data-edge-active\=\'true\'\]\,_\[data-edge-animated\=\'true\'\]\)_\&\]\:anim-dly_0ms {
|
|
6871
|
-
animation-delay: 0ms;
|
|
7126
|
+
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:anim-ps_paused {
|
|
7127
|
+
animation-play-state: paused;
|
|
6872
7128
|
}
|
|
6873
7129
|
|
|
6874
7130
|
:where([data-edge-dir='back']) .\[\:where\(\[data-edge-dir\=\'back\'\]\)_\&\]\:anim-dir_reverse {
|
|
6875
7131
|
animation-direction: reverse;
|
|
6876
7132
|
}
|
|
6877
7133
|
|
|
6878
|
-
:where([data-likec4-dimmed]) .whenDimmed\:anim-ps_paused {
|
|
7134
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-dimmed]) .whenDimmed\:anim-ps_paused {
|
|
6879
7135
|
animation-play-state: paused;
|
|
6880
7136
|
}
|
|
6881
7137
|
|
|
6882
|
-
:where([data-likec4-zoom-small]) .smallZoom\:anim-n_none {
|
|
7138
|
+
:where([data-likec4-zoom-small="true"]) .smallZoom\:anim-n_none {
|
|
6883
7139
|
animation-name: none;
|
|
6884
7140
|
}
|
|
6885
7141
|
|
|
6886
|
-
|
|
7142
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .whenPanning\:stk-dsh_none\! {
|
|
6887
7143
|
stroke-dasharray: none !important;
|
|
6888
7144
|
}
|
|
6889
7145
|
|
|
6890
|
-
|
|
6891
|
-
animation-
|
|
7146
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .whenPanning\:anim-ps_paused {
|
|
7147
|
+
animation-play-state: paused;
|
|
7148
|
+
}
|
|
7149
|
+
|
|
7150
|
+
.before\:content_\"_\"::before {
|
|
7151
|
+
content: " ";
|
|
6892
7152
|
}
|
|
6893
7153
|
|
|
6894
7154
|
.before\:pointer-events_all::before {
|
|
@@ -6899,66 +7159,10 @@
|
|
|
6899
7159
|
cursor: pointer;
|
|
6900
7160
|
}
|
|
6901
7161
|
|
|
6902
|
-
:where([data-likec4-
|
|
6903
|
-
visibility: hidden;
|
|
6904
|
-
}
|
|
6905
|
-
|
|
6906
|
-
[data-mantine-color-scheme="light"] .light\:stk_\[color-mix\(in_srgb\,_var\(--likec4-palette-fill\)_50\%\,rgb\(121\,_121\,_121\)\)\] {
|
|
6907
|
-
stroke: color-mix(in srgb, var(--likec4-palette-fill) 50%,rgb(121, 121, 121));
|
|
6908
|
-
}
|
|
6909
|
-
|
|
6910
|
-
.shape-svg-multiple .\[\.shape-svg-multiple_\&\]\:fill_var\(--likec4-palette-fill\) {
|
|
6911
|
-
fill: var(--likec4-palette-fill);
|
|
6912
|
-
}
|
|
6913
|
-
|
|
6914
|
-
:where([data-likec4-shape='queue']) .shapeQueue\:trf-o_75\%_25\% {
|
|
6915
|
-
transform-origin: 75% 25%;
|
|
6916
|
-
}
|
|
6917
|
-
|
|
6918
|
-
:where([data-likec4-shape='cylinder']) .shapeCylinder\:trf-o_50\%_100\% {
|
|
6919
|
-
transform-origin: 50% 100%;
|
|
6920
|
-
}
|
|
6921
|
-
|
|
6922
|
-
:where([data-likec4-shape='storage']) .shapeStorage\:trf-o_50\%_100\% {
|
|
6923
|
-
transform-origin: 50% 100%;
|
|
6924
|
-
}
|
|
6925
|
-
|
|
6926
|
-
:where(.react-flow__node.selected, .react-flow__edge.selected) .whenSelected\:d_none {
|
|
6927
|
-
display: none;
|
|
6928
|
-
}
|
|
6929
|
-
|
|
6930
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:filter_drop-shadow\(0_2px_1px_rgba\(0\,_0\,_0\,_0\.25\)\)_drop-shadow\(0_8px_3px_rgba\(0\,_0\,_0\,_0\.1\)\)_drop-shadow\(0_10px_10px_rgba\(0\,_0\,_0\,_0\.05\)\) {
|
|
6931
|
-
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0 8px 3px rgba(0, 0, 0, 0.1)) drop-shadow(0 10px 10px rgba(0, 0, 0, 0.05));
|
|
6932
|
-
}
|
|
6933
|
-
|
|
6934
|
-
:where([data-likec4-level='true']) .\[\:where\(\[data-likec4-level\=\'true\'\]\)_\&\]\:filter_drop-shadow\(0_2px_1px_rgba\(0\,_0\,_0\,_0\.25\)\)_drop-shadow\(0_8px_3px_rgba\(0\,_0\,_0\,_0\.1\)\)_drop-shadow\(0_10px_10px_rgba\(0\,_0\,_0\,_0\.05\)\) {
|
|
6935
|
-
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0 8px 3px rgba(0, 0, 0, 0.1)) drop-shadow(0 10px 10px rgba(0, 0, 0, 0.05));
|
|
6936
|
-
}
|
|
6937
|
-
|
|
6938
|
-
:where(.react-flow__node.selected, .react-flow__edge.selected) .whenSelected\:filter_none {
|
|
6939
|
-
filter: none;
|
|
6940
|
-
}
|
|
6941
|
-
|
|
6942
|
-
:where([data-likec4-zoom-small]) .smallZoom\:filter_none {
|
|
6943
|
-
filter: none;
|
|
6944
|
-
}
|
|
6945
|
-
|
|
6946
|
-
:is(.likec4-root[data-likec4-diagram-panning]) .whenPanning\:filter_none {
|
|
6947
|
-
filter: none;
|
|
6948
|
-
}
|
|
6949
|
-
|
|
6950
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:trs-dly_\.08s {
|
|
7162
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:trs-dly_\.08s {
|
|
6951
7163
|
transition-delay: .08s;
|
|
6952
7164
|
}
|
|
6953
7165
|
|
|
6954
|
-
[data-mantine-color-scheme="light"] .light\:c_\[color-mix\(in_srgb\,_var\(--likec4-palette-stroke\)\,_\{colors\.likec4\.mixColor\}_60\%\)\] {
|
|
6955
|
-
color: color-mix(in srgb, var(--likec4-palette-stroke), var(--colors-likec4-mix-color) 60%);
|
|
6956
|
-
}
|
|
6957
|
-
|
|
6958
|
-
[data-mantine-color-scheme="dark"] .dark\:c_var\(--likec4-palette-loContrast\) {
|
|
6959
|
-
color: var(--likec4-palette-loContrast);
|
|
6960
|
-
}
|
|
6961
|
-
|
|
6962
7166
|
:where(.react-flow__edge.selected, [data-likec4-hovered='true']) .\[\:where\(\.react-flow__edge\.selected\,_\[data-likec4-hovered\=\'true\'\]\)_\&\]\:vis_visible {
|
|
6963
7167
|
visibility: visible;
|
|
6964
7168
|
}
|
|
@@ -6984,7 +7188,7 @@
|
|
|
6984
7188
|
background-color: var(--mix-backgroundColor, var(--colors-mantine-colors-dark\[6\]));
|
|
6985
7189
|
}
|
|
6986
7190
|
|
|
6987
|
-
|
|
7191
|
+
.likec4-root:is([data-likec4-diagram-panning="true"]) .whenPanning\:bg-c_mantine\.colors\.body {
|
|
6988
7192
|
background-color: var(--colors-mantine-colors-body);
|
|
6989
7193
|
}
|
|
6990
7194
|
|
|
@@ -6996,6 +7200,10 @@
|
|
|
6996
7200
|
min-height: 100%;
|
|
6997
7201
|
}
|
|
6998
7202
|
|
|
7203
|
+
[data-mantine-color-scheme="dark"] .dark\:bd-l-c_mantine\.colors\.dark\[4\] {
|
|
7204
|
+
border-left-color: var(--colors-mantine-colors-dark\[4\]);
|
|
7205
|
+
}
|
|
7206
|
+
|
|
6999
7207
|
.\[\&_\>_svg\]\:w_70\% > svg {
|
|
7000
7208
|
width: 70%;
|
|
7001
7209
|
}
|
|
@@ -7076,22 +7284,6 @@
|
|
|
7076
7284
|
margin-top: 32px;
|
|
7077
7285
|
}
|
|
7078
7286
|
|
|
7079
|
-
.before\:left_0::before {
|
|
7080
|
-
left: var(--spacing-0);
|
|
7081
|
-
}
|
|
7082
|
-
|
|
7083
|
-
.before\:w_100\%::before {
|
|
7084
|
-
width: 100%;
|
|
7085
|
-
}
|
|
7086
|
-
|
|
7087
|
-
.before\:h_100\%::before {
|
|
7088
|
-
height: 100%;
|
|
7089
|
-
}
|
|
7090
|
-
|
|
7091
|
-
.likec4-compound-node:has(.compound-action) .\[\.likec4-compound-node\:has\(\.compound-action\)_\&\]\:pl_\[22px\] {
|
|
7092
|
-
padding-left: 22px;
|
|
7093
|
-
}
|
|
7094
|
-
|
|
7095
7287
|
:where([data-likec4-shape='browser']) .shapeBrowser\:right_\[5px\] {
|
|
7096
7288
|
right: 5px;
|
|
7097
7289
|
}
|
|
@@ -7116,6 +7308,14 @@
|
|
|
7116
7308
|
top: calc(100% - 4px);
|
|
7117
7309
|
}
|
|
7118
7310
|
|
|
7311
|
+
.before\:left_0::before {
|
|
7312
|
+
left: var(--spacing-0);
|
|
7313
|
+
}
|
|
7314
|
+
|
|
7315
|
+
.before\:w_100\%::before {
|
|
7316
|
+
width: 100%;
|
|
7317
|
+
}
|
|
7318
|
+
|
|
7119
7319
|
.before\:h_24px::before {
|
|
7120
7320
|
height: 24px;
|
|
7121
7321
|
}
|
|
@@ -7136,7 +7336,7 @@
|
|
|
7136
7336
|
padding-left: 14px;
|
|
7137
7337
|
}
|
|
7138
7338
|
|
|
7139
|
-
:where([data-likec4-hovered="true"]) .whenHovered\:h_12 {
|
|
7339
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:h_12 {
|
|
7140
7340
|
height: 12px;
|
|
7141
7341
|
}
|
|
7142
7342
|
|
|
@@ -7161,14 +7361,6 @@
|
|
|
7161
7361
|
--grayscale: grayscale(0);
|
|
7162
7362
|
}
|
|
7163
7363
|
|
|
7164
|
-
:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) .whenFocused\:vis_visible {
|
|
7165
|
-
visibility: visible;
|
|
7166
|
-
}
|
|
7167
|
-
|
|
7168
|
-
:where(.react-flow__node, .react-flow__edge):is(:focus-visible, :focus, :focus-within) .whenFocused\:d_none {
|
|
7169
|
-
display: none;
|
|
7170
|
-
}
|
|
7171
|
-
|
|
7172
7364
|
.focus\:bg_mantine\.colors\.primary\[8\]:is(:focus, [data-focus]) {
|
|
7173
7365
|
background: var(--colors-mantine-colors-primary\[8\]);
|
|
7174
7366
|
}
|
|
@@ -7241,10 +7433,6 @@
|
|
|
7241
7433
|
color: var(--colors-mantine-colors-primary\[1\]);
|
|
7242
7434
|
}
|
|
7243
7435
|
|
|
7244
|
-
.group:is(:focus-visible, [data-focus-visible]) .groupFocusVisible\:vis_visible {
|
|
7245
|
-
visibility: visible;
|
|
7246
|
-
}
|
|
7247
|
-
|
|
7248
7436
|
.hover\:--icon-color_\{colors\.mantine\.colors\.dark\[1\]\}:is(:hover, [data-hover]) {
|
|
7249
7437
|
--icon-color: var(--colors-mantine-colors-dark\[1\]);
|
|
7250
7438
|
}
|
|
@@ -7461,30 +7649,6 @@
|
|
|
7461
7649
|
--ai-radius: 0px;
|
|
7462
7650
|
}
|
|
7463
7651
|
|
|
7464
|
-
[data-mantine-color-scheme="dark"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:dark\:--actionbtn-color_color-mix\(in_srgb\,_var\(--likec4-palette-loContrast\)_60\%\,_var\(--likec4-palette-fill\)\) {
|
|
7465
|
-
--actionbtn-color: color-mix(in srgb, var(--likec4-palette-loContrast) 60%, var(--likec4-palette-fill));
|
|
7466
|
-
}
|
|
7467
|
-
|
|
7468
|
-
[data-mantine-color-scheme="light"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:light\:--actionbtn-color_var\(--likec4-palette-stroke\) {
|
|
7469
|
-
--actionbtn-color: var(--likec4-palette-stroke);
|
|
7470
|
-
}
|
|
7471
|
-
|
|
7472
|
-
[data-mantine-color-scheme="light"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:light\:--actionbtn-color-hovered_var\(--likec4-palette-stroke\) {
|
|
7473
|
-
--actionbtn-color-hovered: var(--likec4-palette-stroke);
|
|
7474
|
-
}
|
|
7475
|
-
|
|
7476
|
-
[data-mantine-color-scheme="light"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:light\:--actionbtn-color-hovered-btn_var\(--likec4-palette-hiContrast\) {
|
|
7477
|
-
--actionbtn-color-hovered-btn: var(--likec4-palette-hiContrast);
|
|
7478
|
-
}
|
|
7479
|
-
|
|
7480
|
-
[data-mantine-color-scheme="light"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:light\:--actionbtn-bg-hovered_var\(--likec4-palette-fill\)\/50 {
|
|
7481
|
-
--actionbtn-bg-hovered: var(--likec4-palette-fill)/50;
|
|
7482
|
-
}
|
|
7483
|
-
|
|
7484
|
-
[data-mantine-color-scheme="light"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:light\:--actionbtn-bg-hovered-btn_var\(--likec4-palette-fill\) {
|
|
7485
|
-
--actionbtn-bg-hovered-btn: var(--likec4-palette-fill);
|
|
7486
|
-
}
|
|
7487
|
-
|
|
7488
7652
|
[data-mantine-color-scheme="dark"] .dark\:\[\&\:is\(\[data-active\]\)\]\:bg_mantine\.colors\.dark\[5\]:is([data-active]) {
|
|
7489
7653
|
background: var(--colors-mantine-colors-dark\[5\]);
|
|
7490
7654
|
}
|
|
@@ -7497,14 +7661,6 @@
|
|
|
7497
7661
|
text-decoration: underline;
|
|
7498
7662
|
}
|
|
7499
7663
|
|
|
7500
|
-
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:before\:transition_all_\{durations\.slow\}_\{easings\.inOut\}::before {
|
|
7501
|
-
transition: all var(--durations-slow) var(--easings-in-out);
|
|
7502
|
-
}
|
|
7503
|
-
|
|
7504
|
-
.\[\&\:is\(\[data-compound-transparent\]\)\]\:before\:bd-w_calc\(var\(--_border-width\,_2px\)_-_1px\):is([data-compound-transparent])::before {
|
|
7505
|
-
border-width: calc(var(--_border-width, 2px) - 1px);
|
|
7506
|
-
}
|
|
7507
|
-
|
|
7508
7664
|
.group:is(:hover, [data-hover]) .\[\&\:is\(\[data-position\=\"left\"\]\)\]\:groupHover\:c_\[inherit\]:is([data-position="left"]) {
|
|
7509
7665
|
color: inherit;
|
|
7510
7666
|
}
|
|
@@ -7550,43 +7706,27 @@
|
|
|
7550
7706
|
background-color: rgb(15 15 15/ var(--_opacity));
|
|
7551
7707
|
}
|
|
7552
7708
|
|
|
7553
|
-
|
|
7554
|
-
opacity:
|
|
7555
|
-
}
|
|
7556
|
-
|
|
7557
|
-
.likec4-root:not([data-likec4-reduced-graphics]) .before\:noReduceGraphics\:bx-sh_0_4px_10px_0\.5px_rgba\(0\,0\,0\,0\.1\)_\,_0_2px_2px_-1px_rgba\(0\,0\,0\,0\.4\)::before {
|
|
7558
|
-
box-shadow: 0 4px 10px 0.5px rgba(0,0,0,0.1) , 0 2px 2px -1px rgba(0,0,0,0.4);
|
|
7559
|
-
}
|
|
7560
|
-
|
|
7561
|
-
:where(.react-flow__node.selected, .react-flow__edge.selected) .before\:whenSelected\:bx-sh_none::before {
|
|
7562
|
-
box-shadow: var(--shadows-none);
|
|
7563
|
-
}
|
|
7564
|
-
|
|
7565
|
-
:is(.likec4-root[data-likec4-diagram-panning]) .before\:whenPanning\:bx-sh_none\!::before {
|
|
7566
|
-
box-shadow: var(--shadows-none) !important;
|
|
7567
|
-
}
|
|
7568
|
-
|
|
7569
|
-
[data-mantine-color-scheme="light"] [data-compound-title-inverse] .\[\[data-compound-title-inverse\]_\&\]\:light\:c_var\(--likec4-palette-stroke\) {
|
|
7570
|
-
color: var(--likec4-palette-stroke);
|
|
7709
|
+
:where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) :where(.react-flow__node.selected, .react-flow__edge.selected) .whenSelected\:whenHovered\:stk-op_0\.4 {
|
|
7710
|
+
stroke-opacity: 0.4;
|
|
7571
7711
|
}
|
|
7572
7712
|
|
|
7573
|
-
.likec4-root:
|
|
7574
|
-
|
|
7713
|
+
.likec4-root:not([data-likec4-reduced-graphics]) :where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:noReduceGraphics\:anim-ps_running {
|
|
7714
|
+
animation-play-state: running;
|
|
7575
7715
|
}
|
|
7576
7716
|
|
|
7577
|
-
[data-
|
|
7578
|
-
|
|
7717
|
+
.likec4-root:not([data-likec4-reduced-graphics]) :where(.react-flow__node, .react-flow__edge):has([data-likec4-hovered="true"]) .whenHovered\:noReduceGraphics\:anim-dly_450ms {
|
|
7718
|
+
animation-delay: 450ms;
|
|
7579
7719
|
}
|
|
7580
7720
|
|
|
7581
|
-
|
|
7582
|
-
|
|
7721
|
+
.likec4-root:not([data-likec4-reduced-graphics]) :where(.react-flow__edge.selected, [data-edge-active='true'], [data-edge-animated='true']) .\[\:where\(\.react-flow__edge\.selected\,_\[data-edge-active\=\'true\'\]\,_\[data-edge-animated\=\'true\'\]\)_\&\]\:noReduceGraphics\:anim-ps_running {
|
|
7722
|
+
animation-play-state: running;
|
|
7583
7723
|
}
|
|
7584
7724
|
|
|
7585
|
-
:
|
|
7586
|
-
|
|
7725
|
+
.likec4-root:not([data-likec4-reduced-graphics]) :where(.react-flow__edge.selected, [data-edge-active='true'], [data-edge-animated='true']) .\[\:where\(\.react-flow__edge\.selected\,_\[data-edge-active\=\'true\'\]\,_\[data-edge-animated\=\'true\'\]\)_\&\]\:noReduceGraphics\:anim-dly_0ms {
|
|
7726
|
+
animation-delay: 0ms;
|
|
7587
7727
|
}
|
|
7588
7728
|
|
|
7589
|
-
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning]) .reduceGraphicsOnPan\:before\:d_none::before {
|
|
7729
|
+
.likec4-root:is([data-likec4-reduced-graphics][data-likec4-diagram-panning="true"]) .reduceGraphicsOnPan\:before\:d_none::before {
|
|
7590
7730
|
display: none;
|
|
7591
7731
|
}
|
|
7592
7732
|
|
|
@@ -7661,6 +7801,11 @@
|
|
|
7661
7801
|
background-color: var(--colors-mantine-colors-dark\[4\]);
|
|
7662
7802
|
}
|
|
7663
7803
|
|
|
7804
|
+
[data-mantine-color-scheme="dark"] .hover\:dark\:bg-c_mantine\.colors\.dark\[5\]\/70:is(:hover, [data-hover]) {
|
|
7805
|
+
--mix-backgroundColor: color-mix(in srgb, var(--colors-mantine-colors-dark\[5\]) 70%, transparent);
|
|
7806
|
+
background-color: var(--mix-backgroundColor, var(--colors-mantine-colors-dark\[5\]));
|
|
7807
|
+
}
|
|
7808
|
+
|
|
7664
7809
|
[data-mantine-color-scheme="dark"] .dark\:hover\:c_mantine\.colors\.white:is(:hover, [data-hover]) {
|
|
7665
7810
|
color: var(--colors-mantine-colors-white);
|
|
7666
7811
|
}
|
|
@@ -7708,15 +7853,6 @@
|
|
|
7708
7853
|
background-color: var(--mix-backgroundColor, var(--colors-mantine-colors-dark\[3\]));
|
|
7709
7854
|
}
|
|
7710
7855
|
|
|
7711
|
-
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:\[\&\[data-likec4-hovered\=\'true\'\]\]\:before\:trs-dly_\.2s[data-likec4-hovered='true']::before {
|
|
7712
|
-
transition-delay: .2s;
|
|
7713
|
-
}
|
|
7714
|
-
|
|
7715
|
-
.likec4-root:not([data-likec4-reduced-graphics]) .noReduceGraphics\:\[\&\[data-likec4-hovered\=\'true\'\]\]\:before\:trs-tmf_in[data-likec4-hovered='true']::before {
|
|
7716
|
-
--transition-easing: var(--easings-in);
|
|
7717
|
-
transition-timing-function: var(--easings-in);
|
|
7718
|
-
}
|
|
7719
|
-
|
|
7720
7856
|
@container (min-width: 24rem) {
|
|
7721
7857
|
.\@\/xs\:d_flex {
|
|
7722
7858
|
display: flex;
|
|
@@ -7744,9 +7880,6 @@
|
|
|
7744
7880
|
}
|
|
7745
7881
|
.xs\:max-h_calc\(100cqh_-_70px\) {
|
|
7746
7882
|
max-height: calc(100cqh - 70px);
|
|
7747
|
-
}
|
|
7748
|
-
.\[\&_svg\,_\&_img\]\:xs\:filter_drop-shadow\(0_1px_8px_rgb\(0_0_0_\/_8\%\)\) svg,.\[\&_svg\,_\&_img\]\:xs\:filter_drop-shadow\(0_1px_8px_rgb\(0_0_0_\/_8\%\)\) img {
|
|
7749
|
-
filter: drop-shadow(0 1px 8px rgb(0 0 0 / 8%));
|
|
7750
7883
|
}
|
|
7751
7884
|
}
|
|
7752
7885
|
|
|
@@ -7777,12 +7910,6 @@
|
|
|
7777
7910
|
max-width: calc(100cqw - 2 * var(--spacing-md));
|
|
7778
7911
|
}
|
|
7779
7912
|
}
|
|
7780
|
-
}
|
|
7781
|
-
|
|
7782
|
-
@container likec4-root (min-width: 40rem) {
|
|
7783
|
-
.\@likec4-root\/sm\:d_flex {
|
|
7784
|
-
display: flex;
|
|
7785
|
-
}
|
|
7786
7913
|
}
|
|
7787
7914
|
|
|
7788
7915
|
@container (min-width: 48rem) {
|
|
@@ -7830,9 +7957,6 @@
|
|
|
7830
7957
|
}
|
|
7831
7958
|
.sm\:max-w_65vw {
|
|
7832
7959
|
max-width: 65vw;
|
|
7833
|
-
}
|
|
7834
|
-
.\[\&_svg\,_\&_img\]\:sm\:filter_drop-shadow\(1px_1px_16px_rgb\(0_0_0_\/_3\%\)\) svg,.\[\&_svg\,_\&_img\]\:sm\:filter_drop-shadow\(1px_1px_16px_rgb\(0_0_0_\/_3\%\)\) img {
|
|
7835
|
-
filter: drop-shadow(1px 1px 16px rgb(0 0 0 / 3%));
|
|
7836
7960
|
}
|
|
7837
7961
|
}
|
|
7838
7962
|
|