@layerfi/components 0.1.102 → 0.1.103
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 +1609 -1635
- package/dist/esm/index.mjs +1526 -1553
- package/dist/index.css +290 -267
- package/dist/index.d.ts +35 -23
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
1
|
@import "https://rsms.me/inter/inter.css";
|
|
3
2
|
@import "react-datepicker/dist/react-datepicker.css";
|
|
4
3
|
|
|
@@ -3752,24 +3751,28 @@
|
|
|
3752
3751
|
border-collapse: collapse;
|
|
3753
3752
|
}
|
|
3754
3753
|
.Layer__table::-webkit-scrollbar {
|
|
3755
|
-
width: 6px;
|
|
3756
3754
|
height: 6px;
|
|
3755
|
+
width: 6px;
|
|
3757
3756
|
}
|
|
3758
3757
|
.Layer__table::-webkit-scrollbar-track {
|
|
3759
|
-
background: #f1f1f1;
|
|
3760
3758
|
border-radius: 4px;
|
|
3759
|
+
background: #f1f1f1;
|
|
3761
3760
|
}
|
|
3762
3761
|
.Layer__table::-webkit-scrollbar-thumb {
|
|
3763
|
-
background: #e2e2e2;
|
|
3764
3762
|
border-radius: 4px;
|
|
3763
|
+
background: #e2e2e2;
|
|
3765
3764
|
}
|
|
3766
3765
|
.Layer__table::-webkit-scrollbar-thumb:hover {
|
|
3767
3766
|
background: #999;
|
|
3768
3767
|
}
|
|
3769
3768
|
.Layer__table .Layer__table-header {
|
|
3770
|
-
|
|
3769
|
+
position: relative;
|
|
3770
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
3771
3771
|
font-size: var(--text-sm);
|
|
3772
|
+
line-height: 140%;
|
|
3772
3773
|
font-weight: var(--font-weight-normal);
|
|
3774
|
+
text-align: left;
|
|
3775
|
+
color: var(--text-color-secondary);
|
|
3773
3776
|
font-variant-numeric: lining-nums proportional-nums;
|
|
3774
3777
|
font-feature-settings:
|
|
3775
3778
|
"cv10" on,
|
|
@@ -3777,44 +3780,40 @@
|
|
|
3777
3780
|
"cv08" on,
|
|
3778
3781
|
"ss03" on;
|
|
3779
3782
|
text-overflow: ellipsis;
|
|
3780
|
-
line-height: 140%;
|
|
3781
3783
|
letter-spacing: -0.06px;
|
|
3782
|
-
padding: var(--spacing-sm) var(--spacing-md);
|
|
3783
|
-
text-align: left;
|
|
3784
|
-
position: relative;
|
|
3785
3784
|
}
|
|
3786
3785
|
.Layer__table .Layer__table-header .Layer__table-cell {
|
|
3787
3786
|
border-top: none;
|
|
3788
3787
|
}
|
|
3789
3788
|
.Layer__table .Layer__table-header .Layer__table-cell-content {
|
|
3790
|
-
color: var(--text-color-secondary);
|
|
3791
3789
|
font-size: var(--text-sm);
|
|
3790
|
+
color: var(--text-color-secondary);
|
|
3792
3791
|
}
|
|
3793
3792
|
.Layer__table .Layer__table-header.Layer__table-header--primary .Layer__table-cell.Layer__table-cell--primary {
|
|
3794
|
-
color: var(--text-color-primary);
|
|
3795
3793
|
font-weight: var(--font-weight-bold);
|
|
3794
|
+
color: var(--text-color-primary);
|
|
3796
3795
|
}
|
|
3797
3796
|
.Layer__table .Layer__table-body .Layer__table-empty-row:first-child {
|
|
3798
3797
|
display: none;
|
|
3799
3798
|
}
|
|
3800
3799
|
.Layer__table .Layer__table-empty-row {
|
|
3801
|
-
background: var(--color-base-100);
|
|
3802
3800
|
height: var(--spacing-2xs);
|
|
3803
3801
|
border-top: 1px solid var(--color-base-200);
|
|
3804
3802
|
border-bottom: 1px solid var(--color-base-200);
|
|
3803
|
+
background: var(--color-base-100);
|
|
3805
3804
|
}
|
|
3806
3805
|
.Layer__table .Layer__table-row--selected .Layer__table-cell:first-child {
|
|
3807
3806
|
position: relative;
|
|
3808
3807
|
}
|
|
3809
3808
|
.Layer__table .Layer__table-row--selected .Layer__table-cell:first-child::after {
|
|
3810
|
-
content: "";
|
|
3811
|
-
display: block;
|
|
3812
3809
|
position: absolute;
|
|
3813
|
-
height: 100%;
|
|
3814
3810
|
top: 0;
|
|
3815
3811
|
left: 0;
|
|
3812
|
+
display: block;
|
|
3813
|
+
height: 100%;
|
|
3816
3814
|
width: 4px;
|
|
3817
3815
|
background: var(--color-base-400);
|
|
3816
|
+
content: "";
|
|
3818
3817
|
}
|
|
3819
3818
|
.Layer__table .Layer__table-row {
|
|
3820
3819
|
position: relative;
|
|
@@ -3912,23 +3911,23 @@
|
|
|
3912
3911
|
}
|
|
3913
3912
|
}
|
|
3914
3913
|
.Layer__table .Layer__table-cell {
|
|
3914
|
+
height: var(--spacing-5xl);
|
|
3915
|
+
padding: 0;
|
|
3916
|
+
border-top: 1px solid var(--border-color);
|
|
3915
3917
|
font-size: var(--text-md);
|
|
3916
3918
|
text-align: left;
|
|
3917
3919
|
color: var(--text-color-secondary);
|
|
3918
|
-
border-top: 1px solid var(--border-color);
|
|
3919
|
-
height: var(--spacing-5xl);
|
|
3920
|
-
padding: 0;
|
|
3921
3920
|
}
|
|
3922
3921
|
.Layer__table .Layer__table-cell.Layer__table-cell--nowrap {
|
|
3923
3922
|
white-space: nowrap;
|
|
3924
3923
|
}
|
|
3925
3924
|
.Layer__table .Layer__table-cell.Layer__table-cell--primary {
|
|
3926
|
-
color: var(--color-base-900);
|
|
3927
3925
|
font-weight: var(--font-weight-bold);
|
|
3926
|
+
color: var(--color-base-900);
|
|
3928
3927
|
}
|
|
3929
3928
|
.Layer__table .Layer__table-cell.Layer__table-cell--right .Layer__table-cell-content {
|
|
3930
|
-
text-align: right;
|
|
3931
3929
|
justify-content: flex-end;
|
|
3930
|
+
text-align: right;
|
|
3932
3931
|
}
|
|
3933
3932
|
.Layer__table .Layer__table-cell.Layer__table-cell-amount--positive .Layer__table-cell-content::before {
|
|
3934
3933
|
content: "$";
|
|
@@ -3939,36 +3938,36 @@
|
|
|
3939
3938
|
flex-shrink: 0;
|
|
3940
3939
|
}
|
|
3941
3940
|
.Layer__table .Layer__table-cell .Layer__table-cell-content {
|
|
3941
|
+
box-sizing: border-box;
|
|
3942
|
+
position: relative;
|
|
3943
|
+
top: 0;
|
|
3942
3944
|
display: flex;
|
|
3943
3945
|
align-items: center;
|
|
3944
3946
|
height: 100%;
|
|
3945
|
-
top: 0;
|
|
3946
3947
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
3947
|
-
box-sizing: border-box;
|
|
3948
3948
|
transition: all var(--transition-speed) ease-out;
|
|
3949
|
-
position: relative;
|
|
3950
3949
|
}
|
|
3951
3950
|
.Layer__table .Layer__table-cell .Layer__table-cell-content .Layer__table-row--expand-icon {
|
|
3952
|
-
transition: transform 0.1s ease-in-out;
|
|
3953
|
-
width: 16px;
|
|
3954
3951
|
height: 16px;
|
|
3952
|
+
min-width: 16px;
|
|
3955
3953
|
margin-right: 8px;
|
|
3954
|
+
transition: transform 0.1s ease-in-out;
|
|
3956
3955
|
}
|
|
3957
3956
|
.Layer__table-cell-content-indentation {
|
|
3958
|
-
|
|
3957
|
+
box-sizing: border-box;
|
|
3959
3958
|
display: flex;
|
|
3960
3959
|
align-items: center;
|
|
3961
|
-
|
|
3960
|
+
height: 100%;
|
|
3962
3961
|
}
|
|
3963
3962
|
.Layer__table-row--active .Layer__table-cell:first-child .Layer__table-cell-content::before {
|
|
3964
|
-
content: "";
|
|
3965
|
-
background-color: var(--color-base-400);
|
|
3966
|
-
height: 100%;
|
|
3967
|
-
width: 4px;
|
|
3968
3963
|
position: absolute;
|
|
3969
|
-
left: 0;
|
|
3970
3964
|
top: 0;
|
|
3971
3965
|
bottom: 0;
|
|
3966
|
+
left: 0;
|
|
3967
|
+
height: 100%;
|
|
3968
|
+
width: 4px;
|
|
3969
|
+
background-color: var(--color-base-400);
|
|
3970
|
+
content: "";
|
|
3972
3971
|
}
|
|
3973
3972
|
.Layer__table-row--hidden .Layer__table-cell {
|
|
3974
3973
|
border-top-width: 0;
|
|
@@ -3989,13 +3988,6 @@
|
|
|
3989
3988
|
opacity 50ms ease-in-out,
|
|
3990
3989
|
padding 50ms ease-in-out;
|
|
3991
3990
|
}
|
|
3992
|
-
.Layer__table-row.Layer__table-row--with-show:not(.initial-load) {
|
|
3993
|
-
opacity: 0.5;
|
|
3994
|
-
}
|
|
3995
|
-
.Layer__table-row.Layer__table-row--with-show:not(.initial-load).show {
|
|
3996
|
-
transition: opacity 50ms ease-out;
|
|
3997
|
-
opacity: 1;
|
|
3998
|
-
}
|
|
3999
3991
|
.Layer__table.with-cell-separators > tbody > tr > td:first-child .Layer__table-cell-content::after,
|
|
4000
3992
|
.Layer__table.with-cell-separators > tbody > tr > td:last-child .Layer__table-cell-content::after,
|
|
4001
3993
|
.Layer__table.with-cell-separators > thead > tr > th:first-child.Layer__table-header::after,
|
|
@@ -4003,22 +3995,26 @@
|
|
|
4003
3995
|
display: none;
|
|
4004
3996
|
}
|
|
4005
3997
|
.Layer__table-state-container {
|
|
4006
|
-
padding: var(--spacing-2xl) var(--spacing-sm);
|
|
4007
3998
|
box-sizing: border-box;
|
|
4008
3999
|
display: flex;
|
|
4009
4000
|
flex-direction: column;
|
|
4010
4001
|
align-items: center;
|
|
4011
4002
|
justify-content: center;
|
|
4012
|
-
width: 100%;
|
|
4013
4003
|
height: calc(100vh - 200px);
|
|
4004
|
+
width: 100%;
|
|
4005
|
+
padding: var(--spacing-2xl) var(--spacing-sm);
|
|
4014
4006
|
}
|
|
4015
4007
|
.Layer__component--as-widget .Layer__table-state-container {
|
|
4016
4008
|
height: calc(100% - 160px);
|
|
4017
4009
|
}
|
|
4018
4010
|
.Layer__table-header {
|
|
4019
|
-
|
|
4011
|
+
position: relative;
|
|
4012
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
4020
4013
|
font-size: var(--text-sm);
|
|
4014
|
+
line-height: 140%;
|
|
4021
4015
|
font-weight: var(--font-weight-normal);
|
|
4016
|
+
text-align: left;
|
|
4017
|
+
color: var(--text-color-secondary);
|
|
4022
4018
|
font-variant-numeric: lining-nums proportional-nums;
|
|
4023
4019
|
font-feature-settings:
|
|
4024
4020
|
"cv10" on,
|
|
@@ -4026,30 +4022,26 @@
|
|
|
4026
4022
|
"cv08" on,
|
|
4027
4023
|
"ss03" on;
|
|
4028
4024
|
text-overflow: ellipsis;
|
|
4029
|
-
line-height: 140%;
|
|
4030
4025
|
letter-spacing: -0.06px;
|
|
4031
|
-
padding: var(--spacing-sm) var(--spacing-md);
|
|
4032
|
-
text-align: left;
|
|
4033
|
-
position: relative;
|
|
4034
4026
|
}
|
|
4035
4027
|
.Layer__table-header.Layer__table-header--primary {
|
|
4036
|
-
color: var(--text-color-primary);
|
|
4037
4028
|
font-weight: var(--font-weight-bold);
|
|
4029
|
+
color: var(--text-color-primary);
|
|
4038
4030
|
}
|
|
4039
4031
|
.Layer__table-cell--primary,
|
|
4040
4032
|
.Layer__table-cell--primary .Layer__table-cell-content {
|
|
4041
|
-
color: var(--color-base-700);
|
|
4042
4033
|
font-weight: var(--font-weight-bold);
|
|
4034
|
+
color: var(--color-base-700);
|
|
4043
4035
|
}
|
|
4044
4036
|
.Layer__table-cell-content {
|
|
4037
|
+
box-sizing: border-box;
|
|
4038
|
+
position: relative;
|
|
4039
|
+
top: 0;
|
|
4045
4040
|
display: flex;
|
|
4046
4041
|
align-items: center;
|
|
4047
4042
|
height: 100%;
|
|
4048
|
-
top: 0;
|
|
4049
4043
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
4050
|
-
box-sizing: border-box;
|
|
4051
4044
|
transition: all var(--transition-speed) ease-out;
|
|
4052
|
-
position: relative;
|
|
4053
4045
|
}
|
|
4054
4046
|
.Layer__table--hover-effect .Layer__table-row:hover {
|
|
4055
4047
|
background-color: var(--color-base-50);
|
|
@@ -4061,18 +4053,19 @@
|
|
|
4061
4053
|
text-align: right;
|
|
4062
4054
|
}
|
|
4063
4055
|
.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
4064
|
-
max-height: 0;
|
|
4065
4056
|
top: 1px;
|
|
4057
|
+
overflow: hidden;
|
|
4058
|
+
max-height: 0;
|
|
4066
4059
|
padding-top: 0;
|
|
4067
4060
|
padding-bottom: 0;
|
|
4068
|
-
overflow: hidden;
|
|
4069
4061
|
}
|
|
4070
4062
|
@container (min-width: 1400px) {
|
|
4071
4063
|
.Layer__table tr td:first-child .Layer__table-cell-content,
|
|
4064
|
+
.Layer__table tr th:first-child.Layer__table-cell .Layer__table-cell-content {
|
|
4065
|
+
padding-left: var(--spacing-xl);
|
|
4066
|
+
}
|
|
4072
4067
|
.Layer__table tr td:last-child .Layer__table-cell-content,
|
|
4073
|
-
.Layer__table tr th:first-child.Layer__table-cell .Layer__table-cell-content,
|
|
4074
4068
|
.Layer__table tr th:last-child.Layer__table-cell .Layer__table-cell-content {
|
|
4075
|
-
padding-left: var(--spacing-xl);
|
|
4076
4069
|
padding-right: var(--spacing-xl);
|
|
4077
4070
|
}
|
|
4078
4071
|
}
|
|
@@ -4081,31 +4074,23 @@
|
|
|
4081
4074
|
height: 0;
|
|
4082
4075
|
}
|
|
4083
4076
|
.Layer__table-row.Layer__table-row--anim-starting-state td .Layer__table-cell-content {
|
|
4084
|
-
|
|
4077
|
+
height: 0%;
|
|
4085
4078
|
padding-top: 0;
|
|
4086
4079
|
padding-bottom: 0;
|
|
4087
|
-
|
|
4080
|
+
opacity: 0;
|
|
4088
4081
|
}
|
|
4089
4082
|
.Layer__table__empty-row {
|
|
4090
|
-
background: var(--color-base-100);
|
|
4091
4083
|
height: var(--spacing-2xs);
|
|
4092
4084
|
border-top: 1px solid var(--color-base-200);
|
|
4093
4085
|
border-bottom: 1px solid var(--color-base-200);
|
|
4086
|
+
background: var(--color-base-100);
|
|
4094
4087
|
}
|
|
4095
4088
|
tbody .Layer__table__empty-row:first-child {
|
|
4096
4089
|
display: none;
|
|
4097
4090
|
}
|
|
4098
|
-
.Layer__table-row.Layer__table-row--anim-complete-state {
|
|
4099
|
-
height: var(--spacing-5xl);
|
|
4100
|
-
}
|
|
4101
|
-
.Layer__table-row.Layer__table-row--anim-complete-state td .Layer__table-cell-content {
|
|
4102
|
-
opacity: 1;
|
|
4103
|
-
padding-top: var(--spacing-sm);
|
|
4104
|
-
padding-bottom: var(--spacing-sm);
|
|
4105
|
-
}
|
|
4106
4091
|
.Layer__table-wrapper {
|
|
4107
|
-
max-width: 100%;
|
|
4108
4092
|
overflow: auto;
|
|
4093
|
+
max-width: 100%;
|
|
4109
4094
|
}
|
|
4110
4095
|
.Layer__table-wrapper--bottom-spacing {
|
|
4111
4096
|
padding-bottom: var(--spacing-lg);
|
|
@@ -4462,6 +4447,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4462
4447
|
min-inline-size: var(--size);
|
|
4463
4448
|
padding-inline: 0;
|
|
4464
4449
|
}
|
|
4450
|
+
.Layer__UI__Button[data-ellipsis] {
|
|
4451
|
+
display: inline-block;
|
|
4452
|
+
overflow: hidden;
|
|
4453
|
+
white-space: nowrap;
|
|
4454
|
+
text-overflow: ellipsis;
|
|
4455
|
+
}
|
|
4465
4456
|
.Layer__UI__Button[data-focus-visible] {
|
|
4466
4457
|
outline: 1px auto -webkit-focus-ring-color;
|
|
4467
4458
|
}
|
|
@@ -4915,6 +4906,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4915
4906
|
.Layer__Stack[data-justify=space-between] {
|
|
4916
4907
|
justify-content: space-between;
|
|
4917
4908
|
}
|
|
4909
|
+
.Layer__Stack[data-overflow=scroll] {
|
|
4910
|
+
overflow: scroll;
|
|
4911
|
+
}
|
|
4912
|
+
.Layer__Stack[data-overflow=hidden] {
|
|
4913
|
+
overflow: hidden;
|
|
4914
|
+
}
|
|
4915
|
+
.Layer__Stack[data-overflow=auto] {
|
|
4916
|
+
overflow: auto;
|
|
4917
|
+
}
|
|
4918
|
+
.Layer__Stack[data-overflow=clip] {
|
|
4919
|
+
overflow: clip;
|
|
4920
|
+
}
|
|
4921
|
+
.Layer__Stack[data-overflow=visible] {
|
|
4922
|
+
overflow: visible;
|
|
4923
|
+
}
|
|
4918
4924
|
.Layer__Stack[data-gap="3xs"] {
|
|
4919
4925
|
gap: var(--spacing-3xs);
|
|
4920
4926
|
}
|
|
@@ -7828,18 +7834,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7828
7834
|
padding-bottom: var(--spacing-lg);
|
|
7829
7835
|
}
|
|
7830
7836
|
.Layer__bank-transactions .Layer__bank-transactions__table-wrapper {
|
|
7831
|
-
max-width: var(--max-component-width);
|
|
7832
7837
|
overflow: auto;
|
|
7838
|
+
max-width: var(--max-component-width);
|
|
7833
7839
|
margin-bottom: var(--spacing-lg);
|
|
7834
7840
|
}
|
|
7835
7841
|
.Layer__syncing__info {
|
|
7836
7842
|
display: flex;
|
|
7837
|
-
align-items: center;
|
|
7838
7843
|
gap: var(--spacing-md);
|
|
7844
|
+
align-items: center;
|
|
7839
7845
|
padding: 0 var(--spacing-md);
|
|
7846
|
+
border-left: 1px solid var(--border-color);
|
|
7840
7847
|
margin-left: var(--spacing-md);
|
|
7841
7848
|
font-size: var(--text-sm);
|
|
7842
|
-
border-left: 1px solid var(--border-color);
|
|
7843
7849
|
}
|
|
7844
7850
|
.Layer__bank-transaction-row__expand-button:disabled {
|
|
7845
7851
|
cursor: default;
|
|
@@ -7866,15 +7872,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7866
7872
|
background-color: var(--color-base-100);
|
|
7867
7873
|
}
|
|
7868
7874
|
.Layer__bank-transactions__header--mobile .Layer__syncing-component {
|
|
7869
|
-
border-width: 0;
|
|
7870
7875
|
padding: 0 var(--spacing-xs);
|
|
7876
|
+
border-width: 0;
|
|
7871
7877
|
margin-left: 0;
|
|
7872
7878
|
}
|
|
7873
7879
|
.Layer__syncing__info__text {
|
|
7874
7880
|
display: flex;
|
|
7875
7881
|
flex-direction: column;
|
|
7876
|
-
color: var(--color-base-500);
|
|
7877
7882
|
gap: var(--spacing-4xs);
|
|
7883
|
+
color: var(--color-base-500);
|
|
7878
7884
|
}
|
|
7879
7885
|
.Layer__syncing__info__text span:first-child {
|
|
7880
7886
|
color: var(--color-base-800);
|
|
@@ -7891,8 +7897,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7891
7897
|
left: 0;
|
|
7892
7898
|
display: flex;
|
|
7893
7899
|
flex-direction: column;
|
|
7894
|
-
width: 100%;
|
|
7895
7900
|
align-items: stretch;
|
|
7901
|
+
width: 100%;
|
|
7896
7902
|
}
|
|
7897
7903
|
.Layer__bank-transactions__header__content {
|
|
7898
7904
|
display: flex;
|
|
@@ -7919,10 +7925,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7919
7925
|
margin-right: 4px;
|
|
7920
7926
|
}
|
|
7921
7927
|
.Layer__bank-transactions__header-menu__upload-transactions-icon {
|
|
7922
|
-
color: var(--color-base-500);
|
|
7923
|
-
background: var(--color-base-200);
|
|
7924
|
-
border-radius: var(--spacing-3xs);
|
|
7925
7928
|
padding: var(--spacing-3xs);
|
|
7929
|
+
border-radius: var(--spacing-3xs);
|
|
7930
|
+
background: var(--color-base-200);
|
|
7931
|
+
color: var(--color-base-500);
|
|
7926
7932
|
}
|
|
7927
7933
|
.Layer__bank-transaction-row {
|
|
7928
7934
|
transition: all var(--transition-speed) ease-in-out;
|
|
@@ -7937,9 +7943,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7937
7943
|
opacity: 1;
|
|
7938
7944
|
}
|
|
7939
7945
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
7940
|
-
padding: 0 var(--spacing-md);
|
|
7941
7946
|
overflow: hidden;
|
|
7942
7947
|
min-height: 0;
|
|
7948
|
+
padding: 0 var(--spacing-md);
|
|
7943
7949
|
}
|
|
7944
7950
|
.Layer__bank-transaction-row:first-child .Layer__table-cell {
|
|
7945
7951
|
border-top-width: 0;
|
|
@@ -7948,13 +7954,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7948
7954
|
border-bottom: 1px solid var(--border-color);
|
|
7949
7955
|
}
|
|
7950
7956
|
.Layer__bank-transactions__table .Layer__skeleton-table-body__loader td:last-child {
|
|
7951
|
-
position: sticky;
|
|
7952
|
-
min-width: 430px;
|
|
7953
|
-
width: 430px;
|
|
7954
|
-
max-width: 430px;
|
|
7955
7957
|
box-sizing: border-box;
|
|
7956
|
-
|
|
7958
|
+
position: sticky;
|
|
7957
7959
|
z-index: 2;
|
|
7960
|
+
right: 0;
|
|
7961
|
+
--width: 56ch;
|
|
7962
|
+
width: var(--width);
|
|
7963
|
+
min-width: var(--width);
|
|
7964
|
+
max-width: var(--width);
|
|
7958
7965
|
border-left: 1px solid var(--border-color);
|
|
7959
7966
|
background-color: var(--color-base-0);
|
|
7960
7967
|
}
|
|
@@ -7967,32 +7974,32 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7967
7974
|
cursor: default;
|
|
7968
7975
|
}
|
|
7969
7976
|
.Layer__bank-transactions__table .Layer__skeleton-table-body__loader td:last-child .Layer__bank-transaction-row__actions-disabled .Layer__select--is-disabled .Layer__select__control--is-disabled {
|
|
7970
|
-
background-color: var(--color-base-50);
|
|
7971
7977
|
border: none;
|
|
7972
7978
|
box-shadow: none;
|
|
7979
|
+
background-color: var(--color-base-50);
|
|
7973
7980
|
cursor: default;
|
|
7974
7981
|
}
|
|
7975
7982
|
.Layer__bank-transactions__table .Layer__table-header {
|
|
7976
|
-
background-color: var(--table-bg);
|
|
7977
7983
|
border-bottom: 1px solid var(--border-color);
|
|
7984
|
+
background-color: var(--table-bg);
|
|
7978
7985
|
}
|
|
7979
7986
|
.Layer__bank-transaction-row .Layer__table-cell {
|
|
7980
7987
|
background-color: var(--table-bg);
|
|
7981
7988
|
transition: background-color var(--transition-speed) ease-out;
|
|
7982
7989
|
}
|
|
7983
7990
|
.Layer__bank-transaction-row .Layer__table-cell-content {
|
|
7984
|
-
min-height: 64px;
|
|
7985
7991
|
box-sizing: border-box;
|
|
7986
7992
|
display: flex;
|
|
7987
7993
|
align-items: center;
|
|
7994
|
+
min-height: 64px;
|
|
7988
7995
|
}
|
|
7989
7996
|
.Layer__bank-transaction-row--expanded .Layer__table-cell {
|
|
7990
7997
|
background-color: var(--bg-element-focus);
|
|
7991
7998
|
}
|
|
7992
7999
|
.Layer__expanded-bank-transaction-row {
|
|
8000
|
+
position: relative;
|
|
7993
8001
|
display: block;
|
|
7994
8002
|
overflow: hidden;
|
|
7995
|
-
position: relative;
|
|
7996
8003
|
background-color: var(--bg-element-focus);
|
|
7997
8004
|
transition: background-color var(--transition-speed) ease-in-out, height var(--transition-speed) ease-in-out;
|
|
7998
8005
|
}
|
|
@@ -8010,12 +8017,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8010
8017
|
background-color: var(--color-base-300);
|
|
8011
8018
|
}
|
|
8012
8019
|
.Layer__bank-transaction-row:hover .Layer__bank-transaction__submit-btn:not([disabled]) {
|
|
8013
|
-
color: var(--btn-color-hover);
|
|
8014
8020
|
background: var(--btn-bg-color-hover);
|
|
8021
|
+
color: var(--btn-color-hover);
|
|
8015
8022
|
}
|
|
8016
8023
|
.Layer__bank-transaction-row:hover .Layer__bank-transaction__submit-btn:not([disabled]) .Layer__btn-icon {
|
|
8017
|
-
color: var(--btn-color-icon-hover);
|
|
8018
8024
|
background: var(--btn-bg-color-icon-hover);
|
|
8025
|
+
color: var(--btn-color-icon-hover);
|
|
8019
8026
|
}
|
|
8020
8027
|
.Layer__bank-transaction-row:hover .Layer__bank-transaction__submit-btn:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-active {
|
|
8021
8028
|
display: block;
|
|
@@ -8032,15 +8039,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8032
8039
|
}
|
|
8033
8040
|
.Layer__bank-transaction-list-item__category-text,
|
|
8034
8041
|
.Layer__bank-transaction-row__category-text {
|
|
8042
|
+
display: inline-flex;
|
|
8035
8043
|
flex: 1;
|
|
8044
|
+
gap: var(--spacing-xs);
|
|
8045
|
+
align-items: center;
|
|
8046
|
+
overflow: hidden;
|
|
8047
|
+
padding-left: 10px;
|
|
8036
8048
|
color: var(--text-color-primary);
|
|
8037
8049
|
white-space: nowrap;
|
|
8038
|
-
padding-left: 10px;
|
|
8039
8050
|
text-overflow: ellipsis;
|
|
8040
|
-
overflow: hidden;
|
|
8041
|
-
display: inline-flex;
|
|
8042
|
-
align-items: center;
|
|
8043
|
-
gap: var(--spacing-xs);
|
|
8044
8051
|
}
|
|
8045
8052
|
.Layer__bank-transaction-list-item__category-text .Layer__tooltip-trigger,
|
|
8046
8053
|
.Layer__bank-transaction-row__category-text .Layer__tooltip-trigger {
|
|
@@ -8051,8 +8058,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8051
8058
|
.Layer__bank-transaction-row__category-text .Layer__bank-transaction-list-item__category-text__text,
|
|
8052
8059
|
.Layer__bank-transaction-row__category-text .Layer__bank-transaction-row__category-text__text {
|
|
8053
8060
|
flex: 1;
|
|
8054
|
-
max-width: 100%;
|
|
8055
8061
|
overflow: hidden;
|
|
8062
|
+
max-width: 100%;
|
|
8056
8063
|
text-overflow: ellipsis;
|
|
8057
8064
|
}
|
|
8058
8065
|
.Layer__bank-transaction-list-item__category-text__text {
|
|
@@ -8062,62 +8069,62 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8062
8069
|
}
|
|
8063
8070
|
.Layer__bank-transaction-list-item__content,
|
|
8064
8071
|
.Layer__expanded-bank-transaction-row__content {
|
|
8072
|
+
box-sizing: border-box;
|
|
8065
8073
|
display: flex;
|
|
8066
8074
|
flex-direction: column;
|
|
8067
8075
|
gap: var(--spacing-sm);
|
|
8068
8076
|
max-width: 680px;
|
|
8069
|
-
box-sizing: border-box;
|
|
8070
8077
|
}
|
|
8071
8078
|
.Layer__expanded-bank-transaction-row__content-panels {
|
|
8079
|
+
box-sizing: border-box;
|
|
8072
8080
|
display: flex;
|
|
8073
8081
|
flex-direction: row;
|
|
8074
8082
|
max-width: 680px;
|
|
8075
|
-
box-sizing: border-box;
|
|
8076
8083
|
}
|
|
8077
8084
|
.Layer__expanded-bank-transaction-row__content-panel {
|
|
8078
|
-
|
|
8079
|
-
opacity: 0;
|
|
8080
|
-
transition: max-width 150ms ease-out, opacity 300ms ease-out;
|
|
8081
|
-
overflow: hidden;
|
|
8082
|
-
flex: 1;
|
|
8085
|
+
box-sizing: border-box;
|
|
8083
8086
|
display: flex;
|
|
8087
|
+
flex: 1;
|
|
8084
8088
|
flex-direction: column;
|
|
8085
8089
|
gap: var(--spacing-sm);
|
|
8086
|
-
|
|
8090
|
+
overflow: hidden;
|
|
8091
|
+
max-width: 0;
|
|
8092
|
+
opacity: 0;
|
|
8093
|
+
transition: max-width 150ms ease-out, opacity 300ms ease-out;
|
|
8087
8094
|
}
|
|
8088
8095
|
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__content-panel-container {
|
|
8089
|
-
padding: 0 var(--spacing-md);
|
|
8090
8096
|
box-sizing: border-box;
|
|
8097
|
+
padding: 0 var(--spacing-md);
|
|
8091
8098
|
}
|
|
8092
8099
|
.Layer__expanded-bank-transaction-row__content-panel.Layer__expanded-bank-transaction-row__content-panel--active {
|
|
8093
8100
|
max-width: 100%;
|
|
8094
8101
|
opacity: 1;
|
|
8095
8102
|
}
|
|
8096
8103
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__select .Layer__select__control {
|
|
8097
|
-
max-width: 0;
|
|
8098
8104
|
overflow: hidden;
|
|
8105
|
+
max-width: 0;
|
|
8099
8106
|
}
|
|
8100
8107
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8101
|
-
max-width: 0;
|
|
8102
8108
|
overflow: hidden;
|
|
8109
|
+
max-width: 0;
|
|
8103
8110
|
}
|
|
8104
8111
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__splits-buttons {
|
|
8105
|
-
max-width: 0;
|
|
8106
8112
|
overflow: hidden;
|
|
8113
|
+
max-width: 0;
|
|
8107
8114
|
}
|
|
8108
8115
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__splits-total {
|
|
8109
|
-
max-width: 0;
|
|
8110
8116
|
overflow: hidden;
|
|
8117
|
+
max-width: 0;
|
|
8111
8118
|
}
|
|
8112
8119
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry__right-col {
|
|
8113
8120
|
display: flex;
|
|
8114
|
-
gap: var(--spacing-sm);
|
|
8115
8121
|
flex: 1;
|
|
8122
|
+
gap: var(--spacing-sm);
|
|
8116
8123
|
align-items: center;
|
|
8117
8124
|
}
|
|
8118
8125
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
8119
|
-
width: 36px;
|
|
8120
8126
|
height: 36px;
|
|
8127
|
+
width: 36px;
|
|
8121
8128
|
padding: 0;
|
|
8122
8129
|
}
|
|
8123
8130
|
@container (min-width: 701px) {
|
|
@@ -8148,15 +8155,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8148
8155
|
gap: var(--spacing-sm);
|
|
8149
8156
|
}
|
|
8150
8157
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
8151
|
-
flex: 1;
|
|
8152
|
-
padding-top: 2px;
|
|
8153
8158
|
display: flex;
|
|
8159
|
+
flex: 1;
|
|
8154
8160
|
flex-direction: column;
|
|
8155
8161
|
gap: var(--spacing-sm);
|
|
8162
|
+
padding-top: 2px;
|
|
8156
8163
|
}
|
|
8157
8164
|
.Layer__expanded-bank-transaction-row__splits-total {
|
|
8158
|
-
color: var(--color-base-500);
|
|
8159
8165
|
padding: var(--spacing-3xs);
|
|
8166
|
+
color: var(--color-base-500);
|
|
8160
8167
|
}
|
|
8161
8168
|
.Layer__expanded-bank-transaction-row__splits-buttons {
|
|
8162
8169
|
padding-bottom: 2px;
|
|
@@ -8195,22 +8202,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8195
8202
|
padding: 0 var(--spacing-md);
|
|
8196
8203
|
}
|
|
8197
8204
|
.Layer__expanded-bank-transaction-row__description textarea {
|
|
8205
|
+
height: 100px;
|
|
8198
8206
|
width: 100%;
|
|
8199
8207
|
max-width: 680px;
|
|
8200
|
-
height: 100px;
|
|
8201
8208
|
}
|
|
8202
8209
|
.Layer__expanded-bank-transaction-row__file-upload {
|
|
8203
|
-
padding: 0 var(--spacing-md);
|
|
8204
|
-
padding-bottom: var(--spacing-sm);
|
|
8205
8210
|
display: flex;
|
|
8206
8211
|
flex-direction: column;
|
|
8207
|
-
align-items: flex-start;
|
|
8208
8212
|
gap: var(--spacing-md);
|
|
8213
|
+
align-items: flex-start;
|
|
8214
|
+
padding: 0 var(--spacing-md);
|
|
8215
|
+
padding-bottom: var(--spacing-sm);
|
|
8209
8216
|
}
|
|
8210
8217
|
.Layer__bank-transaction-row__actions-cell {
|
|
8218
|
+
width: 0%;
|
|
8211
8219
|
border-left: 1px solid var(--border-color);
|
|
8212
8220
|
transition: border 5s ease-out;
|
|
8213
|
-
width: 0%;
|
|
8214
8221
|
}
|
|
8215
8222
|
.Layer__bank-transaction-row__expand-button {
|
|
8216
8223
|
width: 36px;
|
|
@@ -8221,9 +8228,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8221
8228
|
}
|
|
8222
8229
|
.Layer__bank-transaction-row__actions-container {
|
|
8223
8230
|
display: flex;
|
|
8231
|
+
gap: 8px;
|
|
8224
8232
|
align-items: center;
|
|
8225
8233
|
justify-content: flex-end;
|
|
8226
|
-
gap: 8px;
|
|
8227
8234
|
}
|
|
8228
8235
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8229
8236
|
display: flex;
|
|
@@ -8249,15 +8256,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8249
8256
|
transform: scale(1);
|
|
8250
8257
|
}
|
|
8251
8258
|
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__base-row {
|
|
8259
|
+
justify-content: flex-end;
|
|
8252
8260
|
max-height: 60px;
|
|
8253
8261
|
opacity: 1;
|
|
8254
8262
|
transition: max-height 350ms ease-out, opacity 200ms ease-out;
|
|
8255
|
-
justify-content: flex-end;
|
|
8256
8263
|
}
|
|
8257
8264
|
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__expanded-row {
|
|
8265
|
+
overflow: hidden;
|
|
8258
8266
|
max-height: 0;
|
|
8259
8267
|
padding: 0;
|
|
8260
|
-
overflow: hidden;
|
|
8261
8268
|
transition: all var(--transition-speed) ease-out;
|
|
8262
8269
|
}
|
|
8263
8270
|
.Layer__bank-transaction-list-item > .Layer__text--error {
|
|
@@ -8270,19 +8277,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8270
8277
|
background: var(--bg-element-focus);
|
|
8271
8278
|
}
|
|
8272
8279
|
.Layer__bank-transaction-list-item.Layer__bank-transaction-list-item--expanded .Layer__bank-transaction-list-item__base-row {
|
|
8280
|
+
z-index: -1;
|
|
8273
8281
|
max-height: 0;
|
|
8274
8282
|
padding: 0;
|
|
8275
8283
|
opacity: 0;
|
|
8276
|
-
z-index: -1;
|
|
8277
8284
|
}
|
|
8278
8285
|
.Layer__bank-transaction-list-item.Layer__bank-transaction-list-item--expanded .Layer__bank-transaction-list-item__expanded-row {
|
|
8279
8286
|
max-height: unset;
|
|
8280
8287
|
}
|
|
8281
8288
|
.Layer__bank-transaction-list-item__base-row {
|
|
8282
|
-
display: flex;
|
|
8283
|
-
align-items: center;
|
|
8284
8289
|
box-sizing: border-box;
|
|
8290
|
+
display: flex;
|
|
8285
8291
|
gap: var(--spacing-sm);
|
|
8292
|
+
align-items: center;
|
|
8286
8293
|
padding: var(--spacing-md);
|
|
8287
8294
|
}
|
|
8288
8295
|
.Layer__bank-transaction-list-item__base-row .Layer__category-menu {
|
|
@@ -8293,13 +8300,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8293
8300
|
}
|
|
8294
8301
|
.Layer__bank-transaction-list-item__heading {
|
|
8295
8302
|
display: flex;
|
|
8296
|
-
align-items: center;
|
|
8297
|
-
color: var(--color-base-700);
|
|
8298
|
-
font-size: var(--text-sm);
|
|
8299
8303
|
gap: 4px;
|
|
8304
|
+
align-items: center;
|
|
8305
|
+
justify-content: space-between;
|
|
8300
8306
|
padding: var(--spacing-md);
|
|
8301
8307
|
padding-bottom: var(--spacing-sm);
|
|
8302
|
-
|
|
8308
|
+
font-size: var(--text-sm);
|
|
8309
|
+
color: var(--color-base-700);
|
|
8303
8310
|
}
|
|
8304
8311
|
.Layer__bank-transaction-list-item__heading .Layer__bank-transaction-list-item__heading-separator {
|
|
8305
8312
|
display: block;
|
|
@@ -8308,18 +8315,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8308
8315
|
background: var(--color-base-200);
|
|
8309
8316
|
}
|
|
8310
8317
|
.Layer__bank-transaction-list-item__heading .Layer__bank-transaction-list-item__heading__main {
|
|
8311
|
-
gap: 4px;
|
|
8312
8318
|
display: flex;
|
|
8319
|
+
gap: 4px;
|
|
8313
8320
|
align-items: center;
|
|
8314
8321
|
}
|
|
8315
8322
|
.Layer__bank-transaction-list-item__body {
|
|
8323
|
+
box-sizing: border-box;
|
|
8316
8324
|
display: flex;
|
|
8317
|
-
justify-content: space-between;
|
|
8318
8325
|
gap: 4px;
|
|
8319
|
-
|
|
8326
|
+
justify-content: space-between;
|
|
8320
8327
|
width: 100%;
|
|
8321
8328
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
8322
|
-
|
|
8329
|
+
color: var(--text-color-primary);
|
|
8323
8330
|
}
|
|
8324
8331
|
.Layer__bank-transaction-list-item__body .Layer__bank-transaction-list-item__body__name {
|
|
8325
8332
|
flex: 1;
|
|
@@ -8337,23 +8344,23 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8337
8344
|
margin: 0 var(--spacing-xs);
|
|
8338
8345
|
}
|
|
8339
8346
|
.Layer__bank-transaction-list-item__processing-info {
|
|
8347
|
+
box-sizing: border-box;
|
|
8340
8348
|
display: flex;
|
|
8341
|
-
justify-content: flex-end;
|
|
8342
8349
|
gap: 4px;
|
|
8343
|
-
|
|
8350
|
+
justify-content: flex-end;
|
|
8344
8351
|
width: 100%;
|
|
8345
8352
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
8346
|
-
|
|
8353
|
+
color: var(--text-color-primary);
|
|
8347
8354
|
}
|
|
8348
8355
|
.Layer__bank-transaction-list-item__processing-info .Layer__tooltip-trigger {
|
|
8349
8356
|
flex: 0 auto;
|
|
8350
8357
|
}
|
|
8351
8358
|
.Layer__expanded-bank-transaction-row__submit-btn {
|
|
8352
8359
|
box-sizing: border-box;
|
|
8353
|
-
padding: var(--spacing-md);
|
|
8354
|
-
padding-top: var(--spacing-sm);
|
|
8355
8360
|
display: flex;
|
|
8356
8361
|
gap: var(--spacing-md);
|
|
8362
|
+
padding: var(--spacing-md);
|
|
8363
|
+
padding-top: var(--spacing-sm);
|
|
8357
8364
|
}
|
|
8358
8365
|
.Layer__table.Layer__bank-transactions__table {
|
|
8359
8366
|
overflow: auto;
|
|
@@ -8363,36 +8370,37 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8363
8370
|
width: 122px;
|
|
8364
8371
|
}
|
|
8365
8372
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
8366
|
-
position: sticky;
|
|
8367
|
-
width: 150px;
|
|
8368
|
-
min-width: 50px;
|
|
8369
8373
|
box-sizing: border-box;
|
|
8374
|
+
position: sticky;
|
|
8370
8375
|
z-index: 2;
|
|
8371
|
-
|
|
8376
|
+
--right-adjust: 56ch;
|
|
8377
|
+
right: var(--right-adjust);
|
|
8378
|
+
width: 130px;
|
|
8379
|
+
min-width: 130px;
|
|
8372
8380
|
box-shadow: -8px 0 20px -2px rgba(255, 255, 255, 0.64);
|
|
8373
|
-
|
|
8381
|
+
text-align: right;
|
|
8374
8382
|
}
|
|
8375
8383
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col[data-show-receipt-upload-column] {
|
|
8376
|
-
right:
|
|
8384
|
+
right: calc(var(--right-adjust) + 64px);
|
|
8377
8385
|
}
|
|
8378
8386
|
.Layer__table-header.Layer__bank-transactions__documents-col {
|
|
8379
|
-
padding-left: 0;
|
|
8380
8387
|
padding-right: 0;
|
|
8388
|
+
padding-left: 0;
|
|
8381
8389
|
}
|
|
8382
8390
|
.Layer__table-header.Layer__bank-transactions__documents-col[data-show-receipt-upload-column] {
|
|
8383
|
-
padding-left: 16px;
|
|
8384
8391
|
padding-right: 16px;
|
|
8392
|
+
padding-left: 16px;
|
|
8385
8393
|
}
|
|
8386
8394
|
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col {
|
|
8387
|
-
position: sticky;
|
|
8388
|
-
right: 430px;
|
|
8389
8395
|
box-sizing: border-box;
|
|
8396
|
+
position: sticky;
|
|
8390
8397
|
z-index: 2;
|
|
8391
|
-
|
|
8392
|
-
box-shadow: -8px 0 20px -2px rgba(255, 255, 255, 0.64);
|
|
8398
|
+
right: 56ch;
|
|
8393
8399
|
width: 0;
|
|
8394
8400
|
min-width: 0;
|
|
8395
8401
|
max-width: 0;
|
|
8402
|
+
box-shadow: -8px 0 20px -2px rgba(255, 255, 255, 0.64);
|
|
8403
|
+
text-align: center;
|
|
8396
8404
|
}
|
|
8397
8405
|
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col[data-show-receipt-upload-column] {
|
|
8398
8406
|
width: 64px;
|
|
@@ -8400,38 +8408,39 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8400
8408
|
max-width: 64px;
|
|
8401
8409
|
}
|
|
8402
8410
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__category-col {
|
|
8403
|
-
position: sticky;
|
|
8404
|
-
min-width: 430px;
|
|
8405
|
-
width: 430px;
|
|
8406
|
-
max-width: 430px;
|
|
8407
8411
|
box-sizing: border-box;
|
|
8408
|
-
|
|
8412
|
+
position: sticky;
|
|
8409
8413
|
z-index: 2;
|
|
8414
|
+
right: 0;
|
|
8415
|
+
--width: 56ch;
|
|
8416
|
+
width: var(--width);
|
|
8417
|
+
min-width: var(--width);
|
|
8418
|
+
max-width: var(--width);
|
|
8410
8419
|
}
|
|
8411
8420
|
.Layer__bank-transactions__date-col {
|
|
8412
|
-
|
|
8421
|
+
box-sizing: border-box;
|
|
8413
8422
|
width: 140px;
|
|
8423
|
+
min-width: 140px;
|
|
8414
8424
|
max-width: 140px;
|
|
8415
|
-
box-sizing: border-box;
|
|
8416
8425
|
}
|
|
8417
8426
|
.Layer__bank-transactions__tx-col {
|
|
8418
8427
|
box-sizing: border-box;
|
|
8419
8428
|
color: var(--color-base-1000);
|
|
8420
8429
|
}
|
|
8421
8430
|
.Layer__bank-transactions__tx-text {
|
|
8422
|
-
width:
|
|
8431
|
+
max-width: 32ch;
|
|
8423
8432
|
}
|
|
8424
8433
|
.Layer__bank-transactions__account-col {
|
|
8425
|
-
min-width: 125px;
|
|
8426
|
-
width: 180px;
|
|
8427
|
-
max-width: 180px;
|
|
8428
8434
|
box-sizing: border-box;
|
|
8435
|
+
width: 30ch;
|
|
8436
|
+
min-width: 10ch;
|
|
8437
|
+
max-width: 30ch;
|
|
8429
8438
|
}
|
|
8430
8439
|
.Layer__bank-transactions__documents-col {
|
|
8431
|
-
|
|
8440
|
+
box-sizing: border-box;
|
|
8432
8441
|
width: 64px;
|
|
8442
|
+
min-width: 64px;
|
|
8433
8443
|
max-width: 64px;
|
|
8434
|
-
box-sizing: border-box;
|
|
8435
8444
|
text-align: center;
|
|
8436
8445
|
}
|
|
8437
8446
|
.Layer__bank-transactions__documents-col .Layer__icon-box {
|
|
@@ -8439,15 +8448,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8439
8448
|
}
|
|
8440
8449
|
@container (min-width: 1400px) {
|
|
8441
8450
|
.Layer__table.Layer__bank-transactions__table .Layer__table-header.Layer__bank-transactions__date-col {
|
|
8442
|
-
|
|
8443
|
-
width:
|
|
8444
|
-
max-width:
|
|
8451
|
+
width: 150px;
|
|
8452
|
+
min-width: 150px;
|
|
8453
|
+
max-width: 150px;
|
|
8454
|
+
padding-right: var(--spacing-md);
|
|
8445
8455
|
padding-left: var(--spacing-xl);
|
|
8446
|
-
padding-right: var(--spacing-xl);
|
|
8447
8456
|
}
|
|
8448
8457
|
.Layer__table.Layer__bank-transactions__table .Layer__table-header.Layer__table-cell__category-col {
|
|
8449
|
-
padding-left: var(--spacing-xl);
|
|
8450
8458
|
padding-right: var(--spacing-xl);
|
|
8459
|
+
padding-left: var(--spacing-md);
|
|
8451
8460
|
}
|
|
8452
8461
|
.Layer__bank-transactions__table .Layer__skeleton-table-body__loader td:last-child .Layer__bank-transaction-row__actions-disabled {
|
|
8453
8462
|
padding-right: var(--spacing-md);
|
|
@@ -8457,18 +8466,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8457
8466
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col,
|
|
8458
8467
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col {
|
|
8459
8468
|
text-overflow: ellipsis;
|
|
8460
|
-
max-width: 280px;
|
|
8461
8469
|
}
|
|
8462
8470
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col .Layer__table-cell-content .Layer__bank-transactions__account-text,
|
|
8463
8471
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col .Layer__table-cell-content .Layer__bank-transactions__tx-text,
|
|
8464
8472
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col .Layer__table-cell-content .Layer__bank-transactions__account-text,
|
|
8465
8473
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col .Layer__table-cell-content .Layer__bank-transactions__tx-text {
|
|
8474
|
+
box-sizing: border-box;
|
|
8466
8475
|
display: block;
|
|
8467
|
-
max-width: 100%;
|
|
8468
8476
|
overflow: hidden;
|
|
8469
8477
|
text-overflow: ellipsis;
|
|
8470
8478
|
white-space: nowrap;
|
|
8471
|
-
box-sizing: border-box;
|
|
8472
8479
|
}
|
|
8473
8480
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--expanded td {
|
|
8474
8481
|
vertical-align: top;
|
|
@@ -8481,41 +8488,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8481
8488
|
border-left: 1px solid var(--border-color);
|
|
8482
8489
|
}
|
|
8483
8490
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col::after {
|
|
8484
|
-
|
|
8485
|
-
|
|
8491
|
+
position: absolute;
|
|
8492
|
+
z-index: 0;
|
|
8493
|
+
top: 0;
|
|
8494
|
+
left: -51px;
|
|
8486
8495
|
height: 100%;
|
|
8496
|
+
width: 50px;
|
|
8487
8497
|
background:
|
|
8488
8498
|
linear-gradient(
|
|
8489
8499
|
90deg,
|
|
8490
8500
|
rgba(255, 255, 255, 0) 0%,
|
|
8491
8501
|
rgb(255, 255, 255) 120%);
|
|
8492
|
-
|
|
8493
|
-
left: -51px;
|
|
8494
|
-
top: 0;
|
|
8495
|
-
z-index: 0;
|
|
8502
|
+
content: "";
|
|
8496
8503
|
}
|
|
8497
8504
|
}
|
|
8498
8505
|
@container (max-width: 1400px) {
|
|
8499
8506
|
.Layer__bank-transactions__header {
|
|
8500
|
-
padding-left: var(--spacing-md);
|
|
8501
|
-
padding-right: var(--spacing-md);
|
|
8502
|
-
padding-top: var(--spacing-md);
|
|
8503
8507
|
row-gap: var(--spacing-sm);
|
|
8508
|
+
padding-top: var(--spacing-md);
|
|
8509
|
+
padding-right: var(--spacing-md);
|
|
8510
|
+
padding-left: var(--spacing-md);
|
|
8504
8511
|
}
|
|
8505
8512
|
}
|
|
8506
8513
|
@container (max-width: 760px) {
|
|
8507
8514
|
.Layer__bank-transactions__header {
|
|
8508
|
-
box-shadow: 0 -1px 0 0 rgba(23, 51, 45, 0.16) inset;
|
|
8509
|
-
background-color: var(--table-bg);
|
|
8510
8515
|
position: sticky;
|
|
8511
|
-
top: 0;
|
|
8512
8516
|
z-index: 2;
|
|
8517
|
+
top: 0;
|
|
8513
8518
|
border-top-left-radius: var(--border-radius-sm);
|
|
8514
8519
|
border-top-right-radius: var(--border-radius-sm);
|
|
8520
|
+
box-shadow: 0 -1px 0 0 rgba(23, 51, 45, 0.16) inset;
|
|
8521
|
+
background-color: var(--table-bg);
|
|
8515
8522
|
}
|
|
8516
8523
|
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile {
|
|
8517
|
-
box-shadow: none;
|
|
8518
8524
|
padding-bottom: var(--spacing-2xs);
|
|
8525
|
+
box-shadow: none;
|
|
8519
8526
|
}
|
|
8520
8527
|
}
|
|
8521
8528
|
.Layer__tooltip.Layer__bank-transactions__tx-tooltip {
|
|
@@ -8524,11 +8531,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8524
8531
|
.Layer__bank-transaction-list-item__match-tooltip,
|
|
8525
8532
|
.Layer__expanded-bank-transaction-row__match-tooltip,
|
|
8526
8533
|
.Layer__bank-transaction-row__match-tooltip {
|
|
8527
|
-
font-size: var(--text-sm);
|
|
8528
8534
|
display: flex;
|
|
8529
8535
|
flex-direction: column;
|
|
8530
8536
|
row-gap: var(--spacing-2xs);
|
|
8531
8537
|
min-width: 200px;
|
|
8538
|
+
font-size: var(--text-sm);
|
|
8532
8539
|
}
|
|
8533
8540
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__date,
|
|
8534
8541
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__date,
|
|
@@ -8550,8 +8557,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8550
8557
|
.Layer__bank-transaction-row__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__description,
|
|
8551
8558
|
.Layer__bank-transaction-row__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__description,
|
|
8552
8559
|
.Layer__bank-transaction-row__match-tooltip .Layer__bank-transaction-row__match-tooltip__description {
|
|
8553
|
-
color: var(--color-base-500);
|
|
8554
8560
|
max-width: 230px;
|
|
8561
|
+
color: var(--color-base-500);
|
|
8555
8562
|
}
|
|
8556
8563
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__amount,
|
|
8557
8564
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__amount,
|
|
@@ -8566,17 +8573,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8566
8573
|
}
|
|
8567
8574
|
.Layer__bank-transaction-list-item__split-tooltip,
|
|
8568
8575
|
.Layer__bank-transaction-row__split-tooltip {
|
|
8569
|
-
font-size: var(--text-sm);
|
|
8570
8576
|
display: flex;
|
|
8571
8577
|
flex-direction: column;
|
|
8572
8578
|
row-gap: var(--spacing-2xs);
|
|
8573
8579
|
min-width: 200px;
|
|
8580
|
+
font-size: var(--text-sm);
|
|
8574
8581
|
}
|
|
8575
8582
|
.Layer__bank-transaction-list-item__split-tooltip ul,
|
|
8576
8583
|
.Layer__bank-transaction-row__split-tooltip ul {
|
|
8577
|
-
list-style: none;
|
|
8578
|
-
margin: 0;
|
|
8579
8584
|
padding: 0;
|
|
8585
|
+
margin: 0;
|
|
8586
|
+
list-style: none;
|
|
8580
8587
|
}
|
|
8581
8588
|
.Layer__bank-transaction-list-item__split-tooltip li,
|
|
8582
8589
|
.Layer__bank-transaction-row__split-tooltip li {
|
|
@@ -8598,36 +8605,36 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8598
8605
|
color: var(--color-base-300);
|
|
8599
8606
|
}
|
|
8600
8607
|
.Layer__expanded-bank-transaction-row__match-table {
|
|
8601
|
-
margin-bottom: var(--spacing-sm);
|
|
8602
8608
|
display: flex;
|
|
8603
8609
|
flex-direction: column;
|
|
8604
8610
|
gap: var(--spacing-2xs);
|
|
8611
|
+
margin-bottom: var(--spacing-sm);
|
|
8605
8612
|
}
|
|
8606
8613
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
8607
8614
|
display: flex;
|
|
8608
|
-
background: transparent;
|
|
8609
8615
|
width: 100%;
|
|
8616
|
+
background: transparent;
|
|
8610
8617
|
}
|
|
8611
8618
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
8612
8619
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8613
|
-
color: var(--color-base-500);
|
|
8614
8620
|
font-size: var(--text-sm);
|
|
8621
|
+
color: var(--color-base-500);
|
|
8615
8622
|
}
|
|
8616
8623
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date {
|
|
8617
|
-
width: 120px;
|
|
8618
8624
|
box-sizing: border-box;
|
|
8625
|
+
width: 120px;
|
|
8619
8626
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8620
8627
|
}
|
|
8621
8628
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
8622
8629
|
display: none;
|
|
8623
8630
|
}
|
|
8624
8631
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
8625
|
-
text-align: right;
|
|
8626
8632
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8633
|
+
text-align: right;
|
|
8627
8634
|
}
|
|
8628
8635
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status {
|
|
8629
|
-
text-align: right;
|
|
8630
8636
|
width: 90px;
|
|
8637
|
+
text-align: right;
|
|
8631
8638
|
}
|
|
8632
8639
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
8633
8640
|
width: 0;
|
|
@@ -8635,9 +8642,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8635
8642
|
}
|
|
8636
8643
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
|
|
8637
8644
|
flex: 1;
|
|
8645
|
+
overflow: hidden;
|
|
8638
8646
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8639
8647
|
white-space: nowrap;
|
|
8640
|
-
overflow: hidden;
|
|
8641
8648
|
text-overflow: ellipsis;
|
|
8642
8649
|
}
|
|
8643
8650
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
@@ -8653,22 +8660,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8653
8660
|
max-width: 100%;
|
|
8654
8661
|
}
|
|
8655
8662
|
.Layer__expanded-bank-transaction-row__match-row {
|
|
8656
|
-
cursor: pointer;
|
|
8657
8663
|
display: flex;
|
|
8658
8664
|
align-items: stretch;
|
|
8659
8665
|
overflow: hidden;
|
|
8666
|
+
cursor: pointer;
|
|
8660
8667
|
}
|
|
8661
8668
|
.Layer__expanded-bank-transaction-row__match-row .Layer__tooltip-trigger {
|
|
8662
8669
|
padding-top: 0;
|
|
8663
8670
|
}
|
|
8664
8671
|
.Layer__expanded-bank-transaction-row__match-row > div {
|
|
8665
|
-
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8666
|
-
color: var(--color-base-500);
|
|
8667
|
-
font-size: var(--text-md);
|
|
8668
8672
|
display: flex;
|
|
8669
8673
|
align-items: center;
|
|
8674
|
+
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8670
8675
|
border-top: 1px solid var(--color-base-300);
|
|
8671
8676
|
border-bottom: 1px solid var(--color-base-300);
|
|
8677
|
+
font-size: var(--text-md);
|
|
8678
|
+
color: var(--color-base-500);
|
|
8672
8679
|
}
|
|
8673
8680
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
8674
8681
|
border-top-left-radius: var(--border-radius-2xs);
|
|
@@ -8686,9 +8693,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8686
8693
|
background-color: transparent;
|
|
8687
8694
|
}
|
|
8688
8695
|
.Layer__expanded-bank-transaction-row__match-row:hover > div {
|
|
8689
|
-
background: var(--color-base-0);
|
|
8690
8696
|
border-top: 1px solid var(--color-base-300);
|
|
8691
8697
|
border-bottom: 1px solid var(--color-base-300);
|
|
8698
|
+
background: var(--color-base-0);
|
|
8692
8699
|
color: var(--color-base-700);
|
|
8693
8700
|
}
|
|
8694
8701
|
.Layer__expanded-bank-transaction-row__match-row:hover > div.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
@@ -8705,9 +8712,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8705
8712
|
border-right: 1px solid var(--color-base-300);
|
|
8706
8713
|
}
|
|
8707
8714
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
8708
|
-
background: var(--color-base-0);
|
|
8709
8715
|
border-top: 1px solid var(--color-base-800);
|
|
8710
8716
|
border-bottom: 1px solid var(--color-base-800);
|
|
8717
|
+
background: var(--color-base-0);
|
|
8711
8718
|
color: var(--color-base-700);
|
|
8712
8719
|
}
|
|
8713
8720
|
.Layer__expanded-bank-transaction-row__match-row--selected > div.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
@@ -8724,10 +8731,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8724
8731
|
background-color: transparent;
|
|
8725
8732
|
}
|
|
8726
8733
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
8727
|
-
background: var(--color-base-0);
|
|
8728
|
-
color: var(--color-base-700);
|
|
8729
8734
|
border-top: 1px solid var(--color-base-500);
|
|
8730
8735
|
border-bottom: 1px solid var(--color-base-500);
|
|
8736
|
+
background: var(--color-base-0);
|
|
8737
|
+
color: var(--color-base-700);
|
|
8731
8738
|
}
|
|
8732
8739
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:first-child {
|
|
8733
8740
|
border-left: 1px solid var(--color-base-500);
|
|
@@ -8747,8 +8754,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8747
8754
|
min-height: 72px;
|
|
8748
8755
|
}
|
|
8749
8756
|
.Layer__bank-transaction-mobile-list-item__description__label {
|
|
8750
|
-
color: var(--color-base-500);
|
|
8751
8757
|
margin-bottom: var(--spacing-2xs);
|
|
8758
|
+
color: var(--color-base-500);
|
|
8752
8759
|
}
|
|
8753
8760
|
.Layer__bank-transaction-mobile-list-item__match-list {
|
|
8754
8761
|
display: flex;
|
|
@@ -8758,19 +8765,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8758
8765
|
margin: var(--spacing-md) 0;
|
|
8759
8766
|
}
|
|
8760
8767
|
.Layer__bank-transaction-mobile-list-item__match-item {
|
|
8761
|
-
width: 100%;
|
|
8762
|
-
padding: var(--spacing-xs) 0;
|
|
8763
8768
|
display: flex;
|
|
8764
|
-
align-items: center;
|
|
8765
8769
|
gap: var(--spacing-sm);
|
|
8770
|
+
align-items: center;
|
|
8771
|
+
width: 100%;
|
|
8772
|
+
padding: var(--spacing-xs) 0;
|
|
8766
8773
|
border-bottom: 1px solid var(--color-base-50);
|
|
8767
8774
|
}
|
|
8768
8775
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
8769
8776
|
color: var(--color-base-500);
|
|
8770
8777
|
}
|
|
8771
8778
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-details {
|
|
8772
|
-
flex: 1;
|
|
8773
8779
|
display: flex;
|
|
8780
|
+
flex: 1;
|
|
8774
8781
|
flex-direction: column;
|
|
8775
8782
|
}
|
|
8776
8783
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__heading {
|
|
@@ -8785,10 +8792,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8785
8792
|
color: var(--color-base-500);
|
|
8786
8793
|
}
|
|
8787
8794
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
8788
|
-
width: 24px;
|
|
8789
|
-
min-width: 24px;
|
|
8790
8795
|
display: flex;
|
|
8791
8796
|
justify-content: flex-end;
|
|
8797
|
+
width: 24px;
|
|
8798
|
+
min-width: 24px;
|
|
8792
8799
|
}
|
|
8793
8800
|
.Layer__bank-transaction-mobile-list-item__match-item.Layer__bank-transaction-mobile-list-item__match-item--selected .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
8794
8801
|
color: var(--color-base-1000);
|
|
@@ -8832,9 +8839,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8832
8839
|
color: var(--color-base-700);
|
|
8833
8840
|
}
|
|
8834
8841
|
.Layer__expanded-bank-transaction-row__match-row--selected {
|
|
8842
|
+
border: 1px solid var(--color-base-800);
|
|
8835
8843
|
background: var(--color-base-0);
|
|
8836
8844
|
color: var(--color-base-700);
|
|
8837
|
-
border: 1px solid var(--color-base-800);
|
|
8838
8845
|
}
|
|
8839
8846
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
8840
8847
|
border-width: 0;
|
|
@@ -8860,8 +8867,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8860
8867
|
display: none !important;
|
|
8861
8868
|
}
|
|
8862
8869
|
.Layer__expanded-bank-transaction-row__match-table__desc {
|
|
8863
|
-
justify-content: space-between;
|
|
8864
8870
|
gap: var(--spacing-sm);
|
|
8871
|
+
justify-content: space-between;
|
|
8865
8872
|
}
|
|
8866
8873
|
.Layer__expanded-bank-transaction-row__match-table__desc > span:first-child {
|
|
8867
8874
|
width: calc(100% - 120px);
|
|
@@ -8879,10 +8886,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8879
8886
|
@container (max-width: 600px) {
|
|
8880
8887
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
8881
8888
|
display: flex;
|
|
8882
|
-
flex-direction: column;
|
|
8883
8889
|
flex: 1;
|
|
8884
|
-
|
|
8890
|
+
flex-direction: column;
|
|
8885
8891
|
gap: var(--spacing-sm);
|
|
8892
|
+
width: 100%;
|
|
8886
8893
|
}
|
|
8887
8894
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8888
8895
|
gap: var(--spacing-sm);
|
|
@@ -8892,21 +8899,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8892
8899
|
width: 100%;
|
|
8893
8900
|
}
|
|
8894
8901
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
8902
|
+
position: relative;
|
|
8895
8903
|
flex: 1;
|
|
8896
8904
|
max-width: 42%;
|
|
8897
|
-
position: relative;
|
|
8898
8905
|
}
|
|
8899
8906
|
.Layer__expanded-bank-transaction-row__total-and-btns {
|
|
8907
|
+
box-sizing: border-box;
|
|
8900
8908
|
flex-direction: row;
|
|
8901
|
-
justify-content: space-between;
|
|
8902
8909
|
align-items: center;
|
|
8903
|
-
|
|
8910
|
+
justify-content: space-between;
|
|
8904
8911
|
}
|
|
8905
8912
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip {
|
|
8913
|
+
position: relative;
|
|
8906
8914
|
flex: 1;
|
|
8907
8915
|
width: 100%;
|
|
8908
8916
|
max-width: 42%;
|
|
8909
|
-
position: relative;
|
|
8910
8917
|
}
|
|
8911
8918
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input {
|
|
8912
8919
|
max-width: 100%;
|
|
@@ -8927,13 +8934,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8927
8934
|
padding: var(--spacing-3xs);
|
|
8928
8935
|
}
|
|
8929
8936
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
8930
|
-
width: 32px;
|
|
8931
8937
|
height: 32px;
|
|
8932
8938
|
min-height: 32px;
|
|
8939
|
+
width: 32px;
|
|
8933
8940
|
}
|
|
8934
8941
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn svg {
|
|
8935
|
-
width: 14px;
|
|
8936
8942
|
height: 14px;
|
|
8943
|
+
width: 14px;
|
|
8937
8944
|
}
|
|
8938
8945
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn,
|
|
8939
8946
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn {
|
|
@@ -8945,53 +8952,53 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8945
8952
|
}
|
|
8946
8953
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn-icon,
|
|
8947
8954
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn-icon {
|
|
8948
|
-
width: 12px;
|
|
8949
8955
|
height: 12px;
|
|
8956
|
+
width: 12px;
|
|
8950
8957
|
}
|
|
8951
8958
|
}
|
|
8952
8959
|
.Layer__bank-transactions__notifications {
|
|
8953
8960
|
position: absolute;
|
|
8954
|
-
|
|
8955
|
-
flex-direction: column;
|
|
8961
|
+
z-index: 1;
|
|
8956
8962
|
bottom: var(--spacing-2xs);
|
|
8957
8963
|
left: calc(100% - 340px - var(--spacing-2xs));
|
|
8958
|
-
|
|
8959
|
-
|
|
8964
|
+
display: flex;
|
|
8965
|
+
flex-direction: column;
|
|
8960
8966
|
min-width: 300px;
|
|
8967
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
8961
8968
|
}
|
|
8962
8969
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification {
|
|
8963
|
-
transition: all var(--transition-speed) ease-in-out;
|
|
8964
8970
|
overflow: hidden;
|
|
8971
|
+
height: 56px;
|
|
8965
8972
|
padding: 12px;
|
|
8966
8973
|
margin: 0;
|
|
8967
8974
|
margin-top: -12px;
|
|
8968
|
-
height: 56px;
|
|
8969
8975
|
cursor: pointer;
|
|
8976
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
8970
8977
|
}
|
|
8971
8978
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification:hover .Layer__bank-transactions__notification-content {
|
|
8972
8979
|
box-shadow: 0 0 3px 0 var(--base-transparent-12), 0 0 0 1px var(--color-base-200);
|
|
8973
8980
|
}
|
|
8974
8981
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-content {
|
|
8975
8982
|
display: flex;
|
|
8983
|
+
gap: var(--spacing-sm);
|
|
8976
8984
|
align-items: center;
|
|
8977
8985
|
padding: var(--spacing-xs);
|
|
8978
8986
|
padding-right: var(--spacing-md);
|
|
8979
|
-
gap: var(--spacing-sm);
|
|
8980
8987
|
border-radius: var(--border-radius-3xs);
|
|
8981
|
-
background: var(--color-base-0);
|
|
8982
8988
|
box-shadow: 0 0 12px 0 var(--base-transparent-12), 0 0 0 1px var(--color-base-200);
|
|
8989
|
+
background: var(--color-base-0);
|
|
8983
8990
|
}
|
|
8984
8991
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-icon {
|
|
8985
|
-
width: var(--spacing-3xl);
|
|
8986
|
-
height: var(--spacing-3xl);
|
|
8987
8992
|
display: flex;
|
|
8988
8993
|
flex-direction: column;
|
|
8989
|
-
justify-content: center;
|
|
8990
8994
|
align-items: center;
|
|
8995
|
+
justify-content: center;
|
|
8996
|
+
height: var(--spacing-3xl);
|
|
8997
|
+
width: var(--spacing-3xl);
|
|
8991
8998
|
border-radius: var(--border-radius-3xs);
|
|
8999
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
8992
9000
|
background: var(--color-base-0);
|
|
8993
9001
|
color: var(--color-danger);
|
|
8994
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
8995
9002
|
}
|
|
8996
9003
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-text {
|
|
8997
9004
|
display: flex;
|
|
@@ -9017,18 +9024,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9017
9024
|
}
|
|
9018
9025
|
@keyframes fade-out {
|
|
9019
9026
|
from {
|
|
9020
|
-
|
|
9021
|
-
transform: scale(1);
|
|
9027
|
+
height: 56px;
|
|
9022
9028
|
padding-top: 12px;
|
|
9023
9029
|
padding-bottom: 12px;
|
|
9024
|
-
|
|
9030
|
+
opacity: 1;
|
|
9031
|
+
transform: scale(1);
|
|
9025
9032
|
}
|
|
9026
9033
|
to {
|
|
9027
|
-
|
|
9028
|
-
transform: scale(0.8);
|
|
9034
|
+
height: 0;
|
|
9029
9035
|
padding-top: 6px;
|
|
9030
9036
|
padding-bottom: 6px;
|
|
9031
|
-
|
|
9037
|
+
opacity: 0;
|
|
9038
|
+
transform: scale(0.8);
|
|
9032
9039
|
}
|
|
9033
9040
|
}
|
|
9034
9041
|
.notification-enter {
|
|
@@ -9038,14 +9045,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9038
9045
|
animation: fade-out var(--transition-speed) forwards;
|
|
9039
9046
|
}
|
|
9040
9047
|
.Layer__expanded-bank-transaction-row__splits-inputs + .Layer__text--error {
|
|
9041
|
-
margin: 0;
|
|
9042
9048
|
padding: var(--spacing-2xs) 0;
|
|
9043
9049
|
padding-bottom: var(--spacing-md);
|
|
9050
|
+
margin: 0;
|
|
9044
9051
|
}
|
|
9045
9052
|
.Layer__expanded-bank-transaction-row__match-table .Layer__text--error {
|
|
9046
|
-
margin: 0;
|
|
9047
9053
|
padding: var(--spacing-2xs) 0;
|
|
9048
9054
|
padding-bottom: var(--spacing-md);
|
|
9055
|
+
margin: 0;
|
|
9049
9056
|
}
|
|
9050
9057
|
.Layer__bank-transaction-table__date-col,
|
|
9051
9058
|
.Layer__bank-transactions__account-col {
|
|
@@ -9067,8 +9074,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9067
9074
|
@container (min-width: 401px) {
|
|
9068
9075
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip,
|
|
9069
9076
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
9070
|
-
max-width: 200px;
|
|
9071
9077
|
flex: 1;
|
|
9078
|
+
max-width: 200px;
|
|
9072
9079
|
}
|
|
9073
9080
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip .Layer__input,
|
|
9074
9081
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip .Layer__input {
|
|
@@ -9077,20 +9084,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9077
9084
|
}
|
|
9078
9085
|
@container (max-width: 480px) {
|
|
9079
9086
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input:disabled {
|
|
9087
|
+
box-shadow: none;
|
|
9080
9088
|
background-color: transparent;
|
|
9081
9089
|
border-color: transparent;
|
|
9082
|
-
box-shadow: none;
|
|
9083
9090
|
}
|
|
9084
9091
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input-left-text {
|
|
9085
9092
|
border-right-color: transparent;
|
|
9086
9093
|
}
|
|
9087
9094
|
}
|
|
9088
9095
|
.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
9089
|
-
max-height: 0;
|
|
9090
9096
|
top: 1px;
|
|
9097
|
+
overflow: hidden;
|
|
9098
|
+
max-height: 0;
|
|
9091
9099
|
padding-top: 0;
|
|
9092
9100
|
padding-bottom: 0;
|
|
9093
|
-
overflow: hidden;
|
|
9094
9101
|
}
|
|
9095
9102
|
.Layer__bank-transactions__mobile-list {
|
|
9096
9103
|
padding: 0;
|
|
@@ -9302,9 +9309,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9302
9309
|
width: 100%;
|
|
9303
9310
|
}
|
|
9304
9311
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
9312
|
+
position: relative;
|
|
9305
9313
|
display: flex;
|
|
9306
9314
|
align-items: stretch;
|
|
9307
|
-
position: relative;
|
|
9308
9315
|
}
|
|
9309
9316
|
.Layer__chart-of-accounts__loader-container {
|
|
9310
9317
|
padding: var(--spacing-2xl);
|
|
@@ -9323,11 +9330,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9323
9330
|
.Layer__chart-of-accounts .Layer__panel {
|
|
9324
9331
|
max-width: 100%;
|
|
9325
9332
|
}
|
|
9333
|
+
.Layer__chart-of-accounts__table {
|
|
9334
|
+
table-layout: fixed;
|
|
9335
|
+
}
|
|
9336
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--name {
|
|
9337
|
+
width: auto;
|
|
9338
|
+
min-width: 16rem;
|
|
9339
|
+
}
|
|
9340
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--type {
|
|
9341
|
+
width: 8rem;
|
|
9342
|
+
}
|
|
9343
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--subtype {
|
|
9344
|
+
width: 16rem;
|
|
9345
|
+
}
|
|
9346
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--balance {
|
|
9347
|
+
width: 8rem;
|
|
9348
|
+
}
|
|
9349
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--actions {
|
|
9350
|
+
width: 8rem;
|
|
9351
|
+
}
|
|
9326
9352
|
.Layer__chart-of-accounts__sidebar__header {
|
|
9327
9353
|
display: flex;
|
|
9328
|
-
justify-content: space-between;
|
|
9329
|
-
align-items: flex-start;
|
|
9330
9354
|
gap: var(--spacing-md);
|
|
9355
|
+
align-items: flex-start;
|
|
9356
|
+
justify-content: space-between;
|
|
9331
9357
|
}
|
|
9332
9358
|
.Layer__chart-of-accounts__sidebar__header .actions {
|
|
9333
9359
|
display: flex;
|
|
@@ -9355,27 +9381,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9355
9381
|
max-width: 140px;
|
|
9356
9382
|
}
|
|
9357
9383
|
.Layer__chart-of-accounts__form-edit-entry {
|
|
9358
|
-
padding: var(--spacing-md);
|
|
9359
9384
|
display: flex;
|
|
9385
|
+
gap: var(--spacing-md);
|
|
9360
9386
|
align-items: center;
|
|
9361
9387
|
justify-content: space-between;
|
|
9362
|
-
|
|
9388
|
+
padding: var(--spacing-md);
|
|
9363
9389
|
}
|
|
9364
9390
|
.Layer__chart-of-accounts__form-edit-entry .Layer__text {
|
|
9365
9391
|
margin: 0;
|
|
9366
9392
|
}
|
|
9367
9393
|
.Layer__chart-of-accounts__form__error-message {
|
|
9368
|
-
|
|
9394
|
+
box-sizing: border-box;
|
|
9369
9395
|
width: 100%;
|
|
9396
|
+
padding: var(--spacing-4xs) var(--spacing-xl);
|
|
9370
9397
|
text-align: right;
|
|
9371
|
-
box-sizing: border-box;
|
|
9372
9398
|
color: var(--color-danger);
|
|
9373
9399
|
}
|
|
9374
9400
|
.Layer__chart-of-accounts__form-row {
|
|
9401
|
+
box-sizing: border-box;
|
|
9375
9402
|
display: flex;
|
|
9376
9403
|
gap: var(--spacing-md);
|
|
9377
9404
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
9378
|
-
box-sizing: border-box;
|
|
9379
9405
|
border-top: 1px solid var(--border-color);
|
|
9380
9406
|
background-color: var(--color-base-100);
|
|
9381
9407
|
}
|
|
@@ -9387,17 +9413,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9387
9413
|
min-width: 120px;
|
|
9388
9414
|
}
|
|
9389
9415
|
.Layer__chart-of-accounts__row---mobile {
|
|
9390
|
-
visibility: hidden;
|
|
9391
9416
|
display: none;
|
|
9417
|
+
visibility: hidden;
|
|
9392
9418
|
}
|
|
9393
9419
|
.Layer__chart-of-accounts__row---mobile .Layer__chart-of-accounts__mobile-row-content {
|
|
9394
9420
|
display: flex;
|
|
9395
9421
|
flex-direction: column;
|
|
9396
9422
|
gap: var(--spacing-xs);
|
|
9397
9423
|
width: 100%;
|
|
9398
|
-
padding-right: var(--spacing-md);
|
|
9399
9424
|
padding-top: var(--spacing-3xs);
|
|
9400
|
-
padding-
|
|
9425
|
+
padding-right: var(--spacing-md);
|
|
9426
|
+
padding-bottom: var(--spacing-3xs);
|
|
9401
9427
|
}
|
|
9402
9428
|
.Layer__chart-of-accounts__mobile-row-content__top-row,
|
|
9403
9429
|
.Layer__chart-of-accounts__mobile-row-content__bottom-row {
|
|
@@ -9409,16 +9435,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9409
9435
|
color: var(--color-base-800);
|
|
9410
9436
|
}
|
|
9411
9437
|
.Layer__chart-of-accounts__mobile-row-content__balance {
|
|
9412
|
-
color: var(--color-base-800);
|
|
9413
9438
|
font-weight: var(--font-weight-bold);
|
|
9439
|
+
color: var(--color-base-800);
|
|
9414
9440
|
}
|
|
9415
9441
|
.Layer__chart-of-accounts__row---mobile.Layer__table-row--depth-0 .Layer__chart-of-accounts__mobile-row-content__name {
|
|
9416
9442
|
font-weight: var(--font-weight-bold);
|
|
9417
9443
|
}
|
|
9418
9444
|
.Layer__chart-of-accounts__mobile-row-content__types {
|
|
9419
9445
|
display: flex;
|
|
9420
|
-
align-items: center;
|
|
9421
9446
|
gap: var(--spacing-3xs);
|
|
9447
|
+
align-items: center;
|
|
9422
9448
|
}
|
|
9423
9449
|
.Layer__chart-of-accounts__mobile-row-content__types .Layer__text {
|
|
9424
9450
|
color: var(--color-base-700);
|
|
@@ -9455,26 +9481,26 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9455
9481
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__input-group,
|
|
9456
9482
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__chart-of-accounts__form__input-group__title {
|
|
9457
9483
|
box-sizing: border-box;
|
|
9458
|
-
max-width: 600px;
|
|
9459
9484
|
width: 100%;
|
|
9485
|
+
max-width: 600px;
|
|
9460
9486
|
margin: auto;
|
|
9461
9487
|
}
|
|
9462
9488
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__chart-of-accounts__form-edit-entry {
|
|
9463
9489
|
box-sizing: border-box;
|
|
9490
|
+
width: 100%;
|
|
9464
9491
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
9465
9492
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
9466
|
-
width: 100%;
|
|
9467
9493
|
margin: auto;
|
|
9468
9494
|
}
|
|
9469
9495
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__header__col {
|
|
9470
9496
|
width: 100%;
|
|
9471
|
-
margin: auto;
|
|
9472
|
-
padding: var(--spacing-md) var(--spacing-xl);
|
|
9473
9497
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
9498
|
+
padding: var(--spacing-md) var(--spacing-xl);
|
|
9499
|
+
margin: auto;
|
|
9474
9500
|
}
|
|
9475
9501
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .actions {
|
|
9476
|
-
max-width: 600px;
|
|
9477
9502
|
width: 100%;
|
|
9503
|
+
max-width: 600px;
|
|
9478
9504
|
margin: auto;
|
|
9479
9505
|
}
|
|
9480
9506
|
}
|
|
@@ -9491,12 +9517,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9491
9517
|
overflow: auto;
|
|
9492
9518
|
}
|
|
9493
9519
|
.Layer__chart-of-accounts__row---mobile {
|
|
9494
|
-
visibility: visible;
|
|
9495
9520
|
display: table-row;
|
|
9521
|
+
visibility: visible;
|
|
9496
9522
|
}
|
|
9497
9523
|
.Layer__chart-of-accounts__row---desktop {
|
|
9498
|
-
visibility: hidden;
|
|
9499
9524
|
display: none;
|
|
9525
|
+
visibility: hidden;
|
|
9500
9526
|
}
|
|
9501
9527
|
.Layer__chart-of-accounts__form-row {
|
|
9502
9528
|
flex-direction: column;
|
|
@@ -9538,9 +9564,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9538
9564
|
max-width: 100%;
|
|
9539
9565
|
overflow: auto;
|
|
9540
9566
|
}
|
|
9541
|
-
.Layer__journal-table .Layer__table-cell-content::before {
|
|
9542
|
-
background: var(--color-base-400);
|
|
9543
|
-
}
|
|
9544
9567
|
.Layer__journal__arrow .Layer__table-cell-content {
|
|
9545
9568
|
padding-right: 0 !important;
|
|
9546
9569
|
}
|