@layerfi/components 0.1.102-alpha.6 → 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 +1657 -1662
- package/dist/esm/index.mjs +1576 -1582
- package/dist/index.css +304 -267
- package/dist/index.d.ts +36 -25
- package/package.json +3 -3
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
|
|
|
@@ -186,10 +185,10 @@
|
|
|
186
185
|
--outline-default: var(--color-base-300);
|
|
187
186
|
--outline-active: var(--color-base-500);
|
|
188
187
|
--button-bg-default: var(--color-base-1000);
|
|
189
|
-
--button-
|
|
188
|
+
--button-bg-disabled: var(--color-base-200);
|
|
190
189
|
--button-bg-active: var(--color-base-800);
|
|
190
|
+
--button-fg-default: var(--color-base-0);
|
|
191
191
|
--button-fg-disabled: var(--color-base-500);
|
|
192
|
-
--button-bg-disabled: var(--color-base-200);
|
|
193
192
|
--button-fg-ghost: var(--color-base-800);
|
|
194
193
|
--button-border-color-ghost: var(--color-base-300);
|
|
195
194
|
--button-border-color-ghost-active: var(--color-base-800);
|
|
@@ -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
|
}
|
|
@@ -4518,6 +4509,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4518
4509
|
outline: 2px solid var(--outline-default);
|
|
4519
4510
|
background-color: var(--button-bg-active);
|
|
4520
4511
|
}
|
|
4512
|
+
.Layer__UI__Button[data-variant=text] {
|
|
4513
|
+
--size: 1.75rem;
|
|
4514
|
+
padding-inline: var(--spacing-xs);
|
|
4515
|
+
border: none;
|
|
4516
|
+
background-color: transparent;
|
|
4517
|
+
}
|
|
4518
|
+
.Layer__UI__Button[data-variant=text][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4519
|
+
outline: none;
|
|
4520
|
+
text-decoration: underline;
|
|
4521
|
+
}
|
|
4522
|
+
.Layer__UI__Button[data-variant=text][data-pressed]:not([data-focus-visible]) {
|
|
4523
|
+
text-decoration: none;
|
|
4524
|
+
}
|
|
4521
4525
|
.Layer__ButtonTransparentContent {
|
|
4522
4526
|
opacity: 0;
|
|
4523
4527
|
grid-row: 1/-1;
|
|
@@ -4902,6 +4906,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4902
4906
|
.Layer__Stack[data-justify=space-between] {
|
|
4903
4907
|
justify-content: space-between;
|
|
4904
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
|
+
}
|
|
4905
4924
|
.Layer__Stack[data-gap="3xs"] {
|
|
4906
4925
|
gap: var(--spacing-3xs);
|
|
4907
4926
|
}
|
|
@@ -7815,18 +7834,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7815
7834
|
padding-bottom: var(--spacing-lg);
|
|
7816
7835
|
}
|
|
7817
7836
|
.Layer__bank-transactions .Layer__bank-transactions__table-wrapper {
|
|
7818
|
-
max-width: var(--max-component-width);
|
|
7819
7837
|
overflow: auto;
|
|
7838
|
+
max-width: var(--max-component-width);
|
|
7820
7839
|
margin-bottom: var(--spacing-lg);
|
|
7821
7840
|
}
|
|
7822
7841
|
.Layer__syncing__info {
|
|
7823
7842
|
display: flex;
|
|
7824
|
-
align-items: center;
|
|
7825
7843
|
gap: var(--spacing-md);
|
|
7844
|
+
align-items: center;
|
|
7826
7845
|
padding: 0 var(--spacing-md);
|
|
7846
|
+
border-left: 1px solid var(--border-color);
|
|
7827
7847
|
margin-left: var(--spacing-md);
|
|
7828
7848
|
font-size: var(--text-sm);
|
|
7829
|
-
border-left: 1px solid var(--border-color);
|
|
7830
7849
|
}
|
|
7831
7850
|
.Layer__bank-transaction-row__expand-button:disabled {
|
|
7832
7851
|
cursor: default;
|
|
@@ -7853,15 +7872,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7853
7872
|
background-color: var(--color-base-100);
|
|
7854
7873
|
}
|
|
7855
7874
|
.Layer__bank-transactions__header--mobile .Layer__syncing-component {
|
|
7856
|
-
border-width: 0;
|
|
7857
7875
|
padding: 0 var(--spacing-xs);
|
|
7876
|
+
border-width: 0;
|
|
7858
7877
|
margin-left: 0;
|
|
7859
7878
|
}
|
|
7860
7879
|
.Layer__syncing__info__text {
|
|
7861
7880
|
display: flex;
|
|
7862
7881
|
flex-direction: column;
|
|
7863
|
-
color: var(--color-base-500);
|
|
7864
7882
|
gap: var(--spacing-4xs);
|
|
7883
|
+
color: var(--color-base-500);
|
|
7865
7884
|
}
|
|
7866
7885
|
.Layer__syncing__info__text span:first-child {
|
|
7867
7886
|
color: var(--color-base-800);
|
|
@@ -7878,8 +7897,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7878
7897
|
left: 0;
|
|
7879
7898
|
display: flex;
|
|
7880
7899
|
flex-direction: column;
|
|
7881
|
-
width: 100%;
|
|
7882
7900
|
align-items: stretch;
|
|
7901
|
+
width: 100%;
|
|
7883
7902
|
}
|
|
7884
7903
|
.Layer__bank-transactions__header__content {
|
|
7885
7904
|
display: flex;
|
|
@@ -7906,10 +7925,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7906
7925
|
margin-right: 4px;
|
|
7907
7926
|
}
|
|
7908
7927
|
.Layer__bank-transactions__header-menu__upload-transactions-icon {
|
|
7909
|
-
color: var(--color-base-500);
|
|
7910
|
-
background: var(--color-base-200);
|
|
7911
|
-
border-radius: var(--spacing-3xs);
|
|
7912
7928
|
padding: var(--spacing-3xs);
|
|
7929
|
+
border-radius: var(--spacing-3xs);
|
|
7930
|
+
background: var(--color-base-200);
|
|
7931
|
+
color: var(--color-base-500);
|
|
7913
7932
|
}
|
|
7914
7933
|
.Layer__bank-transaction-row {
|
|
7915
7934
|
transition: all var(--transition-speed) ease-in-out;
|
|
@@ -7924,9 +7943,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7924
7943
|
opacity: 1;
|
|
7925
7944
|
}
|
|
7926
7945
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
7927
|
-
padding: 0 var(--spacing-md);
|
|
7928
7946
|
overflow: hidden;
|
|
7929
7947
|
min-height: 0;
|
|
7948
|
+
padding: 0 var(--spacing-md);
|
|
7930
7949
|
}
|
|
7931
7950
|
.Layer__bank-transaction-row:first-child .Layer__table-cell {
|
|
7932
7951
|
border-top-width: 0;
|
|
@@ -7935,13 +7954,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7935
7954
|
border-bottom: 1px solid var(--border-color);
|
|
7936
7955
|
}
|
|
7937
7956
|
.Layer__bank-transactions__table .Layer__skeleton-table-body__loader td:last-child {
|
|
7938
|
-
position: sticky;
|
|
7939
|
-
min-width: 430px;
|
|
7940
|
-
width: 430px;
|
|
7941
|
-
max-width: 430px;
|
|
7942
7957
|
box-sizing: border-box;
|
|
7943
|
-
|
|
7958
|
+
position: sticky;
|
|
7944
7959
|
z-index: 2;
|
|
7960
|
+
right: 0;
|
|
7961
|
+
--width: 520px;
|
|
7962
|
+
width: var(--width);
|
|
7963
|
+
min-width: var(--width);
|
|
7964
|
+
max-width: var(--width);
|
|
7945
7965
|
border-left: 1px solid var(--border-color);
|
|
7946
7966
|
background-color: var(--color-base-0);
|
|
7947
7967
|
}
|
|
@@ -7954,32 +7974,32 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7954
7974
|
cursor: default;
|
|
7955
7975
|
}
|
|
7956
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 {
|
|
7957
|
-
background-color: var(--color-base-50);
|
|
7958
7977
|
border: none;
|
|
7959
7978
|
box-shadow: none;
|
|
7979
|
+
background-color: var(--color-base-50);
|
|
7960
7980
|
cursor: default;
|
|
7961
7981
|
}
|
|
7962
7982
|
.Layer__bank-transactions__table .Layer__table-header {
|
|
7963
|
-
background-color: var(--table-bg);
|
|
7964
7983
|
border-bottom: 1px solid var(--border-color);
|
|
7984
|
+
background-color: var(--table-bg);
|
|
7965
7985
|
}
|
|
7966
7986
|
.Layer__bank-transaction-row .Layer__table-cell {
|
|
7967
7987
|
background-color: var(--table-bg);
|
|
7968
7988
|
transition: background-color var(--transition-speed) ease-out;
|
|
7969
7989
|
}
|
|
7970
7990
|
.Layer__bank-transaction-row .Layer__table-cell-content {
|
|
7971
|
-
min-height: 64px;
|
|
7972
7991
|
box-sizing: border-box;
|
|
7973
7992
|
display: flex;
|
|
7974
7993
|
align-items: center;
|
|
7994
|
+
min-height: 64px;
|
|
7975
7995
|
}
|
|
7976
7996
|
.Layer__bank-transaction-row--expanded .Layer__table-cell {
|
|
7977
7997
|
background-color: var(--bg-element-focus);
|
|
7978
7998
|
}
|
|
7979
7999
|
.Layer__expanded-bank-transaction-row {
|
|
8000
|
+
position: relative;
|
|
7980
8001
|
display: block;
|
|
7981
8002
|
overflow: hidden;
|
|
7982
|
-
position: relative;
|
|
7983
8003
|
background-color: var(--bg-element-focus);
|
|
7984
8004
|
transition: background-color var(--transition-speed) ease-in-out, height var(--transition-speed) ease-in-out;
|
|
7985
8005
|
}
|
|
@@ -7997,12 +8017,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7997
8017
|
background-color: var(--color-base-300);
|
|
7998
8018
|
}
|
|
7999
8019
|
.Layer__bank-transaction-row:hover .Layer__bank-transaction__submit-btn:not([disabled]) {
|
|
8000
|
-
color: var(--btn-color-hover);
|
|
8001
8020
|
background: var(--btn-bg-color-hover);
|
|
8021
|
+
color: var(--btn-color-hover);
|
|
8002
8022
|
}
|
|
8003
8023
|
.Layer__bank-transaction-row:hover .Layer__bank-transaction__submit-btn:not([disabled]) .Layer__btn-icon {
|
|
8004
|
-
color: var(--btn-color-icon-hover);
|
|
8005
8024
|
background: var(--btn-bg-color-icon-hover);
|
|
8025
|
+
color: var(--btn-color-icon-hover);
|
|
8006
8026
|
}
|
|
8007
8027
|
.Layer__bank-transaction-row:hover .Layer__bank-transaction__submit-btn:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-active {
|
|
8008
8028
|
display: block;
|
|
@@ -8019,15 +8039,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8019
8039
|
}
|
|
8020
8040
|
.Layer__bank-transaction-list-item__category-text,
|
|
8021
8041
|
.Layer__bank-transaction-row__category-text {
|
|
8042
|
+
display: inline-flex;
|
|
8022
8043
|
flex: 1;
|
|
8044
|
+
gap: var(--spacing-xs);
|
|
8045
|
+
align-items: center;
|
|
8046
|
+
overflow: hidden;
|
|
8047
|
+
padding-left: 10px;
|
|
8023
8048
|
color: var(--text-color-primary);
|
|
8024
8049
|
white-space: nowrap;
|
|
8025
|
-
padding-left: 10px;
|
|
8026
8050
|
text-overflow: ellipsis;
|
|
8027
|
-
overflow: hidden;
|
|
8028
|
-
display: inline-flex;
|
|
8029
|
-
align-items: center;
|
|
8030
|
-
gap: var(--spacing-xs);
|
|
8031
8051
|
}
|
|
8032
8052
|
.Layer__bank-transaction-list-item__category-text .Layer__tooltip-trigger,
|
|
8033
8053
|
.Layer__bank-transaction-row__category-text .Layer__tooltip-trigger {
|
|
@@ -8038,8 +8058,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8038
8058
|
.Layer__bank-transaction-row__category-text .Layer__bank-transaction-list-item__category-text__text,
|
|
8039
8059
|
.Layer__bank-transaction-row__category-text .Layer__bank-transaction-row__category-text__text {
|
|
8040
8060
|
flex: 1;
|
|
8041
|
-
max-width: 100%;
|
|
8042
8061
|
overflow: hidden;
|
|
8062
|
+
max-width: 100%;
|
|
8043
8063
|
text-overflow: ellipsis;
|
|
8044
8064
|
}
|
|
8045
8065
|
.Layer__bank-transaction-list-item__category-text__text {
|
|
@@ -8049,62 +8069,62 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8049
8069
|
}
|
|
8050
8070
|
.Layer__bank-transaction-list-item__content,
|
|
8051
8071
|
.Layer__expanded-bank-transaction-row__content {
|
|
8072
|
+
box-sizing: border-box;
|
|
8052
8073
|
display: flex;
|
|
8053
8074
|
flex-direction: column;
|
|
8054
8075
|
gap: var(--spacing-sm);
|
|
8055
8076
|
max-width: 680px;
|
|
8056
|
-
box-sizing: border-box;
|
|
8057
8077
|
}
|
|
8058
8078
|
.Layer__expanded-bank-transaction-row__content-panels {
|
|
8079
|
+
box-sizing: border-box;
|
|
8059
8080
|
display: flex;
|
|
8060
8081
|
flex-direction: row;
|
|
8061
8082
|
max-width: 680px;
|
|
8062
|
-
box-sizing: border-box;
|
|
8063
8083
|
}
|
|
8064
8084
|
.Layer__expanded-bank-transaction-row__content-panel {
|
|
8065
|
-
|
|
8066
|
-
opacity: 0;
|
|
8067
|
-
transition: max-width 150ms ease-out, opacity 300ms ease-out;
|
|
8068
|
-
overflow: hidden;
|
|
8069
|
-
flex: 1;
|
|
8085
|
+
box-sizing: border-box;
|
|
8070
8086
|
display: flex;
|
|
8087
|
+
flex: 1;
|
|
8071
8088
|
flex-direction: column;
|
|
8072
8089
|
gap: var(--spacing-sm);
|
|
8073
|
-
|
|
8090
|
+
overflow: hidden;
|
|
8091
|
+
max-width: 0;
|
|
8092
|
+
opacity: 0;
|
|
8093
|
+
transition: max-width 150ms ease-out, opacity 300ms ease-out;
|
|
8074
8094
|
}
|
|
8075
8095
|
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__content-panel-container {
|
|
8076
|
-
padding: 0 var(--spacing-md);
|
|
8077
8096
|
box-sizing: border-box;
|
|
8097
|
+
padding: 0 var(--spacing-md);
|
|
8078
8098
|
}
|
|
8079
8099
|
.Layer__expanded-bank-transaction-row__content-panel.Layer__expanded-bank-transaction-row__content-panel--active {
|
|
8080
8100
|
max-width: 100%;
|
|
8081
8101
|
opacity: 1;
|
|
8082
8102
|
}
|
|
8083
8103
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__select .Layer__select__control {
|
|
8084
|
-
max-width: 0;
|
|
8085
8104
|
overflow: hidden;
|
|
8105
|
+
max-width: 0;
|
|
8086
8106
|
}
|
|
8087
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 {
|
|
8088
|
-
max-width: 0;
|
|
8089
8108
|
overflow: hidden;
|
|
8109
|
+
max-width: 0;
|
|
8090
8110
|
}
|
|
8091
8111
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__splits-buttons {
|
|
8092
|
-
max-width: 0;
|
|
8093
8112
|
overflow: hidden;
|
|
8113
|
+
max-width: 0;
|
|
8094
8114
|
}
|
|
8095
8115
|
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__splits-total {
|
|
8096
|
-
max-width: 0;
|
|
8097
8116
|
overflow: hidden;
|
|
8117
|
+
max-width: 0;
|
|
8098
8118
|
}
|
|
8099
8119
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry__right-col {
|
|
8100
8120
|
display: flex;
|
|
8101
|
-
gap: var(--spacing-sm);
|
|
8102
8121
|
flex: 1;
|
|
8122
|
+
gap: var(--spacing-sm);
|
|
8103
8123
|
align-items: center;
|
|
8104
8124
|
}
|
|
8105
8125
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
8106
|
-
width: 36px;
|
|
8107
8126
|
height: 36px;
|
|
8127
|
+
width: 36px;
|
|
8108
8128
|
padding: 0;
|
|
8109
8129
|
}
|
|
8110
8130
|
@container (min-width: 701px) {
|
|
@@ -8135,15 +8155,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8135
8155
|
gap: var(--spacing-sm);
|
|
8136
8156
|
}
|
|
8137
8157
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
8138
|
-
flex: 1;
|
|
8139
|
-
padding-top: 2px;
|
|
8140
8158
|
display: flex;
|
|
8159
|
+
flex: 1;
|
|
8141
8160
|
flex-direction: column;
|
|
8142
8161
|
gap: var(--spacing-sm);
|
|
8162
|
+
padding-top: 2px;
|
|
8143
8163
|
}
|
|
8144
8164
|
.Layer__expanded-bank-transaction-row__splits-total {
|
|
8145
|
-
color: var(--color-base-500);
|
|
8146
8165
|
padding: var(--spacing-3xs);
|
|
8166
|
+
color: var(--color-base-500);
|
|
8147
8167
|
}
|
|
8148
8168
|
.Layer__expanded-bank-transaction-row__splits-buttons {
|
|
8149
8169
|
padding-bottom: 2px;
|
|
@@ -8182,22 +8202,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8182
8202
|
padding: 0 var(--spacing-md);
|
|
8183
8203
|
}
|
|
8184
8204
|
.Layer__expanded-bank-transaction-row__description textarea {
|
|
8205
|
+
height: 100px;
|
|
8185
8206
|
width: 100%;
|
|
8186
8207
|
max-width: 680px;
|
|
8187
|
-
height: 100px;
|
|
8188
8208
|
}
|
|
8189
8209
|
.Layer__expanded-bank-transaction-row__file-upload {
|
|
8190
|
-
padding: 0 var(--spacing-md);
|
|
8191
|
-
padding-bottom: var(--spacing-sm);
|
|
8192
8210
|
display: flex;
|
|
8193
8211
|
flex-direction: column;
|
|
8194
|
-
align-items: flex-start;
|
|
8195
8212
|
gap: var(--spacing-md);
|
|
8213
|
+
align-items: flex-start;
|
|
8214
|
+
padding: 0 var(--spacing-md);
|
|
8215
|
+
padding-bottom: var(--spacing-sm);
|
|
8196
8216
|
}
|
|
8197
8217
|
.Layer__bank-transaction-row__actions-cell {
|
|
8218
|
+
width: 0%;
|
|
8198
8219
|
border-left: 1px solid var(--border-color);
|
|
8199
8220
|
transition: border 5s ease-out;
|
|
8200
|
-
width: 0%;
|
|
8201
8221
|
}
|
|
8202
8222
|
.Layer__bank-transaction-row__expand-button {
|
|
8203
8223
|
width: 36px;
|
|
@@ -8208,9 +8228,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8208
8228
|
}
|
|
8209
8229
|
.Layer__bank-transaction-row__actions-container {
|
|
8210
8230
|
display: flex;
|
|
8231
|
+
gap: 8px;
|
|
8211
8232
|
align-items: center;
|
|
8212
8233
|
justify-content: flex-end;
|
|
8213
|
-
gap: 8px;
|
|
8214
8234
|
}
|
|
8215
8235
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8216
8236
|
display: flex;
|
|
@@ -8236,15 +8256,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8236
8256
|
transform: scale(1);
|
|
8237
8257
|
}
|
|
8238
8258
|
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__base-row {
|
|
8259
|
+
justify-content: flex-end;
|
|
8239
8260
|
max-height: 60px;
|
|
8240
8261
|
opacity: 1;
|
|
8241
8262
|
transition: max-height 350ms ease-out, opacity 200ms ease-out;
|
|
8242
|
-
justify-content: flex-end;
|
|
8243
8263
|
}
|
|
8244
8264
|
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__expanded-row {
|
|
8265
|
+
overflow: hidden;
|
|
8245
8266
|
max-height: 0;
|
|
8246
8267
|
padding: 0;
|
|
8247
|
-
overflow: hidden;
|
|
8248
8268
|
transition: all var(--transition-speed) ease-out;
|
|
8249
8269
|
}
|
|
8250
8270
|
.Layer__bank-transaction-list-item > .Layer__text--error {
|
|
@@ -8257,19 +8277,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8257
8277
|
background: var(--bg-element-focus);
|
|
8258
8278
|
}
|
|
8259
8279
|
.Layer__bank-transaction-list-item.Layer__bank-transaction-list-item--expanded .Layer__bank-transaction-list-item__base-row {
|
|
8280
|
+
z-index: -1;
|
|
8260
8281
|
max-height: 0;
|
|
8261
8282
|
padding: 0;
|
|
8262
8283
|
opacity: 0;
|
|
8263
|
-
z-index: -1;
|
|
8264
8284
|
}
|
|
8265
8285
|
.Layer__bank-transaction-list-item.Layer__bank-transaction-list-item--expanded .Layer__bank-transaction-list-item__expanded-row {
|
|
8266
8286
|
max-height: unset;
|
|
8267
8287
|
}
|
|
8268
8288
|
.Layer__bank-transaction-list-item__base-row {
|
|
8269
|
-
display: flex;
|
|
8270
|
-
align-items: center;
|
|
8271
8289
|
box-sizing: border-box;
|
|
8290
|
+
display: flex;
|
|
8272
8291
|
gap: var(--spacing-sm);
|
|
8292
|
+
align-items: center;
|
|
8273
8293
|
padding: var(--spacing-md);
|
|
8274
8294
|
}
|
|
8275
8295
|
.Layer__bank-transaction-list-item__base-row .Layer__category-menu {
|
|
@@ -8280,13 +8300,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8280
8300
|
}
|
|
8281
8301
|
.Layer__bank-transaction-list-item__heading {
|
|
8282
8302
|
display: flex;
|
|
8283
|
-
align-items: center;
|
|
8284
|
-
color: var(--color-base-700);
|
|
8285
|
-
font-size: var(--text-sm);
|
|
8286
8303
|
gap: 4px;
|
|
8304
|
+
align-items: center;
|
|
8305
|
+
justify-content: space-between;
|
|
8287
8306
|
padding: var(--spacing-md);
|
|
8288
8307
|
padding-bottom: var(--spacing-sm);
|
|
8289
|
-
|
|
8308
|
+
font-size: var(--text-sm);
|
|
8309
|
+
color: var(--color-base-700);
|
|
8290
8310
|
}
|
|
8291
8311
|
.Layer__bank-transaction-list-item__heading .Layer__bank-transaction-list-item__heading-separator {
|
|
8292
8312
|
display: block;
|
|
@@ -8295,18 +8315,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8295
8315
|
background: var(--color-base-200);
|
|
8296
8316
|
}
|
|
8297
8317
|
.Layer__bank-transaction-list-item__heading .Layer__bank-transaction-list-item__heading__main {
|
|
8298
|
-
gap: 4px;
|
|
8299
8318
|
display: flex;
|
|
8319
|
+
gap: 4px;
|
|
8300
8320
|
align-items: center;
|
|
8301
8321
|
}
|
|
8302
8322
|
.Layer__bank-transaction-list-item__body {
|
|
8323
|
+
box-sizing: border-box;
|
|
8303
8324
|
display: flex;
|
|
8304
|
-
justify-content: space-between;
|
|
8305
8325
|
gap: 4px;
|
|
8306
|
-
|
|
8326
|
+
justify-content: space-between;
|
|
8307
8327
|
width: 100%;
|
|
8308
8328
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
8309
|
-
|
|
8329
|
+
color: var(--text-color-primary);
|
|
8310
8330
|
}
|
|
8311
8331
|
.Layer__bank-transaction-list-item__body .Layer__bank-transaction-list-item__body__name {
|
|
8312
8332
|
flex: 1;
|
|
@@ -8324,23 +8344,23 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8324
8344
|
margin: 0 var(--spacing-xs);
|
|
8325
8345
|
}
|
|
8326
8346
|
.Layer__bank-transaction-list-item__processing-info {
|
|
8347
|
+
box-sizing: border-box;
|
|
8327
8348
|
display: flex;
|
|
8328
|
-
justify-content: flex-end;
|
|
8329
8349
|
gap: 4px;
|
|
8330
|
-
|
|
8350
|
+
justify-content: flex-end;
|
|
8331
8351
|
width: 100%;
|
|
8332
8352
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
8333
|
-
|
|
8353
|
+
color: var(--text-color-primary);
|
|
8334
8354
|
}
|
|
8335
8355
|
.Layer__bank-transaction-list-item__processing-info .Layer__tooltip-trigger {
|
|
8336
8356
|
flex: 0 auto;
|
|
8337
8357
|
}
|
|
8338
8358
|
.Layer__expanded-bank-transaction-row__submit-btn {
|
|
8339
8359
|
box-sizing: border-box;
|
|
8340
|
-
padding: var(--spacing-md);
|
|
8341
|
-
padding-top: var(--spacing-sm);
|
|
8342
8360
|
display: flex;
|
|
8343
8361
|
gap: var(--spacing-md);
|
|
8362
|
+
padding: var(--spacing-md);
|
|
8363
|
+
padding-top: var(--spacing-sm);
|
|
8344
8364
|
}
|
|
8345
8365
|
.Layer__table.Layer__bank-transactions__table {
|
|
8346
8366
|
overflow: auto;
|
|
@@ -8350,36 +8370,37 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8350
8370
|
width: 122px;
|
|
8351
8371
|
}
|
|
8352
8372
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
8353
|
-
position: sticky;
|
|
8354
|
-
width: 150px;
|
|
8355
|
-
min-width: 50px;
|
|
8356
8373
|
box-sizing: border-box;
|
|
8374
|
+
position: sticky;
|
|
8357
8375
|
z-index: 2;
|
|
8358
|
-
|
|
8376
|
+
--right-adjust: 520px;
|
|
8377
|
+
right: var(--right-adjust);
|
|
8378
|
+
width: 130px;
|
|
8379
|
+
min-width: 130px;
|
|
8359
8380
|
box-shadow: -8px 0 20px -2px rgba(255, 255, 255, 0.64);
|
|
8360
|
-
|
|
8381
|
+
text-align: right;
|
|
8361
8382
|
}
|
|
8362
8383
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col[data-show-receipt-upload-column] {
|
|
8363
|
-
right:
|
|
8384
|
+
right: calc(var(--right-adjust) + 64px);
|
|
8364
8385
|
}
|
|
8365
8386
|
.Layer__table-header.Layer__bank-transactions__documents-col {
|
|
8366
|
-
padding-left: 0;
|
|
8367
8387
|
padding-right: 0;
|
|
8388
|
+
padding-left: 0;
|
|
8368
8389
|
}
|
|
8369
8390
|
.Layer__table-header.Layer__bank-transactions__documents-col[data-show-receipt-upload-column] {
|
|
8370
|
-
padding-left: 16px;
|
|
8371
8391
|
padding-right: 16px;
|
|
8392
|
+
padding-left: 16px;
|
|
8372
8393
|
}
|
|
8373
8394
|
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col {
|
|
8374
|
-
position: sticky;
|
|
8375
|
-
right: 430px;
|
|
8376
8395
|
box-sizing: border-box;
|
|
8396
|
+
position: sticky;
|
|
8377
8397
|
z-index: 2;
|
|
8378
|
-
|
|
8379
|
-
box-shadow: -8px 0 20px -2px rgba(255, 255, 255, 0.64);
|
|
8398
|
+
right: 520px;
|
|
8380
8399
|
width: 0;
|
|
8381
8400
|
min-width: 0;
|
|
8382
8401
|
max-width: 0;
|
|
8402
|
+
box-shadow: -8px 0 20px -2px rgba(255, 255, 255, 0.64);
|
|
8403
|
+
text-align: center;
|
|
8383
8404
|
}
|
|
8384
8405
|
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col[data-show-receipt-upload-column] {
|
|
8385
8406
|
width: 64px;
|
|
@@ -8387,19 +8408,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8387
8408
|
max-width: 64px;
|
|
8388
8409
|
}
|
|
8389
8410
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__category-col {
|
|
8390
|
-
position: sticky;
|
|
8391
|
-
min-width: 430px;
|
|
8392
|
-
width: 430px;
|
|
8393
|
-
max-width: 430px;
|
|
8394
8411
|
box-sizing: border-box;
|
|
8395
|
-
|
|
8412
|
+
position: sticky;
|
|
8396
8413
|
z-index: 2;
|
|
8414
|
+
right: 0;
|
|
8415
|
+
--width: 520px;
|
|
8416
|
+
width: var(--width);
|
|
8417
|
+
min-width: var(--width);
|
|
8418
|
+
max-width: var(--width);
|
|
8397
8419
|
}
|
|
8398
8420
|
.Layer__bank-transactions__date-col {
|
|
8399
|
-
|
|
8421
|
+
box-sizing: border-box;
|
|
8400
8422
|
width: 140px;
|
|
8423
|
+
min-width: 140px;
|
|
8401
8424
|
max-width: 140px;
|
|
8402
|
-
box-sizing: border-box;
|
|
8403
8425
|
}
|
|
8404
8426
|
.Layer__bank-transactions__tx-col {
|
|
8405
8427
|
box-sizing: border-box;
|
|
@@ -8409,16 +8431,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8409
8431
|
width: 100%;
|
|
8410
8432
|
}
|
|
8411
8433
|
.Layer__bank-transactions__account-col {
|
|
8412
|
-
|
|
8434
|
+
box-sizing: border-box;
|
|
8413
8435
|
width: 180px;
|
|
8436
|
+
min-width: 125px;
|
|
8414
8437
|
max-width: 180px;
|
|
8415
|
-
box-sizing: border-box;
|
|
8416
8438
|
}
|
|
8417
8439
|
.Layer__bank-transactions__documents-col {
|
|
8418
|
-
|
|
8440
|
+
box-sizing: border-box;
|
|
8419
8441
|
width: 64px;
|
|
8442
|
+
min-width: 64px;
|
|
8420
8443
|
max-width: 64px;
|
|
8421
|
-
box-sizing: border-box;
|
|
8422
8444
|
text-align: center;
|
|
8423
8445
|
}
|
|
8424
8446
|
.Layer__bank-transactions__documents-col .Layer__icon-box {
|
|
@@ -8426,15 +8448,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8426
8448
|
}
|
|
8427
8449
|
@container (min-width: 1400px) {
|
|
8428
8450
|
.Layer__table.Layer__bank-transactions__table .Layer__table-header.Layer__bank-transactions__date-col {
|
|
8429
|
-
|
|
8430
|
-
width:
|
|
8431
|
-
max-width:
|
|
8451
|
+
width: 150px;
|
|
8452
|
+
min-width: 150px;
|
|
8453
|
+
max-width: 150px;
|
|
8454
|
+
padding-right: var(--spacing-md);
|
|
8432
8455
|
padding-left: var(--spacing-xl);
|
|
8433
|
-
padding-right: var(--spacing-xl);
|
|
8434
8456
|
}
|
|
8435
8457
|
.Layer__table.Layer__bank-transactions__table .Layer__table-header.Layer__table-cell__category-col {
|
|
8436
|
-
padding-left: var(--spacing-xl);
|
|
8437
8458
|
padding-right: var(--spacing-xl);
|
|
8459
|
+
padding-left: var(--spacing-md);
|
|
8438
8460
|
}
|
|
8439
8461
|
.Layer__bank-transactions__table .Layer__skeleton-table-body__loader td:last-child .Layer__bank-transaction-row__actions-disabled {
|
|
8440
8462
|
padding-right: var(--spacing-md);
|
|
@@ -8444,18 +8466,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8444
8466
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col,
|
|
8445
8467
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col {
|
|
8446
8468
|
text-overflow: ellipsis;
|
|
8447
|
-
max-width: 280px;
|
|
8448
8469
|
}
|
|
8449
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,
|
|
8450
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,
|
|
8451
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,
|
|
8452
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;
|
|
8453
8475
|
display: block;
|
|
8454
|
-
max-width: 100%;
|
|
8455
8476
|
overflow: hidden;
|
|
8477
|
+
max-width: 100%;
|
|
8456
8478
|
text-overflow: ellipsis;
|
|
8457
8479
|
white-space: nowrap;
|
|
8458
|
-
box-sizing: border-box;
|
|
8459
8480
|
}
|
|
8460
8481
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--expanded td {
|
|
8461
8482
|
vertical-align: top;
|
|
@@ -8468,41 +8489,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8468
8489
|
border-left: 1px solid var(--border-color);
|
|
8469
8490
|
}
|
|
8470
8491
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col::after {
|
|
8471
|
-
|
|
8472
|
-
|
|
8492
|
+
position: absolute;
|
|
8493
|
+
z-index: 0;
|
|
8494
|
+
top: 0;
|
|
8495
|
+
left: -51px;
|
|
8473
8496
|
height: 100%;
|
|
8497
|
+
width: 50px;
|
|
8474
8498
|
background:
|
|
8475
8499
|
linear-gradient(
|
|
8476
8500
|
90deg,
|
|
8477
8501
|
rgba(255, 255, 255, 0) 0%,
|
|
8478
8502
|
rgb(255, 255, 255) 120%);
|
|
8479
|
-
|
|
8480
|
-
left: -51px;
|
|
8481
|
-
top: 0;
|
|
8482
|
-
z-index: 0;
|
|
8503
|
+
content: "";
|
|
8483
8504
|
}
|
|
8484
8505
|
}
|
|
8485
8506
|
@container (max-width: 1400px) {
|
|
8486
8507
|
.Layer__bank-transactions__header {
|
|
8487
|
-
padding-left: var(--spacing-md);
|
|
8488
|
-
padding-right: var(--spacing-md);
|
|
8489
|
-
padding-top: var(--spacing-md);
|
|
8490
8508
|
row-gap: var(--spacing-sm);
|
|
8509
|
+
padding-top: var(--spacing-md);
|
|
8510
|
+
padding-right: var(--spacing-md);
|
|
8511
|
+
padding-left: var(--spacing-md);
|
|
8491
8512
|
}
|
|
8492
8513
|
}
|
|
8493
8514
|
@container (max-width: 760px) {
|
|
8494
8515
|
.Layer__bank-transactions__header {
|
|
8495
|
-
box-shadow: 0 -1px 0 0 rgba(23, 51, 45, 0.16) inset;
|
|
8496
|
-
background-color: var(--table-bg);
|
|
8497
8516
|
position: sticky;
|
|
8498
|
-
top: 0;
|
|
8499
8517
|
z-index: 2;
|
|
8518
|
+
top: 0;
|
|
8500
8519
|
border-top-left-radius: var(--border-radius-sm);
|
|
8501
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);
|
|
8502
8523
|
}
|
|
8503
8524
|
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile {
|
|
8504
|
-
box-shadow: none;
|
|
8505
8525
|
padding-bottom: var(--spacing-2xs);
|
|
8526
|
+
box-shadow: none;
|
|
8506
8527
|
}
|
|
8507
8528
|
}
|
|
8508
8529
|
.Layer__tooltip.Layer__bank-transactions__tx-tooltip {
|
|
@@ -8511,11 +8532,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8511
8532
|
.Layer__bank-transaction-list-item__match-tooltip,
|
|
8512
8533
|
.Layer__expanded-bank-transaction-row__match-tooltip,
|
|
8513
8534
|
.Layer__bank-transaction-row__match-tooltip {
|
|
8514
|
-
font-size: var(--text-sm);
|
|
8515
8535
|
display: flex;
|
|
8516
8536
|
flex-direction: column;
|
|
8517
8537
|
row-gap: var(--spacing-2xs);
|
|
8518
8538
|
min-width: 200px;
|
|
8539
|
+
font-size: var(--text-sm);
|
|
8519
8540
|
}
|
|
8520
8541
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__date,
|
|
8521
8542
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__date,
|
|
@@ -8537,8 +8558,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8537
8558
|
.Layer__bank-transaction-row__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__description,
|
|
8538
8559
|
.Layer__bank-transaction-row__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__description,
|
|
8539
8560
|
.Layer__bank-transaction-row__match-tooltip .Layer__bank-transaction-row__match-tooltip__description {
|
|
8540
|
-
color: var(--color-base-500);
|
|
8541
8561
|
max-width: 230px;
|
|
8562
|
+
color: var(--color-base-500);
|
|
8542
8563
|
}
|
|
8543
8564
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__bank-transaction-list-item__match-tooltip__amount,
|
|
8544
8565
|
.Layer__bank-transaction-list-item__match-tooltip .Layer__expanded-bank-transaction-row__match-tooltip__amount,
|
|
@@ -8553,17 +8574,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8553
8574
|
}
|
|
8554
8575
|
.Layer__bank-transaction-list-item__split-tooltip,
|
|
8555
8576
|
.Layer__bank-transaction-row__split-tooltip {
|
|
8556
|
-
font-size: var(--text-sm);
|
|
8557
8577
|
display: flex;
|
|
8558
8578
|
flex-direction: column;
|
|
8559
8579
|
row-gap: var(--spacing-2xs);
|
|
8560
8580
|
min-width: 200px;
|
|
8581
|
+
font-size: var(--text-sm);
|
|
8561
8582
|
}
|
|
8562
8583
|
.Layer__bank-transaction-list-item__split-tooltip ul,
|
|
8563
8584
|
.Layer__bank-transaction-row__split-tooltip ul {
|
|
8564
|
-
list-style: none;
|
|
8565
|
-
margin: 0;
|
|
8566
8585
|
padding: 0;
|
|
8586
|
+
margin: 0;
|
|
8587
|
+
list-style: none;
|
|
8567
8588
|
}
|
|
8568
8589
|
.Layer__bank-transaction-list-item__split-tooltip li,
|
|
8569
8590
|
.Layer__bank-transaction-row__split-tooltip li {
|
|
@@ -8585,36 +8606,36 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8585
8606
|
color: var(--color-base-300);
|
|
8586
8607
|
}
|
|
8587
8608
|
.Layer__expanded-bank-transaction-row__match-table {
|
|
8588
|
-
margin-bottom: var(--spacing-sm);
|
|
8589
8609
|
display: flex;
|
|
8590
8610
|
flex-direction: column;
|
|
8591
8611
|
gap: var(--spacing-2xs);
|
|
8612
|
+
margin-bottom: var(--spacing-sm);
|
|
8592
8613
|
}
|
|
8593
8614
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
8594
8615
|
display: flex;
|
|
8595
|
-
background: transparent;
|
|
8596
8616
|
width: 100%;
|
|
8617
|
+
background: transparent;
|
|
8597
8618
|
}
|
|
8598
8619
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
8599
8620
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8600
|
-
color: var(--color-base-500);
|
|
8601
8621
|
font-size: var(--text-sm);
|
|
8622
|
+
color: var(--color-base-500);
|
|
8602
8623
|
}
|
|
8603
8624
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date {
|
|
8604
|
-
width: 120px;
|
|
8605
8625
|
box-sizing: border-box;
|
|
8626
|
+
width: 120px;
|
|
8606
8627
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8607
8628
|
}
|
|
8608
8629
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
8609
8630
|
display: none;
|
|
8610
8631
|
}
|
|
8611
8632
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
8612
|
-
text-align: right;
|
|
8613
8633
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8634
|
+
text-align: right;
|
|
8614
8635
|
}
|
|
8615
8636
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status {
|
|
8616
|
-
text-align: right;
|
|
8617
8637
|
width: 90px;
|
|
8638
|
+
text-align: right;
|
|
8618
8639
|
}
|
|
8619
8640
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
8620
8641
|
width: 0;
|
|
@@ -8622,9 +8643,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8622
8643
|
}
|
|
8623
8644
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
|
|
8624
8645
|
flex: 1;
|
|
8646
|
+
overflow: hidden;
|
|
8625
8647
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8626
8648
|
white-space: nowrap;
|
|
8627
|
-
overflow: hidden;
|
|
8628
8649
|
text-overflow: ellipsis;
|
|
8629
8650
|
}
|
|
8630
8651
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
@@ -8640,22 +8661,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8640
8661
|
max-width: 100%;
|
|
8641
8662
|
}
|
|
8642
8663
|
.Layer__expanded-bank-transaction-row__match-row {
|
|
8643
|
-
cursor: pointer;
|
|
8644
8664
|
display: flex;
|
|
8645
8665
|
align-items: stretch;
|
|
8646
8666
|
overflow: hidden;
|
|
8667
|
+
cursor: pointer;
|
|
8647
8668
|
}
|
|
8648
8669
|
.Layer__expanded-bank-transaction-row__match-row .Layer__tooltip-trigger {
|
|
8649
8670
|
padding-top: 0;
|
|
8650
8671
|
}
|
|
8651
8672
|
.Layer__expanded-bank-transaction-row__match-row > div {
|
|
8652
|
-
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8653
|
-
color: var(--color-base-500);
|
|
8654
|
-
font-size: var(--text-md);
|
|
8655
8673
|
display: flex;
|
|
8656
8674
|
align-items: center;
|
|
8675
|
+
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8657
8676
|
border-top: 1px solid var(--color-base-300);
|
|
8658
8677
|
border-bottom: 1px solid var(--color-base-300);
|
|
8678
|
+
font-size: var(--text-md);
|
|
8679
|
+
color: var(--color-base-500);
|
|
8659
8680
|
}
|
|
8660
8681
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
8661
8682
|
border-top-left-radius: var(--border-radius-2xs);
|
|
@@ -8673,9 +8694,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8673
8694
|
background-color: transparent;
|
|
8674
8695
|
}
|
|
8675
8696
|
.Layer__expanded-bank-transaction-row__match-row:hover > div {
|
|
8676
|
-
background: var(--color-base-0);
|
|
8677
8697
|
border-top: 1px solid var(--color-base-300);
|
|
8678
8698
|
border-bottom: 1px solid var(--color-base-300);
|
|
8699
|
+
background: var(--color-base-0);
|
|
8679
8700
|
color: var(--color-base-700);
|
|
8680
8701
|
}
|
|
8681
8702
|
.Layer__expanded-bank-transaction-row__match-row:hover > div.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
@@ -8692,9 +8713,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8692
8713
|
border-right: 1px solid var(--color-base-300);
|
|
8693
8714
|
}
|
|
8694
8715
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
8695
|
-
background: var(--color-base-0);
|
|
8696
8716
|
border-top: 1px solid var(--color-base-800);
|
|
8697
8717
|
border-bottom: 1px solid var(--color-base-800);
|
|
8718
|
+
background: var(--color-base-0);
|
|
8698
8719
|
color: var(--color-base-700);
|
|
8699
8720
|
}
|
|
8700
8721
|
.Layer__expanded-bank-transaction-row__match-row--selected > div.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
@@ -8711,10 +8732,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8711
8732
|
background-color: transparent;
|
|
8712
8733
|
}
|
|
8713
8734
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
8714
|
-
background: var(--color-base-0);
|
|
8715
|
-
color: var(--color-base-700);
|
|
8716
8735
|
border-top: 1px solid var(--color-base-500);
|
|
8717
8736
|
border-bottom: 1px solid var(--color-base-500);
|
|
8737
|
+
background: var(--color-base-0);
|
|
8738
|
+
color: var(--color-base-700);
|
|
8718
8739
|
}
|
|
8719
8740
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:first-child {
|
|
8720
8741
|
border-left: 1px solid var(--color-base-500);
|
|
@@ -8734,8 +8755,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8734
8755
|
min-height: 72px;
|
|
8735
8756
|
}
|
|
8736
8757
|
.Layer__bank-transaction-mobile-list-item__description__label {
|
|
8737
|
-
color: var(--color-base-500);
|
|
8738
8758
|
margin-bottom: var(--spacing-2xs);
|
|
8759
|
+
color: var(--color-base-500);
|
|
8739
8760
|
}
|
|
8740
8761
|
.Layer__bank-transaction-mobile-list-item__match-list {
|
|
8741
8762
|
display: flex;
|
|
@@ -8745,19 +8766,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8745
8766
|
margin: var(--spacing-md) 0;
|
|
8746
8767
|
}
|
|
8747
8768
|
.Layer__bank-transaction-mobile-list-item__match-item {
|
|
8748
|
-
width: 100%;
|
|
8749
|
-
padding: var(--spacing-xs) 0;
|
|
8750
8769
|
display: flex;
|
|
8751
|
-
align-items: center;
|
|
8752
8770
|
gap: var(--spacing-sm);
|
|
8771
|
+
align-items: center;
|
|
8772
|
+
width: 100%;
|
|
8773
|
+
padding: var(--spacing-xs) 0;
|
|
8753
8774
|
border-bottom: 1px solid var(--color-base-50);
|
|
8754
8775
|
}
|
|
8755
8776
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
8756
8777
|
color: var(--color-base-500);
|
|
8757
8778
|
}
|
|
8758
8779
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-details {
|
|
8759
|
-
flex: 1;
|
|
8760
8780
|
display: flex;
|
|
8781
|
+
flex: 1;
|
|
8761
8782
|
flex-direction: column;
|
|
8762
8783
|
}
|
|
8763
8784
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__heading {
|
|
@@ -8772,10 +8793,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8772
8793
|
color: var(--color-base-500);
|
|
8773
8794
|
}
|
|
8774
8795
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
8775
|
-
width: 24px;
|
|
8776
|
-
min-width: 24px;
|
|
8777
8796
|
display: flex;
|
|
8778
8797
|
justify-content: flex-end;
|
|
8798
|
+
width: 24px;
|
|
8799
|
+
min-width: 24px;
|
|
8779
8800
|
}
|
|
8780
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 {
|
|
8781
8802
|
color: var(--color-base-1000);
|
|
@@ -8819,9 +8840,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8819
8840
|
color: var(--color-base-700);
|
|
8820
8841
|
}
|
|
8821
8842
|
.Layer__expanded-bank-transaction-row__match-row--selected {
|
|
8843
|
+
border: 1px solid var(--color-base-800);
|
|
8822
8844
|
background: var(--color-base-0);
|
|
8823
8845
|
color: var(--color-base-700);
|
|
8824
|
-
border: 1px solid var(--color-base-800);
|
|
8825
8846
|
}
|
|
8826
8847
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
8827
8848
|
border-width: 0;
|
|
@@ -8847,8 +8868,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8847
8868
|
display: none !important;
|
|
8848
8869
|
}
|
|
8849
8870
|
.Layer__expanded-bank-transaction-row__match-table__desc {
|
|
8850
|
-
justify-content: space-between;
|
|
8851
8871
|
gap: var(--spacing-sm);
|
|
8872
|
+
justify-content: space-between;
|
|
8852
8873
|
}
|
|
8853
8874
|
.Layer__expanded-bank-transaction-row__match-table__desc > span:first-child {
|
|
8854
8875
|
width: calc(100% - 120px);
|
|
@@ -8866,10 +8887,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8866
8887
|
@container (max-width: 600px) {
|
|
8867
8888
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
8868
8889
|
display: flex;
|
|
8869
|
-
flex-direction: column;
|
|
8870
8890
|
flex: 1;
|
|
8871
|
-
|
|
8891
|
+
flex-direction: column;
|
|
8872
8892
|
gap: var(--spacing-sm);
|
|
8893
|
+
width: 100%;
|
|
8873
8894
|
}
|
|
8874
8895
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
8875
8896
|
gap: var(--spacing-sm);
|
|
@@ -8879,21 +8900,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8879
8900
|
width: 100%;
|
|
8880
8901
|
}
|
|
8881
8902
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
8903
|
+
position: relative;
|
|
8882
8904
|
flex: 1;
|
|
8883
8905
|
max-width: 42%;
|
|
8884
|
-
position: relative;
|
|
8885
8906
|
}
|
|
8886
8907
|
.Layer__expanded-bank-transaction-row__total-and-btns {
|
|
8908
|
+
box-sizing: border-box;
|
|
8887
8909
|
flex-direction: row;
|
|
8888
|
-
justify-content: space-between;
|
|
8889
8910
|
align-items: center;
|
|
8890
|
-
|
|
8911
|
+
justify-content: space-between;
|
|
8891
8912
|
}
|
|
8892
8913
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip {
|
|
8914
|
+
position: relative;
|
|
8893
8915
|
flex: 1;
|
|
8894
8916
|
width: 100%;
|
|
8895
8917
|
max-width: 42%;
|
|
8896
|
-
position: relative;
|
|
8897
8918
|
}
|
|
8898
8919
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input {
|
|
8899
8920
|
max-width: 100%;
|
|
@@ -8914,13 +8935,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8914
8935
|
padding: var(--spacing-3xs);
|
|
8915
8936
|
}
|
|
8916
8937
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
8917
|
-
width: 32px;
|
|
8918
8938
|
height: 32px;
|
|
8919
8939
|
min-height: 32px;
|
|
8940
|
+
width: 32px;
|
|
8920
8941
|
}
|
|
8921
8942
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn svg {
|
|
8922
|
-
width: 14px;
|
|
8923
8943
|
height: 14px;
|
|
8944
|
+
width: 14px;
|
|
8924
8945
|
}
|
|
8925
8946
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn,
|
|
8926
8947
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn {
|
|
@@ -8932,53 +8953,53 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8932
8953
|
}
|
|
8933
8954
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn-icon,
|
|
8934
8955
|
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn-icon {
|
|
8935
|
-
width: 12px;
|
|
8936
8956
|
height: 12px;
|
|
8957
|
+
width: 12px;
|
|
8937
8958
|
}
|
|
8938
8959
|
}
|
|
8939
8960
|
.Layer__bank-transactions__notifications {
|
|
8940
8961
|
position: absolute;
|
|
8941
|
-
|
|
8942
|
-
flex-direction: column;
|
|
8962
|
+
z-index: 1;
|
|
8943
8963
|
bottom: var(--spacing-2xs);
|
|
8944
8964
|
left: calc(100% - 340px - var(--spacing-2xs));
|
|
8945
|
-
|
|
8946
|
-
|
|
8965
|
+
display: flex;
|
|
8966
|
+
flex-direction: column;
|
|
8947
8967
|
min-width: 300px;
|
|
8968
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
8948
8969
|
}
|
|
8949
8970
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification {
|
|
8950
|
-
transition: all var(--transition-speed) ease-in-out;
|
|
8951
8971
|
overflow: hidden;
|
|
8972
|
+
height: 56px;
|
|
8952
8973
|
padding: 12px;
|
|
8953
8974
|
margin: 0;
|
|
8954
8975
|
margin-top: -12px;
|
|
8955
|
-
height: 56px;
|
|
8956
8976
|
cursor: pointer;
|
|
8977
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
8957
8978
|
}
|
|
8958
8979
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification:hover .Layer__bank-transactions__notification-content {
|
|
8959
8980
|
box-shadow: 0 0 3px 0 var(--base-transparent-12), 0 0 0 1px var(--color-base-200);
|
|
8960
8981
|
}
|
|
8961
8982
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-content {
|
|
8962
8983
|
display: flex;
|
|
8984
|
+
gap: var(--spacing-sm);
|
|
8963
8985
|
align-items: center;
|
|
8964
8986
|
padding: var(--spacing-xs);
|
|
8965
8987
|
padding-right: var(--spacing-md);
|
|
8966
|
-
gap: var(--spacing-sm);
|
|
8967
8988
|
border-radius: var(--border-radius-3xs);
|
|
8968
|
-
background: var(--color-base-0);
|
|
8969
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);
|
|
8970
8991
|
}
|
|
8971
8992
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-icon {
|
|
8972
|
-
width: var(--spacing-3xl);
|
|
8973
|
-
height: var(--spacing-3xl);
|
|
8974
8993
|
display: flex;
|
|
8975
8994
|
flex-direction: column;
|
|
8976
|
-
justify-content: center;
|
|
8977
8995
|
align-items: center;
|
|
8996
|
+
justify-content: center;
|
|
8997
|
+
height: var(--spacing-3xl);
|
|
8998
|
+
width: var(--spacing-3xl);
|
|
8978
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);
|
|
8979
9001
|
background: var(--color-base-0);
|
|
8980
9002
|
color: var(--color-danger);
|
|
8981
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
8982
9003
|
}
|
|
8983
9004
|
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-text {
|
|
8984
9005
|
display: flex;
|
|
@@ -9004,18 +9025,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9004
9025
|
}
|
|
9005
9026
|
@keyframes fade-out {
|
|
9006
9027
|
from {
|
|
9007
|
-
|
|
9008
|
-
transform: scale(1);
|
|
9028
|
+
height: 56px;
|
|
9009
9029
|
padding-top: 12px;
|
|
9010
9030
|
padding-bottom: 12px;
|
|
9011
|
-
|
|
9031
|
+
opacity: 1;
|
|
9032
|
+
transform: scale(1);
|
|
9012
9033
|
}
|
|
9013
9034
|
to {
|
|
9014
|
-
|
|
9015
|
-
transform: scale(0.8);
|
|
9035
|
+
height: 0;
|
|
9016
9036
|
padding-top: 6px;
|
|
9017
9037
|
padding-bottom: 6px;
|
|
9018
|
-
|
|
9038
|
+
opacity: 0;
|
|
9039
|
+
transform: scale(0.8);
|
|
9019
9040
|
}
|
|
9020
9041
|
}
|
|
9021
9042
|
.notification-enter {
|
|
@@ -9025,14 +9046,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9025
9046
|
animation: fade-out var(--transition-speed) forwards;
|
|
9026
9047
|
}
|
|
9027
9048
|
.Layer__expanded-bank-transaction-row__splits-inputs + .Layer__text--error {
|
|
9028
|
-
margin: 0;
|
|
9029
9049
|
padding: var(--spacing-2xs) 0;
|
|
9030
9050
|
padding-bottom: var(--spacing-md);
|
|
9051
|
+
margin: 0;
|
|
9031
9052
|
}
|
|
9032
9053
|
.Layer__expanded-bank-transaction-row__match-table .Layer__text--error {
|
|
9033
|
-
margin: 0;
|
|
9034
9054
|
padding: var(--spacing-2xs) 0;
|
|
9035
9055
|
padding-bottom: var(--spacing-md);
|
|
9056
|
+
margin: 0;
|
|
9036
9057
|
}
|
|
9037
9058
|
.Layer__bank-transaction-table__date-col,
|
|
9038
9059
|
.Layer__bank-transactions__account-col {
|
|
@@ -9054,8 +9075,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9054
9075
|
@container (min-width: 401px) {
|
|
9055
9076
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip,
|
|
9056
9077
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
9057
|
-
max-width: 200px;
|
|
9058
9078
|
flex: 1;
|
|
9079
|
+
max-width: 200px;
|
|
9059
9080
|
}
|
|
9060
9081
|
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip .Layer__input,
|
|
9061
9082
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip .Layer__input {
|
|
@@ -9064,20 +9085,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9064
9085
|
}
|
|
9065
9086
|
@container (max-width: 480px) {
|
|
9066
9087
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input:disabled {
|
|
9088
|
+
box-shadow: none;
|
|
9067
9089
|
background-color: transparent;
|
|
9068
9090
|
border-color: transparent;
|
|
9069
|
-
box-shadow: none;
|
|
9070
9091
|
}
|
|
9071
9092
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input-left-text {
|
|
9072
9093
|
border-right-color: transparent;
|
|
9073
9094
|
}
|
|
9074
9095
|
}
|
|
9075
9096
|
.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
9076
|
-
max-height: 0;
|
|
9077
9097
|
top: 1px;
|
|
9098
|
+
overflow: hidden;
|
|
9099
|
+
max-height: 0;
|
|
9078
9100
|
padding-top: 0;
|
|
9079
9101
|
padding-bottom: 0;
|
|
9080
|
-
overflow: hidden;
|
|
9081
9102
|
}
|
|
9082
9103
|
.Layer__bank-transactions__mobile-list {
|
|
9083
9104
|
padding: 0;
|
|
@@ -9289,9 +9310,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9289
9310
|
width: 100%;
|
|
9290
9311
|
}
|
|
9291
9312
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
9313
|
+
position: relative;
|
|
9292
9314
|
display: flex;
|
|
9293
9315
|
align-items: stretch;
|
|
9294
|
-
position: relative;
|
|
9295
9316
|
}
|
|
9296
9317
|
.Layer__chart-of-accounts__loader-container {
|
|
9297
9318
|
padding: var(--spacing-2xl);
|
|
@@ -9310,11 +9331,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9310
9331
|
.Layer__chart-of-accounts .Layer__panel {
|
|
9311
9332
|
max-width: 100%;
|
|
9312
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
|
+
}
|
|
9313
9353
|
.Layer__chart-of-accounts__sidebar__header {
|
|
9314
9354
|
display: flex;
|
|
9315
|
-
justify-content: space-between;
|
|
9316
|
-
align-items: flex-start;
|
|
9317
9355
|
gap: var(--spacing-md);
|
|
9356
|
+
align-items: flex-start;
|
|
9357
|
+
justify-content: space-between;
|
|
9318
9358
|
}
|
|
9319
9359
|
.Layer__chart-of-accounts__sidebar__header .actions {
|
|
9320
9360
|
display: flex;
|
|
@@ -9342,27 +9382,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9342
9382
|
max-width: 140px;
|
|
9343
9383
|
}
|
|
9344
9384
|
.Layer__chart-of-accounts__form-edit-entry {
|
|
9345
|
-
padding: var(--spacing-md);
|
|
9346
9385
|
display: flex;
|
|
9386
|
+
gap: var(--spacing-md);
|
|
9347
9387
|
align-items: center;
|
|
9348
9388
|
justify-content: space-between;
|
|
9349
|
-
|
|
9389
|
+
padding: var(--spacing-md);
|
|
9350
9390
|
}
|
|
9351
9391
|
.Layer__chart-of-accounts__form-edit-entry .Layer__text {
|
|
9352
9392
|
margin: 0;
|
|
9353
9393
|
}
|
|
9354
9394
|
.Layer__chart-of-accounts__form__error-message {
|
|
9355
|
-
|
|
9395
|
+
box-sizing: border-box;
|
|
9356
9396
|
width: 100%;
|
|
9397
|
+
padding: var(--spacing-4xs) var(--spacing-xl);
|
|
9357
9398
|
text-align: right;
|
|
9358
|
-
box-sizing: border-box;
|
|
9359
9399
|
color: var(--color-danger);
|
|
9360
9400
|
}
|
|
9361
9401
|
.Layer__chart-of-accounts__form-row {
|
|
9402
|
+
box-sizing: border-box;
|
|
9362
9403
|
display: flex;
|
|
9363
9404
|
gap: var(--spacing-md);
|
|
9364
9405
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
9365
|
-
box-sizing: border-box;
|
|
9366
9406
|
border-top: 1px solid var(--border-color);
|
|
9367
9407
|
background-color: var(--color-base-100);
|
|
9368
9408
|
}
|
|
@@ -9374,17 +9414,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9374
9414
|
min-width: 120px;
|
|
9375
9415
|
}
|
|
9376
9416
|
.Layer__chart-of-accounts__row---mobile {
|
|
9377
|
-
visibility: hidden;
|
|
9378
9417
|
display: none;
|
|
9418
|
+
visibility: hidden;
|
|
9379
9419
|
}
|
|
9380
9420
|
.Layer__chart-of-accounts__row---mobile .Layer__chart-of-accounts__mobile-row-content {
|
|
9381
9421
|
display: flex;
|
|
9382
9422
|
flex-direction: column;
|
|
9383
9423
|
gap: var(--spacing-xs);
|
|
9384
9424
|
width: 100%;
|
|
9385
|
-
padding-right: var(--spacing-md);
|
|
9386
9425
|
padding-top: var(--spacing-3xs);
|
|
9387
|
-
padding-
|
|
9426
|
+
padding-right: var(--spacing-md);
|
|
9427
|
+
padding-bottom: var(--spacing-3xs);
|
|
9388
9428
|
}
|
|
9389
9429
|
.Layer__chart-of-accounts__mobile-row-content__top-row,
|
|
9390
9430
|
.Layer__chart-of-accounts__mobile-row-content__bottom-row {
|
|
@@ -9396,16 +9436,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9396
9436
|
color: var(--color-base-800);
|
|
9397
9437
|
}
|
|
9398
9438
|
.Layer__chart-of-accounts__mobile-row-content__balance {
|
|
9399
|
-
color: var(--color-base-800);
|
|
9400
9439
|
font-weight: var(--font-weight-bold);
|
|
9440
|
+
color: var(--color-base-800);
|
|
9401
9441
|
}
|
|
9402
9442
|
.Layer__chart-of-accounts__row---mobile.Layer__table-row--depth-0 .Layer__chart-of-accounts__mobile-row-content__name {
|
|
9403
9443
|
font-weight: var(--font-weight-bold);
|
|
9404
9444
|
}
|
|
9405
9445
|
.Layer__chart-of-accounts__mobile-row-content__types {
|
|
9406
9446
|
display: flex;
|
|
9407
|
-
align-items: center;
|
|
9408
9447
|
gap: var(--spacing-3xs);
|
|
9448
|
+
align-items: center;
|
|
9409
9449
|
}
|
|
9410
9450
|
.Layer__chart-of-accounts__mobile-row-content__types .Layer__text {
|
|
9411
9451
|
color: var(--color-base-700);
|
|
@@ -9442,26 +9482,26 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9442
9482
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__input-group,
|
|
9443
9483
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__chart-of-accounts__form__input-group__title {
|
|
9444
9484
|
box-sizing: border-box;
|
|
9445
|
-
max-width: 600px;
|
|
9446
9485
|
width: 100%;
|
|
9486
|
+
max-width: 600px;
|
|
9447
9487
|
margin: auto;
|
|
9448
9488
|
}
|
|
9449
9489
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__chart-of-accounts__form-edit-entry {
|
|
9450
9490
|
box-sizing: border-box;
|
|
9491
|
+
width: 100%;
|
|
9451
9492
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
9452
9493
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
9453
|
-
width: 100%;
|
|
9454
9494
|
margin: auto;
|
|
9455
9495
|
}
|
|
9456
9496
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__header__col {
|
|
9457
9497
|
width: 100%;
|
|
9458
|
-
margin: auto;
|
|
9459
|
-
padding: var(--spacing-md) var(--spacing-xl);
|
|
9460
9498
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
9499
|
+
padding: var(--spacing-md) var(--spacing-xl);
|
|
9500
|
+
margin: auto;
|
|
9461
9501
|
}
|
|
9462
9502
|
.Layer__chart-of-accounts.Layer__component .Layer__panel__sidebar .Layer__panel__sidebar-content .actions {
|
|
9463
|
-
max-width: 600px;
|
|
9464
9503
|
width: 100%;
|
|
9504
|
+
max-width: 600px;
|
|
9465
9505
|
margin: auto;
|
|
9466
9506
|
}
|
|
9467
9507
|
}
|
|
@@ -9478,12 +9518,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9478
9518
|
overflow: auto;
|
|
9479
9519
|
}
|
|
9480
9520
|
.Layer__chart-of-accounts__row---mobile {
|
|
9481
|
-
visibility: visible;
|
|
9482
9521
|
display: table-row;
|
|
9522
|
+
visibility: visible;
|
|
9483
9523
|
}
|
|
9484
9524
|
.Layer__chart-of-accounts__row---desktop {
|
|
9485
|
-
visibility: hidden;
|
|
9486
9525
|
display: none;
|
|
9526
|
+
visibility: hidden;
|
|
9487
9527
|
}
|
|
9488
9528
|
.Layer__chart-of-accounts__form-row {
|
|
9489
9529
|
flex-direction: column;
|
|
@@ -9525,9 +9565,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9525
9565
|
max-width: 100%;
|
|
9526
9566
|
overflow: auto;
|
|
9527
9567
|
}
|
|
9528
|
-
.Layer__journal-table .Layer__table-cell-content::before {
|
|
9529
|
-
background: var(--color-base-400);
|
|
9530
|
-
}
|
|
9531
9568
|
.Layer__journal__arrow .Layer__table-cell-content {
|
|
9532
9569
|
padding-right: 0 !important;
|
|
9533
9570
|
}
|