@layerfi/components 0.1.102 → 0.1.103-alpha
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 +289 -265
- 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: 520px;
|
|
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: 520px;
|
|
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: 520px;
|
|
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,19 +8408,20 @@ 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: 520px;
|
|
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;
|
|
@@ -8422,16 +8431,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8422
8431
|
width: 100%;
|
|
8423
8432
|
}
|
|
8424
8433
|
.Layer__bank-transactions__account-col {
|
|
8425
|
-
|
|
8434
|
+
box-sizing: border-box;
|
|
8426
8435
|
width: 180px;
|
|
8436
|
+
min-width: 125px;
|
|
8427
8437
|
max-width: 180px;
|
|
8428
|
-
box-sizing: border-box;
|
|
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,17 @@ 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;
|
|
8477
|
+
max-width: 100%;
|
|
8469
8478
|
text-overflow: ellipsis;
|
|
8470
8479
|
white-space: nowrap;
|
|
8471
|
-
box-sizing: border-box;
|
|
8472
8480
|
}
|
|
8473
8481
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--expanded td {
|
|
8474
8482
|
vertical-align: top;
|
|
@@ -8481,41 +8489,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8481
8489
|
border-left: 1px solid var(--border-color);
|
|
8482
8490
|
}
|
|
8483
8491
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col::after {
|
|
8484
|
-
|
|
8485
|
-
|
|
8492
|
+
position: absolute;
|
|
8493
|
+
z-index: 0;
|
|
8494
|
+
top: 0;
|
|
8495
|
+
left: -51px;
|
|
8486
8496
|
height: 100%;
|
|
8497
|
+
width: 50px;
|
|
8487
8498
|
background:
|
|
8488
8499
|
linear-gradient(
|
|
8489
8500
|
90deg,
|
|
8490
8501
|
rgba(255, 255, 255, 0) 0%,
|
|
8491
8502
|
rgb(255, 255, 255) 120%);
|
|
8492
|
-
|
|
8493
|
-
left: -51px;
|
|
8494
|
-
top: 0;
|
|
8495
|
-
z-index: 0;
|
|
8503
|
+
content: "";
|
|
8496
8504
|
}
|
|
8497
8505
|
}
|
|
8498
8506
|
@container (max-width: 1400px) {
|
|
8499
8507
|
.Layer__bank-transactions__header {
|
|
8500
|
-
padding-left: var(--spacing-md);
|
|
8501
|
-
padding-right: var(--spacing-md);
|
|
8502
|
-
padding-top: var(--spacing-md);
|
|
8503
8508
|
row-gap: var(--spacing-sm);
|
|
8509
|
+
padding-top: var(--spacing-md);
|
|
8510
|
+
padding-right: var(--spacing-md);
|
|
8511
|
+
padding-left: var(--spacing-md);
|
|
8504
8512
|
}
|
|
8505
8513
|
}
|
|
8506
8514
|
@container (max-width: 760px) {
|
|
8507
8515
|
.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
8516
|
position: sticky;
|
|
8511
|
-
top: 0;
|
|
8512
8517
|
z-index: 2;
|
|
8518
|
+
top: 0;
|
|
8513
8519
|
border-top-left-radius: var(--border-radius-sm);
|
|
8514
8520
|
border-top-right-radius: var(--border-radius-sm);
|
|
8521
|
+
box-shadow: 0 -1px 0 0 rgba(23, 51, 45, 0.16) inset;
|
|
8522
|
+
background-color: var(--table-bg);
|
|
8515
8523
|
}
|
|
8516
8524
|
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile {
|
|
8517
|
-
box-shadow: none;
|
|
8518
8525
|
padding-bottom: var(--spacing-2xs);
|
|
8526
|
+
box-shadow: none;
|
|
8519
8527
|
}
|
|
8520
8528
|
}
|
|
8521
8529
|
.Layer__tooltip.Layer__bank-transactions__tx-tooltip {
|
|
@@ -8524,11 +8532,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8524
8532
|
.Layer__bank-transaction-list-item__match-tooltip,
|
|
8525
8533
|
.Layer__expanded-bank-transaction-row__match-tooltip,
|
|
8526
8534
|
.Layer__bank-transaction-row__match-tooltip {
|
|
8527
|
-
font-size: var(--text-sm);
|
|
8528
8535
|
display: flex;
|
|
8529
8536
|
flex-direction: column;
|
|
8530
8537
|
row-gap: var(--spacing-2xs);
|
|
8531
8538
|
min-width: 200px;
|
|
8539
|
+
font-size: var(--text-sm);
|
|
8532
8540
|
}
|
|
8533
8541
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__date,
|
|
8534
8542
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__date,
|
|
@@ -8550,8 +8558,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8550
8558
|
.Layer__bank-transaction-row__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__description,
|
|
8551
8559
|
.Layer__bank-transaction-row__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__description,
|
|
8552
8560
|
.Layer__bank-transaction-row__match-tooltip .Layer__bank-transaction-row__match-tooltip__description {
|
|
8553
|
-
color: var(--color-base-500);
|
|
8554
8561
|
max-width: 230px;
|
|
8562
|
+
color: var(--color-base-500);
|
|
8555
8563
|
}
|
|
8556
8564
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__amount,
|
|
8557
8565
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__amount,
|
|
@@ -8566,17 +8574,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8566
8574
|
}
|
|
8567
8575
|
.Layer__bank-transaction-list-item__split-tooltip,
|
|
8568
8576
|
.Layer__bank-transaction-row__split-tooltip {
|
|
8569
|
-
font-size: var(--text-sm);
|
|
8570
8577
|
display: flex;
|
|
8571
8578
|
flex-direction: column;
|
|
8572
8579
|
row-gap: var(--spacing-2xs);
|
|
8573
8580
|
min-width: 200px;
|
|
8581
|
+
font-size: var(--text-sm);
|
|
8574
8582
|
}
|
|
8575
8583
|
.Layer__bank-transaction-list-item__split-tooltip ul,
|
|
8576
8584
|
.Layer__bank-transaction-row__split-tooltip ul {
|
|
8577
|
-
list-style: none;
|
|
8578
|
-
margin: 0;
|
|
8579
8585
|
padding: 0;
|
|
8586
|
+
margin: 0;
|
|
8587
|
+
list-style: none;
|
|
8580
8588
|
}
|
|
8581
8589
|
.Layer__bank-transaction-list-item__split-tooltip li,
|
|
8582
8590
|
.Layer__bank-transaction-row__split-tooltip li {
|
|
@@ -8598,36 +8606,36 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8598
8606
|
color: var(--color-base-300);
|
|
8599
8607
|
}
|
|
8600
8608
|
.Layer__expanded-bank-transaction-row__match-table {
|
|
8601
|
-
margin-bottom: var(--spacing-sm);
|
|
8602
8609
|
display: flex;
|
|
8603
8610
|
flex-direction: column;
|
|
8604
8611
|
gap: var(--spacing-2xs);
|
|
8612
|
+
margin-bottom: var(--spacing-sm);
|
|
8605
8613
|
}
|
|
8606
8614
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
8607
8615
|
display: flex;
|
|
8608
|
-
background: transparent;
|
|
8609
8616
|
width: 100%;
|
|
8617
|
+
background: transparent;
|
|
8610
8618
|
}
|
|
8611
8619
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
8612
8620
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8613
|
-
color: var(--color-base-500);
|
|
8614
8621
|
font-size: var(--text-sm);
|
|
8622
|
+
color: var(--color-base-500);
|
|
8615
8623
|
}
|
|
8616
8624
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date {
|
|
8617
|
-
width: 120px;
|
|
8618
8625
|
box-sizing: border-box;
|
|
8626
|
+
width: 120px;
|
|
8619
8627
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8620
8628
|
}
|
|
8621
8629
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
8622
8630
|
display: none;
|
|
8623
8631
|
}
|
|
8624
8632
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
8625
|
-
text-align: right;
|
|
8626
8633
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8634
|
+
text-align: right;
|
|
8627
8635
|
}
|
|
8628
8636
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status {
|
|
8629
|
-
text-align: right;
|
|
8630
8637
|
width: 90px;
|
|
8638
|
+
text-align: right;
|
|
8631
8639
|
}
|
|
8632
8640
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
8633
8641
|
width: 0;
|
|
@@ -8635,9 +8643,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8635
8643
|
}
|
|
8636
8644
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
|
|
8637
8645
|
flex: 1;
|
|
8646
|
+
overflow: hidden;
|
|
8638
8647
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8639
8648
|
white-space: nowrap;
|
|
8640
|
-
overflow: hidden;
|
|
8641
8649
|
text-overflow: ellipsis;
|
|
8642
8650
|
}
|
|
8643
8651
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
@@ -8653,22 +8661,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8653
8661
|
max-width: 100%;
|
|
8654
8662
|
}
|
|
8655
8663
|
.Layer__expanded-bank-transaction-row__match-row {
|
|
8656
|
-
cursor: pointer;
|
|
8657
8664
|
display: flex;
|
|
8658
8665
|
align-items: stretch;
|
|
8659
8666
|
overflow: hidden;
|
|
8667
|
+
cursor: pointer;
|
|
8660
8668
|
}
|
|
8661
8669
|
.Layer__expanded-bank-transaction-row__match-row .Layer__tooltip-trigger {
|
|
8662
8670
|
padding-top: 0;
|
|
8663
8671
|
}
|
|
8664
8672
|
.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
8673
|
display: flex;
|
|
8669
8674
|
align-items: center;
|
|
8675
|
+
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8670
8676
|
border-top: 1px solid var(--color-base-300);
|
|
8671
8677
|
border-bottom: 1px solid var(--color-base-300);
|
|
8678
|
+
font-size: var(--text-md);
|
|
8679
|
+
color: var(--color-base-500);
|
|
8672
8680
|
}
|
|
8673
8681
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
8674
8682
|
border-top-left-radius: var(--border-radius-2xs);
|
|
@@ -8686,9 +8694,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8686
8694
|
background-color: transparent;
|
|
8687
8695
|
}
|
|
8688
8696
|
.Layer__expanded-bank-transaction-row__match-row:hover > div {
|
|
8689
|
-
background: var(--color-base-0);
|
|
8690
8697
|
border-top: 1px solid var(--color-base-300);
|
|
8691
8698
|
border-bottom: 1px solid var(--color-base-300);
|
|
8699
|
+
background: var(--color-base-0);
|
|
8692
8700
|
color: var(--color-base-700);
|
|
8693
8701
|
}
|
|
8694
8702
|
.Layer__expanded-bank-transaction-row__match-row:hover > div.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
@@ -8705,9 +8713,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8705
8713
|
border-right: 1px solid var(--color-base-300);
|
|
8706
8714
|
}
|
|
8707
8715
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
8708
|
-
background: var(--color-base-0);
|
|
8709
8716
|
border-top: 1px solid var(--color-base-800);
|
|
8710
8717
|
border-bottom: 1px solid var(--color-base-800);
|
|
8718
|
+
background: var(--color-base-0);
|
|
8711
8719
|
color: var(--color-base-700);
|
|
8712
8720
|
}
|
|
8713
8721
|
.Layer__expanded-bank-transaction-row__match-row--selected > div.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
@@ -8724,10 +8732,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8724
8732
|
background-color: transparent;
|
|
8725
8733
|
}
|
|
8726
8734
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
8727
|
-
background: var(--color-base-0);
|
|
8728
|
-
color: var(--color-base-700);
|
|
8729
8735
|
border-top: 1px solid var(--color-base-500);
|
|
8730
8736
|
border-bottom: 1px solid var(--color-base-500);
|
|
8737
|
+
background: var(--color-base-0);
|
|
8738
|
+
color: var(--color-base-700);
|
|
8731
8739
|
}
|
|
8732
8740
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:first-child {
|
|
8733
8741
|
border-left: 1px solid var(--color-base-500);
|
|
@@ -8747,8 +8755,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8747
8755
|
min-height: 72px;
|
|
8748
8756
|
}
|
|
8749
8757
|
.Layer__bank-transaction-mobile-list-item__description__label {
|
|
8750
|
-
color: var(--color-base-500);
|
|
8751
8758
|
margin-bottom: var(--spacing-2xs);
|
|
8759
|
+
color: var(--color-base-500);
|
|
8752
8760
|
}
|
|
8753
8761
|
.Layer__bank-transaction-mobile-list-item__match-list {
|
|
8754
8762
|
display: flex;
|
|
@@ -8758,19 +8766,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8758
8766
|
margin: var(--spacing-md) 0;
|
|
8759
8767
|
}
|
|
8760
8768
|
.Layer__bank-transaction-mobile-list-item__match-item {
|
|
8761
|
-
width: 100%;
|
|
8762
|
-
padding: var(--spacing-xs) 0;
|
|
8763
8769
|
display: flex;
|
|
8764
|
-
align-items: center;
|
|
8765
8770
|
gap: var(--spacing-sm);
|
|
8771
|
+
align-items: center;
|
|
8772
|
+
width: 100%;
|
|
8773
|
+
padding: var(--spacing-xs) 0;
|
|
8766
8774
|
border-bottom: 1px solid var(--color-base-50);
|
|
8767
8775
|
}
|
|
8768
8776
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
8769
8777
|
color: var(--color-base-500);
|
|
8770
8778
|
}
|
|
8771
8779
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-details {
|
|
8772
|
-
flex: 1;
|
|
8773
8780
|
display: flex;
|
|
8781
|
+
flex: 1;
|
|
8774
8782
|
flex-direction: column;
|
|
8775
8783
|
}
|
|
8776
8784
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__heading {
|
|
@@ -8785,10 +8793,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8785
8793
|
color: var(--color-base-500);
|
|
8786
8794
|
}
|
|
8787
8795
|
.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
8796
|
display: flex;
|
|
8791
8797
|
justify-content: flex-end;
|
|
8798
|
+
width: 24px;
|
|
8799
|
+
min-width: 24px;
|
|
8792
8800
|
}
|
|
8793
8801
|
.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
8802
|
color: var(--color-base-1000);
|
|
@@ -8832,9 +8840,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8832
8840
|
color: var(--color-base-700);
|
|
8833
8841
|
}
|
|
8834
8842
|
.Layer__expanded-bank-transaction-row__match-row--selected {
|
|
8843
|
+
border: 1px solid var(--color-base-800);
|
|
8835
8844
|
background: var(--color-base-0);
|
|
8836
8845
|
color: var(--color-base-700);
|
|
8837
|
-
border: 1px solid var(--color-base-800);
|
|
8838
8846
|
}
|
|
8839
8847
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
8840
8848
|
border-width: 0;
|
|
@@ -8860,8 +8868,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8860
8868
|
display: none !important;
|
|
8861
8869
|
}
|
|
8862
8870
|
.Layer__expanded-bank-transaction-row__match-table__desc {
|
|
8863
|
-
justify-content: space-between;
|
|
8864
8871
|
gap: var(--spacing-sm);
|
|
8872
|
+
justify-content: space-between;
|
|
8865
8873
|
}
|
|
8866
8874
|
.Layer__expanded-bank-transaction-row__match-table__desc > span:first-child {
|
|
8867
8875
|
width: calc(100% - 120px);
|
|
@@ -8879,10 +8887,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8879
8887
|
@container (max-width: 600px) {
|
|
8880
8888
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
8881
8889
|
display: flex;
|
|
8882
|
-
flex-direction: column;
|
|
8883
8890
|
flex: 1;
|
|
8884
|
-
|
|
8891
|
+
flex-direction: column;
|
|
8885
8892
|
gap: var(--spacing-sm);
|
|
8893
|
+
width: 100%;
|
|
8886
8894
|
}
|
|
8887
8895
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8888
8896
|
gap: var(--spacing-sm);
|
|
@@ -8892,21 +8900,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8892
8900
|
width: 100%;
|
|
8893
8901
|
}
|
|
8894
8902
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
8903
|
+
position: relative;
|
|
8895
8904
|
flex: 1;
|
|
8896
8905
|
max-width: 42%;
|
|
8897
|
-
position: relative;
|
|
8898
8906
|
}
|
|
8899
8907
|
.Layer__expanded-bank-transaction-row__total-and-btns {
|
|
8908
|
+
box-sizing: border-box;
|
|
8900
8909
|
flex-direction: row;
|
|
8901
|
-
justify-content: space-between;
|
|
8902
8910
|
align-items: center;
|
|
8903
|
-
|
|
8911
|
+
justify-content: space-between;
|
|
8904
8912
|
}
|
|
8905
8913
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip {
|
|
8914
|
+
position: relative;
|
|
8906
8915
|
flex: 1;
|
|
8907
8916
|
width: 100%;
|
|
8908
8917
|
max-width: 42%;
|
|
8909
|
-
position: relative;
|
|
8910
8918
|
}
|
|
8911
8919
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input {
|
|
8912
8920
|
max-width: 100%;
|
|
@@ -8927,13 +8935,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8927
8935
|
padding: var(--spacing-3xs);
|
|
8928
8936
|
}
|
|
8929
8937
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
8930
|
-
width: 32px;
|
|
8931
8938
|
height: 32px;
|
|
8932
8939
|
min-height: 32px;
|
|
8940
|
+
width: 32px;
|
|
8933
8941
|
}
|
|
8934
8942
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn svg {
|
|
8935
|
-
width: 14px;
|
|
8936
8943
|
height: 14px;
|
|
8944
|
+
width: 14px;
|
|
8937
8945
|
}
|
|
8938
8946
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn,
|
|
8939
8947
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn {
|
|
@@ -8945,53 +8953,53 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8945
8953
|
}
|
|
8946
8954
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn-icon,
|
|
8947
8955
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn-icon {
|
|
8948
|
-
width: 12px;
|
|
8949
8956
|
height: 12px;
|
|
8957
|
+
width: 12px;
|
|
8950
8958
|
}
|
|
8951
8959
|
}
|
|
8952
8960
|
.Layer__bank-transactions__notifications {
|
|
8953
8961
|
position: absolute;
|
|
8954
|
-
|
|
8955
|
-
flex-direction: column;
|
|
8962
|
+
z-index: 1;
|
|
8956
8963
|
bottom: var(--spacing-2xs);
|
|
8957
8964
|
left: calc(100% - 340px - var(--spacing-2xs));
|
|
8958
|
-
|
|
8959
|
-
|
|
8965
|
+
display: flex;
|
|
8966
|
+
flex-direction: column;
|
|
8960
8967
|
min-width: 300px;
|
|
8968
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
8961
8969
|
}
|
|
8962
8970
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification {
|
|
8963
|
-
transition: all var(--transition-speed) ease-in-out;
|
|
8964
8971
|
overflow: hidden;
|
|
8972
|
+
height: 56px;
|
|
8965
8973
|
padding: 12px;
|
|
8966
8974
|
margin: 0;
|
|
8967
8975
|
margin-top: -12px;
|
|
8968
|
-
height: 56px;
|
|
8969
8976
|
cursor: pointer;
|
|
8977
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
8970
8978
|
}
|
|
8971
8979
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification:hover .Layer__bank-transactions__notification-content {
|
|
8972
8980
|
box-shadow: 0 0 3px 0 var(--base-transparent-12), 0 0 0 1px var(--color-base-200);
|
|
8973
8981
|
}
|
|
8974
8982
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-content {
|
|
8975
8983
|
display: flex;
|
|
8984
|
+
gap: var(--spacing-sm);
|
|
8976
8985
|
align-items: center;
|
|
8977
8986
|
padding: var(--spacing-xs);
|
|
8978
8987
|
padding-right: var(--spacing-md);
|
|
8979
|
-
gap: var(--spacing-sm);
|
|
8980
8988
|
border-radius: var(--border-radius-3xs);
|
|
8981
|
-
background: var(--color-base-0);
|
|
8982
8989
|
box-shadow: 0 0 12px 0 var(--base-transparent-12), 0 0 0 1px var(--color-base-200);
|
|
8990
|
+
background: var(--color-base-0);
|
|
8983
8991
|
}
|
|
8984
8992
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-icon {
|
|
8985
|
-
width: var(--spacing-3xl);
|
|
8986
|
-
height: var(--spacing-3xl);
|
|
8987
8993
|
display: flex;
|
|
8988
8994
|
flex-direction: column;
|
|
8989
|
-
justify-content: center;
|
|
8990
8995
|
align-items: center;
|
|
8996
|
+
justify-content: center;
|
|
8997
|
+
height: var(--spacing-3xl);
|
|
8998
|
+
width: var(--spacing-3xl);
|
|
8991
8999
|
border-radius: var(--border-radius-3xs);
|
|
9000
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
8992
9001
|
background: var(--color-base-0);
|
|
8993
9002
|
color: var(--color-danger);
|
|
8994
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
8995
9003
|
}
|
|
8996
9004
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-text {
|
|
8997
9005
|
display: flex;
|
|
@@ -9017,18 +9025,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9017
9025
|
}
|
|
9018
9026
|
@keyframes fade-out {
|
|
9019
9027
|
from {
|
|
9020
|
-
|
|
9021
|
-
transform: scale(1);
|
|
9028
|
+
height: 56px;
|
|
9022
9029
|
padding-top: 12px;
|
|
9023
9030
|
padding-bottom: 12px;
|
|
9024
|
-
|
|
9031
|
+
opacity: 1;
|
|
9032
|
+
transform: scale(1);
|
|
9025
9033
|
}
|
|
9026
9034
|
to {
|
|
9027
|
-
|
|
9028
|
-
transform: scale(0.8);
|
|
9035
|
+
height: 0;
|
|
9029
9036
|
padding-top: 6px;
|
|
9030
9037
|
padding-bottom: 6px;
|
|
9031
|
-
|
|
9038
|
+
opacity: 0;
|
|
9039
|
+
transform: scale(0.8);
|
|
9032
9040
|
}
|
|
9033
9041
|
}
|
|
9034
9042
|
.notification-enter {
|
|
@@ -9038,14 +9046,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9038
9046
|
animation: fade-out var(--transition-speed) forwards;
|
|
9039
9047
|
}
|
|
9040
9048
|
.Layer__expanded-bank-transaction-row__splits-inputs + .Layer__text--error {
|
|
9041
|
-
margin: 0;
|
|
9042
9049
|
padding: var(--spacing-2xs) 0;
|
|
9043
9050
|
padding-bottom: var(--spacing-md);
|
|
9051
|
+
margin: 0;
|
|
9044
9052
|
}
|
|
9045
9053
|
.Layer__expanded-bank-transaction-row__match-table .Layer__text--error {
|
|
9046
|
-
margin: 0;
|
|
9047
9054
|
padding: var(--spacing-2xs) 0;
|
|
9048
9055
|
padding-bottom: var(--spacing-md);
|
|
9056
|
+
margin: 0;
|
|
9049
9057
|
}
|
|
9050
9058
|
.Layer__bank-transaction-table__date-col,
|
|
9051
9059
|
.Layer__bank-transactions__account-col {
|
|
@@ -9067,8 +9075,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9067
9075
|
@container (min-width: 401px) {
|
|
9068
9076
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip,
|
|
9069
9077
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
9070
|
-
max-width: 200px;
|
|
9071
9078
|
flex: 1;
|
|
9079
|
+
max-width: 200px;
|
|
9072
9080
|
}
|
|
9073
9081
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip .Layer__input,
|
|
9074
9082
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip .Layer__input {
|
|
@@ -9077,20 +9085,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9077
9085
|
}
|
|
9078
9086
|
@container (max-width: 480px) {
|
|
9079
9087
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input:disabled {
|
|
9088
|
+
box-shadow: none;
|
|
9080
9089
|
background-color: transparent;
|
|
9081
9090
|
border-color: transparent;
|
|
9082
|
-
box-shadow: none;
|
|
9083
9091
|
}
|
|
9084
9092
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input-left-text {
|
|
9085
9093
|
border-right-color: transparent;
|
|
9086
9094
|
}
|
|
9087
9095
|
}
|
|
9088
9096
|
.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
9089
|
-
max-height: 0;
|
|
9090
9097
|
top: 1px;
|
|
9098
|
+
overflow: hidden;
|
|
9099
|
+
max-height: 0;
|
|
9091
9100
|
padding-top: 0;
|
|
9092
9101
|
padding-bottom: 0;
|
|
9093
|
-
overflow: hidden;
|
|
9094
9102
|
}
|
|
9095
9103
|
.Layer__bank-transactions__mobile-list {
|
|
9096
9104
|
padding: 0;
|
|
@@ -9302,9 +9310,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9302
9310
|
width: 100%;
|
|
9303
9311
|
}
|
|
9304
9312
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
9313
|
+
position: relative;
|
|
9305
9314
|
display: flex;
|
|
9306
9315
|
align-items: stretch;
|
|
9307
|
-
position: relative;
|
|
9308
9316
|
}
|
|
9309
9317
|
.Layer__chart-of-accounts__loader-container {
|
|
9310
9318
|
padding: var(--spacing-2xl);
|
|
@@ -9323,11 +9331,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9323
9331
|
.Layer__chart-of-accounts .Layer__panel {
|
|
9324
9332
|
max-width: 100%;
|
|
9325
9333
|
}
|
|
9334
|
+
.Layer__chart-of-accounts__table {
|
|
9335
|
+
table-layout: fixed;
|
|
9336
|
+
}
|
|
9337
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--name {
|
|
9338
|
+
width: auto;
|
|
9339
|
+
min-width: 16rem;
|
|
9340
|
+
}
|
|
9341
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--type {
|
|
9342
|
+
width: 8rem;
|
|
9343
|
+
}
|
|
9344
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--subtype {
|
|
9345
|
+
width: 16rem;
|
|
9346
|
+
}
|
|
9347
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--balance {
|
|
9348
|
+
width: 8rem;
|
|
9349
|
+
}
|
|
9350
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--actions {
|
|
9351
|
+
width: 8rem;
|
|
9352
|
+
}
|
|
9326
9353
|
.Layer__chart-of-accounts__sidebar__header {
|
|
9327
9354
|
display: flex;
|
|
9328
|
-
justify-content: space-between;
|
|
9329
|
-
align-items: flex-start;
|
|
9330
9355
|
gap: var(--spacing-md);
|
|
9356
|
+
align-items: flex-start;
|
|
9357
|
+
justify-content: space-between;
|
|
9331
9358
|
}
|
|
9332
9359
|
.Layer__chart-of-accounts__sidebar__header .actions {
|
|
9333
9360
|
display: flex;
|
|
@@ -9355,27 +9382,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9355
9382
|
max-width: 140px;
|
|
9356
9383
|
}
|
|
9357
9384
|
.Layer__chart-of-accounts__form-edit-entry {
|
|
9358
|
-
padding: var(--spacing-md);
|
|
9359
9385
|
display: flex;
|
|
9386
|
+
gap: var(--spacing-md);
|
|
9360
9387
|
align-items: center;
|
|
9361
9388
|
justify-content: space-between;
|
|
9362
|
-
|
|
9389
|
+
padding: var(--spacing-md);
|
|
9363
9390
|
}
|
|
9364
9391
|
.Layer__chart-of-accounts__form-edit-entry .Layer__text {
|
|
9365
9392
|
margin: 0;
|
|
9366
9393
|
}
|
|
9367
9394
|
.Layer__chart-of-accounts__form__error-message {
|
|
9368
|
-
|
|
9395
|
+
box-sizing: border-box;
|
|
9369
9396
|
width: 100%;
|
|
9397
|
+
padding: var(--spacing-4xs) var(--spacing-xl);
|
|
9370
9398
|
text-align: right;
|
|
9371
|
-
box-sizing: border-box;
|
|
9372
9399
|
color: var(--color-danger);
|
|
9373
9400
|
}
|
|
9374
9401
|
.Layer__chart-of-accounts__form-row {
|
|
9402
|
+
box-sizing: border-box;
|
|
9375
9403
|
display: flex;
|
|
9376
9404
|
gap: var(--spacing-md);
|
|
9377
9405
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
9378
|
-
box-sizing: border-box;
|
|
9379
9406
|
border-top: 1px solid var(--border-color);
|
|
9380
9407
|
background-color: var(--color-base-100);
|
|
9381
9408
|
}
|
|
@@ -9387,17 +9414,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9387
9414
|
min-width: 120px;
|
|
9388
9415
|
}
|
|
9389
9416
|
.Layer__chart-of-accounts__row---mobile {
|
|
9390
|
-
visibility: hidden;
|
|
9391
9417
|
display: none;
|
|
9418
|
+
visibility: hidden;
|
|
9392
9419
|
}
|
|
9393
9420
|
.Layer__chart-of-accounts__row---mobile .Layer__chart-of-accounts__mobile-row-content {
|
|
9394
9421
|
display: flex;
|
|
9395
9422
|
flex-direction: column;
|
|
9396
9423
|
gap: var(--spacing-xs);
|
|
9397
9424
|
width: 100%;
|
|
9398
|
-
padding-right: var(--spacing-md);
|
|
9399
9425
|
padding-top: var(--spacing-3xs);
|
|
9400
|
-
padding-
|
|
9426
|
+
padding-right: var(--spacing-md);
|
|
9427
|
+
padding-bottom: var(--spacing-3xs);
|
|
9401
9428
|
}
|
|
9402
9429
|
.Layer__chart-of-accounts__mobile-row-content__top-row,
|
|
9403
9430
|
.Layer__chart-of-accounts__mobile-row-content__bottom-row {
|
|
@@ -9409,16 +9436,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9409
9436
|
color: var(--color-base-800);
|
|
9410
9437
|
}
|
|
9411
9438
|
.Layer__chart-of-accounts__mobile-row-content__balance {
|
|
9412
|
-
color: var(--color-base-800);
|
|
9413
9439
|
font-weight: var(--font-weight-bold);
|
|
9440
|
+
color: var(--color-base-800);
|
|
9414
9441
|
}
|
|
9415
9442
|
.Layer__chart-of-accounts__row---mobile.Layer__table-row--depth-0 .Layer__chart-of-accounts__mobile-row-content__name {
|
|
9416
9443
|
font-weight: var(--font-weight-bold);
|
|
9417
9444
|
}
|
|
9418
9445
|
.Layer__chart-of-accounts__mobile-row-content__types {
|
|
9419
9446
|
display: flex;
|
|
9420
|
-
align-items: center;
|
|
9421
9447
|
gap: var(--spacing-3xs);
|
|
9448
|
+
align-items: center;
|
|
9422
9449
|
}
|
|
9423
9450
|
.Layer__chart-of-accounts__mobile-row-content__types .Layer__text {
|
|
9424
9451
|
color: var(--color-base-700);
|
|
@@ -9455,26 +9482,26 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9455
9482
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__input-group,
|
|
9456
9483
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__chart-of-accounts__form__input-group__title {
|
|
9457
9484
|
box-sizing: border-box;
|
|
9458
|
-
max-width: 600px;
|
|
9459
9485
|
width: 100%;
|
|
9486
|
+
max-width: 600px;
|
|
9460
9487
|
margin: auto;
|
|
9461
9488
|
}
|
|
9462
9489
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__chart-of-accounts__form-edit-entry {
|
|
9463
9490
|
box-sizing: border-box;
|
|
9491
|
+
width: 100%;
|
|
9464
9492
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
9465
9493
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
9466
|
-
width: 100%;
|
|
9467
9494
|
margin: auto;
|
|
9468
9495
|
}
|
|
9469
9496
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__header__col {
|
|
9470
9497
|
width: 100%;
|
|
9471
|
-
margin: auto;
|
|
9472
|
-
padding: var(--spacing-md) var(--spacing-xl);
|
|
9473
9498
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
9499
|
+
padding: var(--spacing-md) var(--spacing-xl);
|
|
9500
|
+
margin: auto;
|
|
9474
9501
|
}
|
|
9475
9502
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .actions {
|
|
9476
|
-
max-width: 600px;
|
|
9477
9503
|
width: 100%;
|
|
9504
|
+
max-width: 600px;
|
|
9478
9505
|
margin: auto;
|
|
9479
9506
|
}
|
|
9480
9507
|
}
|
|
@@ -9491,12 +9518,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9491
9518
|
overflow: auto;
|
|
9492
9519
|
}
|
|
9493
9520
|
.Layer__chart-of-accounts__row---mobile {
|
|
9494
|
-
visibility: visible;
|
|
9495
9521
|
display: table-row;
|
|
9522
|
+
visibility: visible;
|
|
9496
9523
|
}
|
|
9497
9524
|
.Layer__chart-of-accounts__row---desktop {
|
|
9498
|
-
visibility: hidden;
|
|
9499
9525
|
display: none;
|
|
9526
|
+
visibility: hidden;
|
|
9500
9527
|
}
|
|
9501
9528
|
.Layer__chart-of-accounts__form-row {
|
|
9502
9529
|
flex-direction: column;
|
|
@@ -9538,9 +9565,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9538
9565
|
max-width: 100%;
|
|
9539
9566
|
overflow: auto;
|
|
9540
9567
|
}
|
|
9541
|
-
.Layer__journal-table .Layer__table-cell-content::before {
|
|
9542
|
-
background: var(--color-base-400);
|
|
9543
|
-
}
|
|
9544
9568
|
.Layer__journal__arrow .Layer__table-cell-content {
|
|
9545
9569
|
padding-right: 0 !important;
|
|
9546
9570
|
}
|