@layerfi/components 0.1.108 → 0.1.110
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/cjs/index.cjs +10323 -9321
- package/dist/esm/index.mjs +9863 -8859
- package/dist/index.css +124 -284
- package/dist/index.d.ts +7521 -3842
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -427,9 +427,19 @@
|
|
|
427
427
|
}
|
|
428
428
|
}
|
|
429
429
|
.Layer__btn {
|
|
430
|
+
box-sizing: border-box;
|
|
430
431
|
position: relative;
|
|
432
|
+
min-height: 36px;
|
|
433
|
+
padding: 0 var(--spacing-md);
|
|
431
434
|
border-radius: var(--btn-border-radius);
|
|
432
435
|
border-width: 0;
|
|
436
|
+
box-shadow:
|
|
437
|
+
0 0 0 1px var(--color-base-300),
|
|
438
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.04),
|
|
439
|
+
0 2px 3px 0 rgba(0, 0, 0, 0.04),
|
|
440
|
+
0 3px 4px 0 rgba(0, 0, 0, 0.02),
|
|
441
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.01);
|
|
442
|
+
cursor: pointer;
|
|
433
443
|
font-family: var(--font-family);
|
|
434
444
|
font-weight: var(--font-weight-normal);
|
|
435
445
|
font-variant-numeric: lining-nums proportional-nums;
|
|
@@ -438,17 +448,7 @@
|
|
|
438
448
|
"cv05" on,
|
|
439
449
|
"cv08" on,
|
|
440
450
|
"ss03" on;
|
|
441
|
-
cursor: pointer;
|
|
442
|
-
min-height: 36px;
|
|
443
|
-
box-sizing: border-box;
|
|
444
|
-
box-shadow:
|
|
445
|
-
0 0 0 1px var(--color-base-300),
|
|
446
|
-
0 1px 1px 0 rgba(0, 0, 0, 0.04),
|
|
447
|
-
0 2px 3px 0 rgba(0, 0, 0, 0.04),
|
|
448
|
-
0 3px 4px 0 rgba(0, 0, 0, 0.02),
|
|
449
|
-
0 4px 5px 0 rgba(0, 0, 0, 0.01);
|
|
450
451
|
transition: all 100ms ease-out;
|
|
451
|
-
padding: 0 var(--spacing-md);
|
|
452
452
|
text-decoration: none;
|
|
453
453
|
white-space: nowrap;
|
|
454
454
|
}
|
|
@@ -457,38 +457,18 @@
|
|
|
457
457
|
align-items: center;
|
|
458
458
|
}
|
|
459
459
|
.Layer__btn.Layer__back-btn {
|
|
460
|
-
|
|
461
|
-
background: var(--btn-secondary-bg-color);
|
|
460
|
+
box-sizing: border-box;
|
|
462
461
|
display: flex;
|
|
463
|
-
justify-content: center;
|
|
464
462
|
align-items: center;
|
|
465
|
-
|
|
466
|
-
box-sizing: border-box;
|
|
467
|
-
transition: all 150ms ease-out;
|
|
468
|
-
padding: 0;
|
|
469
|
-
width: 36px;
|
|
463
|
+
justify-content: center;
|
|
470
464
|
height: 36px;
|
|
465
|
+
width: 36px;
|
|
471
466
|
min-width: 36px;
|
|
472
|
-
|
|
473
|
-
.Layer__btn.Layer__expand-btn {
|
|
474
|
-
color: var(--btn-secondary-color);
|
|
475
|
-
background: var(--btn-secondary-bg-color);
|
|
476
|
-
display: flex;
|
|
477
|
-
justify-content: center;
|
|
478
|
-
align-items: center;
|
|
467
|
+
padding: 0;
|
|
479
468
|
border-radius: 4px;
|
|
480
|
-
|
|
469
|
+
background: var(--btn-secondary-bg-color);
|
|
470
|
+
color: var(--btn-secondary-color);
|
|
481
471
|
transition: all 150ms ease-out;
|
|
482
|
-
padding: 0;
|
|
483
|
-
width: 36px;
|
|
484
|
-
height: 36px;
|
|
485
|
-
}
|
|
486
|
-
.Layer__btn.Layer__expand-btn svg {
|
|
487
|
-
transform: rotate(90deg);
|
|
488
|
-
transition: transform 120ms ease-in-out;
|
|
489
|
-
}
|
|
490
|
-
.Layer__btn.Layer__expand-btn.Layer__expand-btn--collapsed svg {
|
|
491
|
-
transform: rotate(-90deg);
|
|
492
472
|
}
|
|
493
473
|
.Layer__btn.Layer__btn--full-width {
|
|
494
474
|
width: 100%;
|
|
@@ -504,30 +484,30 @@
|
|
|
504
484
|
}
|
|
505
485
|
.Layer__btn .Layer__btn-content {
|
|
506
486
|
display: flex;
|
|
507
|
-
justify-content: center;
|
|
508
|
-
align-items: center;
|
|
509
487
|
column-gap: var(--spacing-xs);
|
|
488
|
+
align-items: center;
|
|
489
|
+
justify-content: center;
|
|
510
490
|
}
|
|
511
491
|
.Layer__btn .Layer__btn-content.Layer__justify--space-between {
|
|
512
492
|
justify-content: space-between;
|
|
513
493
|
}
|
|
514
494
|
.Layer__btn .Layer__btn-icon {
|
|
515
|
-
|
|
516
|
-
background: transparent;
|
|
495
|
+
box-sizing: border-box;
|
|
517
496
|
display: flex;
|
|
518
|
-
justify-content: center;
|
|
519
497
|
align-items: center;
|
|
498
|
+
justify-content: center;
|
|
520
499
|
border-radius: 4px;
|
|
521
|
-
|
|
500
|
+
background: transparent;
|
|
501
|
+
color: var(--btn-color-icon);
|
|
522
502
|
transition: all 150ms ease-out;
|
|
523
503
|
}
|
|
524
504
|
.Layer__btn .Layer__btn-icon .Layer__btn-icon--on-active {
|
|
525
505
|
display: none;
|
|
526
506
|
}
|
|
527
507
|
.Layer__btn .Layer__btn-icon.Layer__btn-icon--primary {
|
|
528
|
-
background: var(--btn-bg-color-icon);
|
|
529
|
-
width: 32px;
|
|
530
508
|
height: 32px;
|
|
509
|
+
width: 32px;
|
|
510
|
+
background: var(--btn-bg-color-icon);
|
|
531
511
|
}
|
|
532
512
|
.Layer__btn:hover {
|
|
533
513
|
box-shadow: 0 0 0 1px var(--color-base-300), 0 1px 2px 0 var(--base-transparent-6);
|
|
@@ -549,16 +529,16 @@
|
|
|
549
529
|
color: var(--color-base-500);
|
|
550
530
|
}
|
|
551
531
|
.Layer__btn--secondary {
|
|
552
|
-
color: var(--btn-secondary-color);
|
|
553
|
-
background: var(--btn-secondary-bg-color);
|
|
554
532
|
border: 1px solid var(--border-color);
|
|
555
533
|
box-shadow: none;
|
|
534
|
+
background: var(--btn-secondary-bg-color);
|
|
535
|
+
color: var(--btn-secondary-color);
|
|
556
536
|
}
|
|
557
537
|
.Layer__btn--tertiary {
|
|
558
|
-
|
|
538
|
+
box-shadow: none;
|
|
559
539
|
background: var(--btn-tertiary-bg-color);
|
|
540
|
+
color: var(--btn-tertiary-color);
|
|
560
541
|
border-color: transparent;
|
|
561
|
-
box-shadow: none;
|
|
562
542
|
}
|
|
563
543
|
.Layer__download-retry-btn {
|
|
564
544
|
width: 122px;
|
|
@@ -567,17 +547,17 @@
|
|
|
567
547
|
width: 36px;
|
|
568
548
|
}
|
|
569
549
|
.Layer__btn--primary {
|
|
570
|
-
color: var(--btn-color-primary);
|
|
571
550
|
background: var(--btn-bg-color-primary);
|
|
551
|
+
color: var(--btn-color-primary);
|
|
572
552
|
}
|
|
573
553
|
.Layer__btn--primary:hover .Layer__btn-icon {
|
|
574
|
-
color: var(--btn-color-primary);
|
|
575
554
|
background: transparent;
|
|
555
|
+
color: var(--btn-color-primary);
|
|
576
556
|
}
|
|
577
557
|
.Layer__btn--primary:hover:not([disabled]) .Layer__btn-icon,
|
|
578
558
|
.Layer__btn--primary.Layer__btn--active:not([disabled]) .Layer__btn-icon {
|
|
579
|
-
color: var(--btn-color-icon-hover);
|
|
580
559
|
background: var(--btn-bg-color-icon-hover);
|
|
560
|
+
color: var(--btn-color-icon-hover);
|
|
581
561
|
}
|
|
582
562
|
.Layer__btn--primary:hover:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-active,
|
|
583
563
|
.Layer__btn--primary.Layer__btn--active:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-active {
|
|
@@ -595,27 +575,27 @@
|
|
|
595
575
|
}
|
|
596
576
|
.Layer__btn--primary:not(.Layer__btn--with-primary-icon):hover:not([disabled]) .Layer__btn-icon,
|
|
597
577
|
.Layer__btn--primary:not(.Layer__btn--with-primary-icon).Layer__btn--active:not([disabled]) .Layer__btn-icon {
|
|
598
|
-
color: var(--btn-color-primary);
|
|
599
578
|
background: transparent;
|
|
579
|
+
color: var(--btn-color-primary);
|
|
600
580
|
}
|
|
601
581
|
.Layer__btn-content {
|
|
602
|
-
padding: 2px;
|
|
603
582
|
display: flex;
|
|
604
583
|
align-items: center;
|
|
584
|
+
padding: 2px;
|
|
605
585
|
font-size: var(--btn-font-size);
|
|
606
586
|
line-height: 100%;
|
|
607
587
|
}
|
|
608
588
|
.Layer__btn-text {
|
|
609
589
|
flex: 1;
|
|
610
|
-
font-family: var(--font-family);
|
|
611
590
|
font-size: var(--btn-font-size);
|
|
591
|
+
font-family: var(--font-family);
|
|
612
592
|
}
|
|
613
593
|
.Layer__btn--with-primary-icon .Layer__btn-text {
|
|
614
594
|
padding-right: calc(var(--spacing-md) - 4px);
|
|
615
595
|
}
|
|
616
596
|
.Layer__btn--icon-only {
|
|
617
|
-
width: 36px;
|
|
618
597
|
height: 36px;
|
|
598
|
+
width: 36px;
|
|
619
599
|
}
|
|
620
600
|
.Layer__btn--icon-only.Layer__btn--secondary .Layer__btn-icon {
|
|
621
601
|
background-color: transparent;
|
|
@@ -627,26 +607,26 @@
|
|
|
627
607
|
margin-right: 0;
|
|
628
608
|
}
|
|
629
609
|
.Layer__icon-btn {
|
|
630
|
-
|
|
631
|
-
height: 36px;
|
|
610
|
+
box-sizing: border-box;
|
|
632
611
|
display: flex;
|
|
633
612
|
align-items: center;
|
|
634
613
|
justify-content: center;
|
|
635
|
-
|
|
636
|
-
|
|
614
|
+
height: 36px;
|
|
615
|
+
width: 36px;
|
|
616
|
+
padding: 0;
|
|
637
617
|
border-radius: var(--btn-border-radius);
|
|
638
618
|
border-width: 0;
|
|
619
|
+
background: transparent;
|
|
620
|
+
cursor: pointer;
|
|
639
621
|
font-family: var(--font-family);
|
|
640
622
|
font-weight: var(--font-weight-normal);
|
|
623
|
+
color: var(--color-base-500);
|
|
641
624
|
font-variant-numeric: lining-nums proportional-nums;
|
|
642
625
|
font-feature-settings:
|
|
643
626
|
"cv10" on,
|
|
644
627
|
"cv05" on,
|
|
645
628
|
"cv08" on,
|
|
646
629
|
"ss03" on;
|
|
647
|
-
padding: 0;
|
|
648
|
-
cursor: pointer;
|
|
649
|
-
box-sizing: border-box;
|
|
650
630
|
transition: all 100ms ease-out;
|
|
651
631
|
}
|
|
652
632
|
.Layer__icon-btn:hover {
|
|
@@ -654,17 +634,17 @@
|
|
|
654
634
|
color: var(--color-base-1000);
|
|
655
635
|
}
|
|
656
636
|
.Layer__icon-btn.Layer__icon-btn--border {
|
|
657
|
-
color: var(--color-base-800);
|
|
658
637
|
box-shadow:
|
|
659
638
|
0 0 0 1px var(--color-base-300),
|
|
660
639
|
0 1px 1px 0 var(--base-transparent-4),
|
|
661
640
|
0 2px 3px 0 var(--base-transparent-4),
|
|
662
641
|
0 3px 4px 0 var(--base-transparent-2),
|
|
663
642
|
0 4px 5px 0 var(--base-transparent-1);
|
|
643
|
+
color: var(--color-base-800);
|
|
664
644
|
}
|
|
665
645
|
.Layer__icon-btn.Layer__icon-btn--border:hover {
|
|
666
|
-
background-color: var(--color-base-0);
|
|
667
646
|
box-shadow: 0 0 0 1px var(--color-base-300), 0 1px 2px 0 var(--base-transparent-6);
|
|
647
|
+
background-color: var(--color-base-0);
|
|
668
648
|
}
|
|
669
649
|
.Layer__icon-btn.Layer__icon-btn--active {
|
|
670
650
|
background-color: var(--color-base-200);
|
|
@@ -674,14 +654,14 @@
|
|
|
674
654
|
background-color: var(--color-base-300);
|
|
675
655
|
}
|
|
676
656
|
.Layer__text-btn {
|
|
677
|
-
|
|
678
|
-
box-shadow: none;
|
|
657
|
+
padding: 0;
|
|
679
658
|
border-width: 0;
|
|
680
|
-
|
|
681
|
-
|
|
659
|
+
box-shadow: none;
|
|
660
|
+
outline: none;
|
|
682
661
|
background: transparent;
|
|
683
|
-
padding: 0;
|
|
684
662
|
cursor: pointer;
|
|
663
|
+
color: var(--color-base-700);
|
|
664
|
+
text-decoration: underline;
|
|
685
665
|
}
|
|
686
666
|
.Layer__text-btn:hover {
|
|
687
667
|
color: var(--color-base-1000);
|
|
@@ -700,10 +680,10 @@
|
|
|
700
680
|
animation: rotating-ccw 2s linear infinite;
|
|
701
681
|
}
|
|
702
682
|
.Layer__unsaved-info {
|
|
703
|
-
color: var(--color-danger);
|
|
704
683
|
display: flex;
|
|
705
|
-
align-items: center;
|
|
706
684
|
gap: var(--spacing-4xs);
|
|
685
|
+
align-items: center;
|
|
686
|
+
color: var(--color-danger);
|
|
707
687
|
}
|
|
708
688
|
.Layer__expand-collpase-all-rows-btn {
|
|
709
689
|
min-width: 152px;
|
|
@@ -713,19 +693,19 @@
|
|
|
713
693
|
align-items: center;
|
|
714
694
|
}
|
|
715
695
|
.Layer__switch__container .Layer__switch__button {
|
|
716
|
-
|
|
696
|
+
box-sizing: border-box;
|
|
697
|
+
position: relative;
|
|
717
698
|
display: flex;
|
|
718
699
|
align-items: center;
|
|
719
700
|
justify-content: center;
|
|
720
|
-
|
|
721
|
-
|
|
701
|
+
min-height: 36px;
|
|
702
|
+
padding: 0 2px;
|
|
722
703
|
border-radius: var(--btn-border-radius);
|
|
723
|
-
|
|
704
|
+
border-width: 0;
|
|
705
|
+
background: transparent;
|
|
724
706
|
cursor: pointer;
|
|
725
|
-
|
|
726
|
-
box-sizing: border-box;
|
|
707
|
+
font-family: var(--font-family);
|
|
727
708
|
transition: all 100ms ease-out;
|
|
728
|
-
padding: 0 2px;
|
|
729
709
|
text-decoration: none;
|
|
730
710
|
}
|
|
731
711
|
.Layer__switch__container .Layer__switch__button:focus,
|
|
@@ -743,10 +723,10 @@
|
|
|
743
723
|
border-color: var(--color-white);
|
|
744
724
|
}
|
|
745
725
|
.Layer__switch__container .Layer__switch__button--disabled .Layer__switch__knob__wrapper {
|
|
746
|
-
color: var(--btn-color-icon-hover);
|
|
747
726
|
background: var(--color-white);
|
|
748
|
-
border-color: var(--btn-bg-color-icon-hover);
|
|
749
727
|
cursor: not-allowed;
|
|
728
|
+
color: var(--btn-color-icon-hover);
|
|
729
|
+
border-color: var(--btn-bg-color-icon-hover);
|
|
750
730
|
}
|
|
751
731
|
.Layer__switch__container .Layer__switch__button--disabled .Layer__switch__knob__wrapper .Layer__switch__knob {
|
|
752
732
|
background: var(--color-white);
|
|
@@ -759,33 +739,33 @@
|
|
|
759
739
|
display: flex;
|
|
760
740
|
align-items: center;
|
|
761
741
|
justify-content: flex-start;
|
|
762
|
-
background: var(--color-white);
|
|
763
|
-
border: 2px solid var(--color-base-300);
|
|
764
|
-
width: 18px;
|
|
765
742
|
height: 12px;
|
|
743
|
+
width: 18px;
|
|
766
744
|
padding: 0 2px;
|
|
767
745
|
border-radius: 10px;
|
|
746
|
+
border: 2px solid var(--color-base-300);
|
|
747
|
+
background: var(--color-white);
|
|
768
748
|
transition: all 0.2s ease;
|
|
769
749
|
}
|
|
770
750
|
.Layer__switch__container .Layer__switch__knob__wrapper .Layer__switch__knob {
|
|
771
|
-
width: 6px;
|
|
772
751
|
height: 6px;
|
|
773
|
-
|
|
752
|
+
width: 6px;
|
|
774
753
|
border-radius: 50%;
|
|
775
754
|
border: 2px solid var(--color-base-300);
|
|
755
|
+
background-color: var(--color-white);
|
|
776
756
|
transition: all 0.2s ease;
|
|
777
757
|
}
|
|
778
758
|
.Layer__switch__container .Layer__switch__label {
|
|
779
|
-
color: var(--btn-color-icon-hover);
|
|
780
759
|
margin-right: 10px;
|
|
760
|
+
color: var(--btn-color-icon-hover);
|
|
781
761
|
}
|
|
782
762
|
.Layer__btn.Layer__btn--with-tooltip {
|
|
783
763
|
padding: 0;
|
|
784
764
|
}
|
|
785
765
|
.Layer__btn.Layer__btn--with-tooltip .Layer__tooltip-trigger {
|
|
786
|
-
padding: 0 var(--spacing-md);
|
|
787
766
|
justify-content: center;
|
|
788
767
|
height: 100%;
|
|
768
|
+
padding: 0 var(--spacing-md);
|
|
789
769
|
}
|
|
790
770
|
.Layer__card {
|
|
791
771
|
display: flex;
|
|
@@ -981,7 +961,7 @@
|
|
|
981
961
|
gap: var(--spacing-md);
|
|
982
962
|
align-items: center;
|
|
983
963
|
justify-content: space-between;
|
|
984
|
-
padding: var(--spacing-
|
|
964
|
+
padding: var(--spacing-lg);
|
|
985
965
|
}
|
|
986
966
|
.Layer__component-header.Layer__component-header--next-line-actions {
|
|
987
967
|
flex-direction: column;
|
|
@@ -1005,18 +985,6 @@
|
|
|
1005
985
|
align-items: center;
|
|
1006
986
|
justify-content: space-between;
|
|
1007
987
|
}
|
|
1008
|
-
@container (max-width: 760px) {
|
|
1009
|
-
.Layer__component-header {
|
|
1010
|
-
padding: var(--spacing-md);
|
|
1011
|
-
}
|
|
1012
|
-
}
|
|
1013
|
-
@container (min-width: 1023px) {
|
|
1014
|
-
.Layer__component-header {
|
|
1015
|
-
padding-top: var(--spacing-xl);
|
|
1016
|
-
padding-right: var(--spacing-xl);
|
|
1017
|
-
padding-left: var(--spacing-xl);
|
|
1018
|
-
}
|
|
1019
|
-
}
|
|
1020
988
|
.Layer__error-boundary {
|
|
1021
989
|
padding: var(--spacing-xl);
|
|
1022
990
|
}
|
|
@@ -3533,6 +3501,19 @@
|
|
|
3533
3501
|
.Layer__select__menu-portal .Layer__select__option--hidden {
|
|
3534
3502
|
display: none;
|
|
3535
3503
|
}
|
|
3504
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading {
|
|
3505
|
+
cursor: default;
|
|
3506
|
+
}
|
|
3507
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading.Layer__select__option--is-focused,
|
|
3508
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading.Layer__select__option--is-selected,
|
|
3509
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:hover,
|
|
3510
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:focus,
|
|
3511
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:active,
|
|
3512
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:focus-visible,
|
|
3513
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:focus-within {
|
|
3514
|
+
background: transparent;
|
|
3515
|
+
color: inherit;
|
|
3516
|
+
}
|
|
3536
3517
|
.Layer__select__menu-portal .Layer__select__option-content__match {
|
|
3537
3518
|
display: flex;
|
|
3538
3519
|
flex-direction: column;
|
|
@@ -4207,12 +4188,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4207
4188
|
white-space: nowrap;
|
|
4208
4189
|
overflow: hidden;
|
|
4209
4190
|
}
|
|
4210
|
-
.Layer__flex-1 {
|
|
4211
|
-
flex: 1;
|
|
4212
|
-
}
|
|
4213
|
-
.Layer__flex-col {
|
|
4214
|
-
flex-direction: column;
|
|
4215
|
-
}
|
|
4216
4191
|
.Layer__justify--center {
|
|
4217
4192
|
justify-content: center;
|
|
4218
4193
|
}
|
|
@@ -4228,9 +4203,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4228
4203
|
.Layer__nowrap {
|
|
4229
4204
|
white-space: nowrap;
|
|
4230
4205
|
}
|
|
4231
|
-
.Layer__pt-2 {
|
|
4232
|
-
padding-top: 2px;
|
|
4233
|
-
}
|
|
4234
4206
|
.Layer__border-top {
|
|
4235
4207
|
border-top: 1px solid var(--border-color);
|
|
4236
4208
|
}
|
|
@@ -4253,26 +4225,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4253
4225
|
transform: rotate(-360deg);
|
|
4254
4226
|
}
|
|
4255
4227
|
}
|
|
4256
|
-
@keyframes fadeIn {
|
|
4257
|
-
from {
|
|
4258
|
-
opacity: 0;
|
|
4259
|
-
transform: translateY(20px);
|
|
4260
|
-
}
|
|
4261
|
-
to {
|
|
4262
|
-
opacity: 1;
|
|
4263
|
-
transform: translateY(0);
|
|
4264
|
-
}
|
|
4265
|
-
}
|
|
4266
|
-
@keyframes fadeOut {
|
|
4267
|
-
from {
|
|
4268
|
-
opacity: 1;
|
|
4269
|
-
transform: translateY(0);
|
|
4270
|
-
}
|
|
4271
|
-
to {
|
|
4272
|
-
opacity: 0;
|
|
4273
|
-
transform: translateY(20px);
|
|
4274
|
-
}
|
|
4275
|
-
}
|
|
4276
4228
|
.Layer__anim--rotating {
|
|
4277
4229
|
animation: rotating 2s linear infinite;
|
|
4278
4230
|
}
|
|
@@ -4690,6 +4642,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4690
4642
|
overflow-y: auto;
|
|
4691
4643
|
}
|
|
4692
4644
|
.Layer__ComboBoxMenuList .Layer__ComboBoxOption {
|
|
4645
|
+
display: grid;
|
|
4693
4646
|
cursor: pointer;
|
|
4694
4647
|
}
|
|
4695
4648
|
.Layer__ComboBoxMenuList .Layer__ComboBoxOption--disabled {
|
|
@@ -4709,6 +4662,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4709
4662
|
padding-inline: var(--spacing-sm);
|
|
4710
4663
|
}
|
|
4711
4664
|
.Layer__ComboBoxOption {
|
|
4665
|
+
grid-template-columns: 16px auto;
|
|
4666
|
+
gap: var(--spacing-2xs);
|
|
4712
4667
|
padding-block: var(--spacing-xs);
|
|
4713
4668
|
padding-inline: var(--spacing-3xs);
|
|
4714
4669
|
border: 2px solid transparent;
|
|
@@ -6137,22 +6092,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6137
6092
|
gap: var(--spacing-xs);
|
|
6138
6093
|
align-items: center;
|
|
6139
6094
|
}
|
|
6140
|
-
@container (min-width:
|
|
6141
|
-
.Layer__TransactionsActions {
|
|
6142
|
-
grid-template-areas: "toggle . search download-upload";
|
|
6143
|
-
grid-template-columns: auto minmax(0, 2fr) minmax(15rem, 3fr) auto;
|
|
6144
|
-
}
|
|
6145
|
-
}
|
|
6146
|
-
@container (min-width: 780px) {
|
|
6147
|
-
.Layer__TransactionsActions {
|
|
6148
|
-
grid-template-areas: "toggle . search download-upload";
|
|
6149
|
-
grid-template-columns: auto minmax(0, 3fr) minmax(15rem, 2fr) auto;
|
|
6150
|
-
}
|
|
6151
|
-
}
|
|
6152
|
-
@container (min-width: 1024px) {
|
|
6095
|
+
@container (min-width: 768px) {
|
|
6153
6096
|
.Layer__TransactionsActions {
|
|
6154
6097
|
grid-template-areas: "toggle . search download-upload";
|
|
6155
|
-
grid-template-columns: auto minmax(0,
|
|
6098
|
+
grid-template-columns: auto minmax(0, 2fr) 15rem auto;
|
|
6156
6099
|
}
|
|
6157
6100
|
}
|
|
6158
6101
|
.Layer__TransactionsActions > [slot=toggle] {
|
|
@@ -6840,7 +6783,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6840
6783
|
width: 11rem;
|
|
6841
6784
|
}
|
|
6842
6785
|
.Layer__InvoiceDetail {
|
|
6843
|
-
width: clamp(
|
|
6786
|
+
width: clamp(62rem, 100%, 1406px);
|
|
6844
6787
|
}
|
|
6845
6788
|
.Layer__InvoiceDetail__SubHeader {
|
|
6846
6789
|
align-items: center;
|
|
@@ -6869,7 +6812,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6869
6812
|
}
|
|
6870
6813
|
.Layer__InvoiceForm .Layer__InvoiceForm__LineItem {
|
|
6871
6814
|
display: grid;
|
|
6872
|
-
--grid-cols-base: minmax(10rem,
|
|
6815
|
+
--grid-cols-base: minmax(10rem, 3fr) minmax(10rem, 3fr) minmax(12rem, 4fr) minmax(4rem, 1fr) minmax(6rem, 2fr) minmax(6rem, 2fr) minmax(3rem, 0fr);
|
|
6873
6816
|
grid-template-columns: var(--grid-cols-base) auto;
|
|
6874
6817
|
width: 100%;
|
|
6875
6818
|
}
|
|
@@ -9983,6 +9926,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9983
9926
|
.Layer__chart-of-accounts__table {
|
|
9984
9927
|
table-layout: fixed;
|
|
9985
9928
|
}
|
|
9929
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--accountnumber {
|
|
9930
|
+
width: 13rem;
|
|
9931
|
+
}
|
|
9986
9932
|
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--name {
|
|
9987
9933
|
width: auto;
|
|
9988
9934
|
min-width: 16rem;
|
|
@@ -10355,6 +10301,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10355
10301
|
width: 64px;
|
|
10356
10302
|
}
|
|
10357
10303
|
}
|
|
10304
|
+
.Layer__JournalTable__account-number-cell {
|
|
10305
|
+
max-width: 8rem;
|
|
10306
|
+
}
|
|
10358
10307
|
@container (max-width: 760px) {
|
|
10359
10308
|
.Layer__table-cell.Layer__journal__actions {
|
|
10360
10309
|
width: 64px;
|
|
@@ -10948,18 +10897,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10948
10897
|
.Layer__linked-accounts__options .Layer__linked-accounts__options-overlay--transparent {
|
|
10949
10898
|
background: none;
|
|
10950
10899
|
}
|
|
10951
|
-
.Layer__linked-accounts-pill__options-overlay {
|
|
10952
|
-
position: absolute;
|
|
10953
|
-
top: 0;
|
|
10954
|
-
left: 0;
|
|
10955
|
-
bottom: 0;
|
|
10956
|
-
right: 0;
|
|
10957
|
-
cursor: pointer;
|
|
10958
|
-
}
|
|
10959
|
-
.Layer__linked-accounts-pill__invisible-spacer {
|
|
10960
|
-
width: 100%;
|
|
10961
|
-
height: 24px;
|
|
10962
|
-
}
|
|
10963
10900
|
.Layer__loader {
|
|
10964
10901
|
box-sizing: border-box;
|
|
10965
10902
|
display: flex;
|
|
@@ -11204,98 +11141,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11204
11141
|
width: 100%;
|
|
11205
11142
|
}
|
|
11206
11143
|
}
|
|
11207
|
-
.Layer__date-picker {
|
|
11208
|
-
position: relative;
|
|
11209
|
-
display: inline-block;
|
|
11210
|
-
}
|
|
11211
|
-
.Layer__date-picker .Layer__dropdown-toggle {
|
|
11212
|
-
display: flex;
|
|
11213
|
-
gap: 20px;
|
|
11214
|
-
align-items: center;
|
|
11215
|
-
justify-content: space-between;
|
|
11216
|
-
min-width: 180px;
|
|
11217
|
-
min-height: var(--spacing-2xl);
|
|
11218
|
-
padding: var(--spacing-3xs) var(--spacing-xs) var(--spacing-3xs);
|
|
11219
|
-
padding-left: var(--spacing-lm);
|
|
11220
|
-
border-radius: var(--spacing-2xs);
|
|
11221
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
11222
|
-
background-color: var(--color-white);
|
|
11223
|
-
cursor: pointer;
|
|
11224
|
-
font-size: 14px;
|
|
11225
|
-
text-align: left;
|
|
11226
|
-
border: 1px solid transparent;
|
|
11227
|
-
}
|
|
11228
|
-
.Layer__date-picker .Layer__dropdown-toggle .Layer__chevron {
|
|
11229
|
-
display: flex;
|
|
11230
|
-
transition: transform 0.3s ease;
|
|
11231
|
-
}
|
|
11232
|
-
.Layer__date-picker .Layer__dropdown-toggle .Layer__chevron.open {
|
|
11233
|
-
transform: rotate(180deg);
|
|
11234
|
-
}
|
|
11235
|
-
.Layer__date-picker .Layer__dropdown-menu {
|
|
11236
|
-
position: absolute;
|
|
11237
|
-
z-index: 1000;
|
|
11238
|
-
top: 100%;
|
|
11239
|
-
left: 0;
|
|
11240
|
-
width: 256px;
|
|
11241
|
-
border-radius: var(--spacing-2xs);
|
|
11242
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
11243
|
-
margin-top: 5px;
|
|
11244
|
-
background-color: var(--color-white);
|
|
11245
|
-
opacity: 0;
|
|
11246
|
-
animation: fadeIn 0.3s forwards;
|
|
11247
|
-
}
|
|
11248
|
-
@keyframes fadeIn {
|
|
11249
|
-
to {
|
|
11250
|
-
opacity: 1;
|
|
11251
|
-
}
|
|
11252
|
-
}
|
|
11253
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__view-options {
|
|
11254
|
-
padding: var(--spacing-xs);
|
|
11255
|
-
margin-bottom: var(--spacing-4xs);
|
|
11256
|
-
}
|
|
11257
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options-wrapper {
|
|
11258
|
-
padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
|
|
11259
|
-
border-top: 1px solid var(--color-base-200);
|
|
11260
|
-
}
|
|
11261
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options-wrapper:first-child {
|
|
11262
|
-
border-top: transparent;
|
|
11263
|
-
}
|
|
11264
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options {
|
|
11265
|
-
display: grid;
|
|
11266
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
11267
|
-
}
|
|
11268
|
-
.Layer__date-picker .Layer__option {
|
|
11269
|
-
display: flex;
|
|
11270
|
-
align-items: center;
|
|
11271
|
-
justify-content: space-between;
|
|
11272
|
-
min-height: 28px;
|
|
11273
|
-
max-height: 28px;
|
|
11274
|
-
padding: 0 var(--spacing-xs);
|
|
11275
|
-
cursor: pointer;
|
|
11276
|
-
font-size: 14px;
|
|
11277
|
-
}
|
|
11278
|
-
.Layer__date-picker .Layer__option:hover {
|
|
11279
|
-
max-width: max-content;
|
|
11280
|
-
border-radius: var(--spacing-3xs);
|
|
11281
|
-
background: var(--color-base-100);
|
|
11282
|
-
}
|
|
11283
|
-
.Layer__date-picker .Layer__option.Layer__selected {
|
|
11284
|
-
max-width: max-content;
|
|
11285
|
-
border-radius: var(--spacing-3xs);
|
|
11286
|
-
background: var(--color-base-100);
|
|
11287
|
-
}
|
|
11288
|
-
.Layer__date-picker .Layer__option .Layer__tick {
|
|
11289
|
-
padding-top: 2px;
|
|
11290
|
-
margin-left: 10px;
|
|
11291
|
-
color: var(--color-base-900);
|
|
11292
|
-
}
|
|
11293
|
-
.Layer__date-picker .Layer__compare-header {
|
|
11294
|
-
position: relative;
|
|
11295
|
-
padding: 0 0 var(--spacing-sm) var(--spacing-xs);
|
|
11296
|
-
font-size: 11px;
|
|
11297
|
-
color: var(--color-base-500);
|
|
11298
|
-
}
|
|
11299
11144
|
.Layer__ProfitAndLossSummariesListItem {
|
|
11300
11145
|
all: unset;
|
|
11301
11146
|
display: grid;
|
|
@@ -11560,10 +11405,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11560
11405
|
display: flex;
|
|
11561
11406
|
align-items: stretch;
|
|
11562
11407
|
border-radius: var(--border-radius-sm);
|
|
11563
|
-
|
|
11564
|
-
0 0 0 1px rgba(16, 24, 40, 0.04),
|
|
11565
|
-
0 2px 4px 0 rgba(16, 24, 40, 0.06),
|
|
11566
|
-
0 4px 12px 0 rgba(16, 24, 40, 0.08);
|
|
11408
|
+
border: 1px solid var(--border-color);
|
|
11567
11409
|
margin-right: var(--spacing-xl);
|
|
11568
11410
|
margin-bottom: var(--spacing-xl);
|
|
11569
11411
|
margin-left: var(--spacing-xl);
|
|
@@ -11689,7 +11531,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11689
11531
|
@container (max-width: 759px) and (min-width: 500px) {
|
|
11690
11532
|
.Layer__profit-and-loss__chart_with_summaries {
|
|
11691
11533
|
flex-direction: column;
|
|
11692
|
-
box-shadow: none;
|
|
11693
11534
|
margin-right: 0;
|
|
11694
11535
|
margin-bottom: var(--spacing-md);
|
|
11695
11536
|
margin-left: 0;
|
|
@@ -11698,7 +11539,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11698
11539
|
@container (max-width: 500px) {
|
|
11699
11540
|
.Layer__profit-and-loss__chart_with_summaries {
|
|
11700
11541
|
flex-direction: column;
|
|
11701
|
-
box-shadow: none;
|
|
11702
11542
|
margin-right: 0;
|
|
11703
11543
|
margin-bottom: var(--spacing-md);
|
|
11704
11544
|
margin-left: 0;
|
|
@@ -11773,24 +11613,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11773
11613
|
.Layer__profit-and-loss-detailed-charts__header--tablet,
|
|
11774
11614
|
.Layer__profit-and-loss-detailed-charts__header {
|
|
11775
11615
|
display: flex;
|
|
11776
|
-
justify-content: space-between;
|
|
11777
11616
|
align-items: flex-start;
|
|
11778
|
-
|
|
11617
|
+
justify-content: space-between;
|
|
11618
|
+
padding: var(--spacing-lg);
|
|
11779
11619
|
padding-bottom: var(--spacing-lg);
|
|
11780
11620
|
box-shadow: 0 -1px 0 0 var(--color-base-300) inset;
|
|
11781
11621
|
}
|
|
11782
11622
|
.Layer__profit-and-loss-detailed-charts__header--tablet button.Layer__btn.Layer__btn--icon-only,
|
|
11783
11623
|
.Layer__profit-and-loss-detailed-charts__header button.Layer__btn.Layer__btn--icon-only {
|
|
11784
|
-
width: 32px;
|
|
11785
11624
|
height: 32px;
|
|
11786
11625
|
min-height: 32px;
|
|
11626
|
+
width: 32px;
|
|
11787
11627
|
padding: 0;
|
|
11788
11628
|
}
|
|
11789
11629
|
header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
11790
11630
|
display: none;
|
|
11791
|
-
justify-content: flex-start;
|
|
11792
11631
|
gap: var(--spacing-md);
|
|
11793
11632
|
align-items: center;
|
|
11633
|
+
justify-content: flex-start;
|
|
11794
11634
|
}
|
|
11795
11635
|
@container (max-width: 1023px) and (min-width: 768px) {
|
|
11796
11636
|
header.Layer__profit-and-loss-detailed-charts__header {
|
|
@@ -11819,20 +11659,20 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11819
11659
|
}
|
|
11820
11660
|
.Layer__profit-and-loss-detailed-charts {
|
|
11821
11661
|
width: 100%;
|
|
11822
|
-
background: var(--color-base-0);
|
|
11823
11662
|
border-radius: var(--border-radius-sm);
|
|
11663
|
+
background: var(--color-base-0);
|
|
11824
11664
|
}
|
|
11825
11665
|
.Layer__profit-and-loss-detailed-charts .chart-field {
|
|
11826
11666
|
width: 100%;
|
|
11827
11667
|
}
|
|
11828
11668
|
.Layer__profit-and-loss-detailed-charts .chart-container {
|
|
11829
|
-
|
|
11669
|
+
box-sizing: border-box;
|
|
11830
11670
|
height: 280px;
|
|
11671
|
+
width: 100%;
|
|
11831
11672
|
padding-top: var(--spacing-2xl);
|
|
11673
|
+
padding-right: var(--spacing-md);
|
|
11832
11674
|
padding-bottom: var(--spacing-lg);
|
|
11833
11675
|
padding-left: var(--spacing-md);
|
|
11834
|
-
padding-right: var(--spacing-md);
|
|
11835
|
-
box-sizing: border-box;
|
|
11836
11676
|
}
|
|
11837
11677
|
@container (max-width: 280px) {
|
|
11838
11678
|
.Layer__profit-and-loss-detailed-charts .chart-container {
|
|
@@ -11858,35 +11698,35 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11858
11698
|
.Layer__profit-and-loss-detailed-charts .filters {
|
|
11859
11699
|
display: grid;
|
|
11860
11700
|
grid-template-columns: auto minmax(0, 1fr);
|
|
11701
|
+
gap: var(--spacing-xs);
|
|
11861
11702
|
align-items: center;
|
|
11862
|
-
margin: 0 var(--spacing-md);
|
|
11863
11703
|
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
11864
|
-
gap: var(--spacing-xs);
|
|
11865
11704
|
border-bottom: 1px solid var(--color-base-300);
|
|
11705
|
+
margin: 0 var(--spacing-md);
|
|
11866
11706
|
}
|
|
11867
11707
|
.Layer__profit-and-loss-detailed-charts .type-select {
|
|
11868
|
-
|
|
11708
|
+
display: inline-flex;
|
|
11869
11709
|
font-family: var(--font-family);
|
|
11870
11710
|
font-weight: var(--font-weight-normal);
|
|
11711
|
+
border-color: transparent;
|
|
11871
11712
|
font-variant-numeric: lining-nums proportional-nums;
|
|
11872
11713
|
font-feature-settings:
|
|
11873
11714
|
"cv10" on,
|
|
11874
11715
|
"cv05" on,
|
|
11875
11716
|
"cv08" on,
|
|
11876
11717
|
"ss03" on;
|
|
11877
|
-
display: inline-flex;
|
|
11878
11718
|
}
|
|
11879
11719
|
.Layer__profit-and-loss-detailed-charts .type-select .Layer__select__control {
|
|
11880
|
-
|
|
11720
|
+
box-shadow: none;
|
|
11881
11721
|
font-family: var(--font-family);
|
|
11882
11722
|
font-weight: var(--font-weight-normal);
|
|
11723
|
+
border-color: transparent;
|
|
11883
11724
|
font-variant-numeric: lining-nums proportional-nums;
|
|
11884
11725
|
font-feature-settings:
|
|
11885
11726
|
"cv10" on,
|
|
11886
11727
|
"cv05" on,
|
|
11887
11728
|
"cv08" on,
|
|
11888
11729
|
"ss03" on;
|
|
11889
|
-
box-shadow: none;
|
|
11890
11730
|
}
|
|
11891
11731
|
.Layer__profit-and-loss-detailed-charts .type-select .Layer__select__placeholder {
|
|
11892
11732
|
font-size: 12px;
|
|
@@ -11903,17 +11743,17 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11903
11743
|
display: none;
|
|
11904
11744
|
}
|
|
11905
11745
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu {
|
|
11746
|
+
z-index: 2;
|
|
11906
11747
|
width: min-content;
|
|
11907
11748
|
max-width: 300px;
|
|
11908
|
-
z-index: 2;
|
|
11909
11749
|
}
|
|
11910
11750
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option {
|
|
11751
|
+
z-index: 999;
|
|
11752
|
+
overflow: hidden;
|
|
11911
11753
|
width: 100%;
|
|
11912
11754
|
font-size: 12px;
|
|
11913
11755
|
white-space: nowrap;
|
|
11914
|
-
overflow: hidden;
|
|
11915
11756
|
text-overflow: ellipsis;
|
|
11916
|
-
z-index: 999;
|
|
11917
11757
|
}
|
|
11918
11758
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option.Layer__select__option--is-focused,
|
|
11919
11759
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option.Layer__select__option--is-selected,
|
|
@@ -11922,8 +11762,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11922
11762
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:active,
|
|
11923
11763
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus-visible,
|
|
11924
11764
|
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus-within {
|
|
11925
|
-
color: var(--text-color-primary);
|
|
11926
11765
|
background: var(--color-base-100);
|
|
11766
|
+
color: var(--text-color-primary);
|
|
11927
11767
|
}
|
|
11928
11768
|
.Layer__profit-and-loss-detailed-charts .details-container {
|
|
11929
11769
|
padding: var(--spacing-md);
|
|
@@ -11935,9 +11775,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11935
11775
|
}
|
|
11936
11776
|
.Layer__profit-and-loss-detailed-charts .details-container table th,
|
|
11937
11777
|
.Layer__profit-and-loss-detailed-charts .details-container table td {
|
|
11938
|
-
text-align: left;
|
|
11939
|
-
font-size: 12px;
|
|
11940
11778
|
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
11779
|
+
font-size: 12px;
|
|
11780
|
+
text-align: left;
|
|
11941
11781
|
transition: color 150ms ease-out;
|
|
11942
11782
|
}
|
|
11943
11783
|
.Layer__profit-and-loss-detailed-charts .details-container table th:last-child,
|
|
@@ -11947,11 +11787,11 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11947
11787
|
text-align: right;
|
|
11948
11788
|
}
|
|
11949
11789
|
.Layer__profit-and-loss-detailed-charts .details-container table th {
|
|
11790
|
+
padding-bottom: var(--spacing-sm);
|
|
11791
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
11950
11792
|
cursor: pointer;
|
|
11951
11793
|
color: var(--color-base-500);
|
|
11952
|
-
border-bottom: 1px solid var(--color-base-300);
|
|
11953
11794
|
transition: color 150ms ease-out;
|
|
11954
|
-
padding-bottom: var(--spacing-sm);
|
|
11955
11795
|
}
|
|
11956
11796
|
.Layer__profit-and-loss-detailed-charts .details-container table th:hover {
|
|
11957
11797
|
color: var(--color-base-800);
|
|
@@ -11966,13 +11806,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11966
11806
|
}
|
|
11967
11807
|
.Layer__profit-and-loss-detailed-charts .details-container .share-cell-content {
|
|
11968
11808
|
display: flex;
|
|
11809
|
+
gap: var(--spacing-2xs);
|
|
11969
11810
|
align-items: center;
|
|
11970
11811
|
justify-content: flex-end;
|
|
11971
|
-
gap: var(--spacing-2xs);
|
|
11972
11812
|
}
|
|
11973
11813
|
.Layer__profit-and-loss-detailed-charts .details-container .share-cell-content .share-icon {
|
|
11974
|
-
width: 12px;
|
|
11975
11814
|
height: 12px;
|
|
11815
|
+
width: 12px;
|
|
11976
11816
|
border-radius: 2px;
|
|
11977
11817
|
}
|
|
11978
11818
|
.Layer__profit-and-loss-detailed-charts .details-container .share-cell-content .Layer__value-icon--uncategorized {
|
|
@@ -11993,9 +11833,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
11993
11833
|
width: 100%;
|
|
11994
11834
|
}
|
|
11995
11835
|
.Layer__profit-and-loss-detailed-table__row {
|
|
11996
|
-
transition: background-color 300ms ease-out;
|
|
11997
|
-
background: transparent;
|
|
11998
11836
|
border-radius: 2px;
|
|
11837
|
+
background: transparent;
|
|
11838
|
+
transition: background-color 300ms ease-out;
|
|
11999
11839
|
}
|
|
12000
11840
|
.Layer__profit-and-loss-detailed-table__row .category-col,
|
|
12001
11841
|
.Layer__profit-and-loss-detailed-table__row .value-col {
|
|
@@ -12025,8 +11865,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12025
11865
|
}
|
|
12026
11866
|
@container (max-width: 1023px) {
|
|
12027
11867
|
.Layer__profit-and-loss-detailed-charts {
|
|
12028
|
-
width: 100%;
|
|
12029
11868
|
height: 100%;
|
|
11869
|
+
width: 100%;
|
|
12030
11870
|
}
|
|
12031
11871
|
}
|
|
12032
11872
|
@container (max-width: 1023px) and (min-width: 768px) {
|
|
@@ -12045,14 +11885,14 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12045
11885
|
}
|
|
12046
11886
|
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__table-wrapper {
|
|
12047
11887
|
display: flex;
|
|
12048
|
-
flex-direction: column;
|
|
12049
11888
|
flex: 1;
|
|
11889
|
+
flex-direction: column;
|
|
12050
11890
|
}
|
|
12051
11891
|
.Layer__profit-and-loss-detailed-charts .header--tablet {
|
|
12052
11892
|
display: flex;
|
|
12053
11893
|
flex-direction: column;
|
|
12054
|
-
padding-left: var(--spacing-xl);
|
|
12055
11894
|
padding-top: var(--spacing-lg);
|
|
11895
|
+
padding-left: var(--spacing-xl);
|
|
12056
11896
|
}
|
|
12057
11897
|
.Layer__profit-and-loss-detailed-charts .header--tablet .Layer__text {
|
|
12058
11898
|
margin: 0;
|