@layerfi/components 0.1.107-alpha → 0.1.107-alpha.2
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 +11853 -8584
- package/dist/esm/index.mjs +11581 -8305
- package/dist/index.css +372 -209
- package/dist/index.d.ts +8560 -2749
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
--text-sm: 12px;
|
|
83
83
|
--text-md: 14px;
|
|
84
84
|
--text-lg: 16px;
|
|
85
|
+
--text-xl: 20px;
|
|
85
86
|
--text-heading: 24px;
|
|
86
87
|
--text-heading-secondary: 20px;
|
|
87
88
|
--text-heading-page: var(--text-heading);
|
|
@@ -188,6 +189,8 @@
|
|
|
188
189
|
--button-bg-default: var(--color-base-1000);
|
|
189
190
|
--button-bg-disabled: var(--color-base-200);
|
|
190
191
|
--button-bg-active: var(--color-base-800);
|
|
192
|
+
--button-bg-ghost-hovered: var(--color-base-100);
|
|
193
|
+
--button-bg-ghost-pressed: var(--color-base-200);
|
|
191
194
|
--button-fg-default: var(--color-base-0);
|
|
192
195
|
--button-fg-disabled: var(--color-base-500);
|
|
193
196
|
--button-fg-ghost: var(--color-base-800);
|
|
@@ -325,6 +328,7 @@
|
|
|
325
328
|
gap: var(--spacing-3xs);
|
|
326
329
|
align-items: center;
|
|
327
330
|
height: var(--size);
|
|
331
|
+
min-inline-size: fit-content;
|
|
328
332
|
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
329
333
|
border-radius: var(--border-radius-5xl);
|
|
330
334
|
background-color: var(--badge-bg-color);
|
|
@@ -1024,13 +1028,6 @@
|
|
|
1024
1028
|
align-items: center;
|
|
1025
1029
|
gap: var(--spacing-md);
|
|
1026
1030
|
}
|
|
1027
|
-
.Layer__datetime__date {
|
|
1028
|
-
color: var(--color-base-800);
|
|
1029
|
-
min-width: 75px;
|
|
1030
|
-
}
|
|
1031
|
-
.Layer__datetime__time {
|
|
1032
|
-
color: var(--color-base-600);
|
|
1033
|
-
}
|
|
1034
1031
|
.Layer__DatePickerModeSelector__container {
|
|
1035
1032
|
display: flex;
|
|
1036
1033
|
justify-content: flex-end;
|
|
@@ -1108,7 +1105,7 @@
|
|
|
1108
1105
|
#Layer__datepicker__portal .react-datepicker__input-container button {
|
|
1109
1106
|
box-sizing: border-box;
|
|
1110
1107
|
position: relative;
|
|
1111
|
-
width:
|
|
1108
|
+
width: 24ch;
|
|
1112
1109
|
padding: 8px;
|
|
1113
1110
|
border-radius: var(--input-border-radius);
|
|
1114
1111
|
border: none;
|
|
@@ -2990,7 +2987,7 @@
|
|
|
2990
2987
|
box-sizing: border-box;
|
|
2991
2988
|
display: flex;
|
|
2992
2989
|
align-items: center;
|
|
2993
|
-
height: 2.25rem;
|
|
2990
|
+
min-height: 2.25rem;
|
|
2994
2991
|
padding: 0 var(--spacing-md);
|
|
2995
2992
|
}
|
|
2996
2993
|
.Layer__details-list-item__label {
|
|
@@ -4461,9 +4458,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4461
4458
|
.Layer__UI__Button[data-focus-visible] {
|
|
4462
4459
|
outline: 1px auto -webkit-focus-ring-color;
|
|
4463
4460
|
}
|
|
4464
|
-
.Layer__UI__Button[data-hovered]:not([data-pressed], [data-focus-visible]) {
|
|
4465
|
-
outline: 1px solid var(--outline-default);
|
|
4466
|
-
}
|
|
4467
4461
|
.Layer__UI__Button[data-disabled] {
|
|
4468
4462
|
cursor: not-allowed;
|
|
4469
4463
|
}
|
|
@@ -4477,9 +4471,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4477
4471
|
background-color: transparent;
|
|
4478
4472
|
color: var(--button-fg-disabled);
|
|
4479
4473
|
}
|
|
4474
|
+
.Layer__UI__Button[data-variant=ghost][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4475
|
+
background-color: var(--button-bg-ghost-hovered);
|
|
4476
|
+
}
|
|
4480
4477
|
.Layer__UI__Button[data-variant=ghost][data-pressed]:not([data-focus-visible]) {
|
|
4481
|
-
|
|
4482
|
-
outline: 2px solid var(--outline-default);
|
|
4478
|
+
background-color: var(--button-bg-ghost-pressed);
|
|
4483
4479
|
}
|
|
4484
4480
|
.Layer__UI__Button[data-variant=outlined] {
|
|
4485
4481
|
border: 1px solid var(--button-border-color-ghost);
|
|
@@ -4491,6 +4487,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4491
4487
|
background-color: transparent;
|
|
4492
4488
|
color: var(--button-fg-disabled);
|
|
4493
4489
|
}
|
|
4490
|
+
.Layer__UI__Button[data-variant=outlined][data-hovered]:not([data-pressed], [data-focus-visible]) {
|
|
4491
|
+
outline: 1px solid var(--outline-default);
|
|
4492
|
+
}
|
|
4494
4493
|
.Layer__UI__Button[data-variant=outlined][data-pressed]:not([data-focus-visible]) {
|
|
4495
4494
|
border-color: var(--button-border-color-ghost-active);
|
|
4496
4495
|
outline: 2px solid var(--outline-default);
|
|
@@ -4504,7 +4503,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4504
4503
|
background-color: var(--button-bg-disabled);
|
|
4505
4504
|
color: var(--button-fg-disabled);
|
|
4506
4505
|
}
|
|
4507
|
-
.Layer__UI__Button[data-variant=solid][data-hovered]:not([data-pressed]) {
|
|
4506
|
+
.Layer__UI__Button[data-variant=solid][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4507
|
+
outline: 1px solid var(--outline-default);
|
|
4508
4508
|
background-color: var(--button-bg-active);
|
|
4509
4509
|
}
|
|
4510
4510
|
.Layer__UI__Button[data-variant=solid][data-pressed]:not([data-focus-visible]) {
|
|
@@ -4512,18 +4512,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4512
4512
|
background-color: var(--button-bg-active);
|
|
4513
4513
|
}
|
|
4514
4514
|
.Layer__UI__Button[data-variant=text] {
|
|
4515
|
-
--size:
|
|
4516
|
-
padding-inline:
|
|
4515
|
+
--size: inherit;
|
|
4516
|
+
padding-inline: 0;
|
|
4517
4517
|
border: none;
|
|
4518
4518
|
background-color: transparent;
|
|
4519
4519
|
}
|
|
4520
4520
|
.Layer__UI__Button[data-variant=text][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4521
|
-
outline: none;
|
|
4522
4521
|
text-decoration: underline;
|
|
4523
4522
|
}
|
|
4524
4523
|
.Layer__UI__Button[data-variant=text][data-pressed]:not([data-focus-visible]) {
|
|
4525
4524
|
text-decoration: none;
|
|
4526
4525
|
}
|
|
4526
|
+
.Layer__UI__Button[data-variant=branded] {
|
|
4527
|
+
background-color: var(--bg-brand-accent, var(--color-accent));
|
|
4528
|
+
color: var(--fg-brand-accent, var(--color-primary));
|
|
4529
|
+
}
|
|
4527
4530
|
.Layer__ButtonTransparentContent {
|
|
4528
4531
|
opacity: 0;
|
|
4529
4532
|
grid-row: 1/-1;
|
|
@@ -4870,7 +4873,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4870
4873
|
}
|
|
4871
4874
|
.Layer__UI__TextArea {
|
|
4872
4875
|
box-sizing: content-box;
|
|
4873
|
-
min-block-size:
|
|
4876
|
+
min-block-size: 5lh;
|
|
4874
4877
|
padding-block: var(--spacing-xs);
|
|
4875
4878
|
padding-inline-start: var(--spacing-xs);
|
|
4876
4879
|
padding-inline-end: var(--spacing-3xs);
|
|
@@ -4979,36 +4982,76 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4979
4982
|
outline: 1px solid var(--color-base-100);
|
|
4980
4983
|
outline-offset: 1px;
|
|
4981
4984
|
}
|
|
4985
|
+
.Layer__Meter [slot=bar] {
|
|
4986
|
+
overflow: hidden;
|
|
4987
|
+
height: 0.75rem;
|
|
4988
|
+
border-radius: var(--border-radius-2xs);
|
|
4989
|
+
}
|
|
4990
|
+
.Layer__Meter__svg {
|
|
4991
|
+
width: 100%;
|
|
4992
|
+
}
|
|
4993
|
+
.Layer__Meter__track {
|
|
4994
|
+
fill: var(--color-base-300);
|
|
4995
|
+
}
|
|
4996
|
+
.Layer__Meter__fill {
|
|
4997
|
+
fill: var(--color-base-800);
|
|
4998
|
+
}
|
|
4982
4999
|
.Layer__ModalOverlay {
|
|
4983
5000
|
position: fixed;
|
|
4984
5001
|
z-index: 100;
|
|
4985
5002
|
inset: 0;
|
|
4986
5003
|
display: grid;
|
|
5004
|
+
height: var(--visual-viewport-height);
|
|
4987
5005
|
background: rgba(0, 0, 0, 0.5);
|
|
4988
5006
|
place-items: center;
|
|
4989
5007
|
}
|
|
4990
|
-
.Layer__ModalOverlay[data-entering]
|
|
4991
|
-
|
|
5008
|
+
.Layer__ModalOverlay[data-variant=drawer][data-entering],
|
|
5009
|
+
.Layer__ModalOverlay[data-variant=mobile-drawer][data-entering] {
|
|
5010
|
+
animation: drawer-darken 300ms;
|
|
4992
5011
|
}
|
|
4993
|
-
.Layer__ModalOverlay[data-exiting]
|
|
4994
|
-
|
|
5012
|
+
.Layer__ModalOverlay[data-variant=drawer][data-exiting],
|
|
5013
|
+
.Layer__ModalOverlay[data-variant=mobile-drawer][data-exiting] {
|
|
5014
|
+
animation: drawer-darken 300ms reverse ease-in;
|
|
5015
|
+
}
|
|
5016
|
+
.Layer__ModalOverlay[data-variant=drawer] {
|
|
5017
|
+
place-items: end;
|
|
5018
|
+
}
|
|
5019
|
+
.Layer__ModalOverlay[data-variant=mobile-drawer] {
|
|
5020
|
+
place-items: end center;
|
|
4995
5021
|
}
|
|
4996
5022
|
.Layer__Modal {
|
|
4997
5023
|
block-size: min(42rem, 90%);
|
|
4998
5024
|
inline-size: min(36rem, 90%);
|
|
4999
5025
|
}
|
|
5000
|
-
.Layer__Modal[data-entering] {
|
|
5001
|
-
animation-duration: 300ms;
|
|
5002
|
-
}
|
|
5003
|
-
.Layer__Modal[data-exiting] {
|
|
5004
|
-
animation-duration: 300ms;
|
|
5005
|
-
}
|
|
5006
5026
|
.Layer__Modal[data-flex-block] {
|
|
5007
5027
|
block-size: auto;
|
|
5008
5028
|
}
|
|
5009
5029
|
.Layer__Modal[data-size=lg] {
|
|
5010
5030
|
inline-size: min(42rem, 90%);
|
|
5011
5031
|
}
|
|
5032
|
+
.Layer__Modal[data-variant=drawer] {
|
|
5033
|
+
block-size: 100%;
|
|
5034
|
+
}
|
|
5035
|
+
.Layer__Modal[data-variant=drawer][data-entering] {
|
|
5036
|
+
animation: drawer-slide 300ms;
|
|
5037
|
+
}
|
|
5038
|
+
.Layer__Modal[data-variant=drawer][data-exiting] {
|
|
5039
|
+
animation: drawer-slide 300ms reverse ease-in;
|
|
5040
|
+
}
|
|
5041
|
+
.Layer__Modal[data-variant=mobile-drawer] {
|
|
5042
|
+
position: fixed;
|
|
5043
|
+
bottom: 0;
|
|
5044
|
+
overflow: hidden;
|
|
5045
|
+
block-size: 80%;
|
|
5046
|
+
inline-size: 100%;
|
|
5047
|
+
border-radius: var(--border-radius-2xs) var(--border-radius-2xs) 0 0;
|
|
5048
|
+
}
|
|
5049
|
+
.Layer__Modal[data-variant=mobile-drawer][data-entering] {
|
|
5050
|
+
animation: mobile-drawer-slide 200ms;
|
|
5051
|
+
}
|
|
5052
|
+
.Layer__Modal[data-variant=mobile-drawer][data-exiting] {
|
|
5053
|
+
animation: mobile-drawer-slide 200ms reverse ease-in;
|
|
5054
|
+
}
|
|
5012
5055
|
.Layer__Dialog {
|
|
5013
5056
|
display: flex;
|
|
5014
5057
|
flex-direction: column;
|
|
@@ -5021,6 +5064,38 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5021
5064
|
.Layer__Dialog [slot=content] {
|
|
5022
5065
|
flex: 1;
|
|
5023
5066
|
}
|
|
5067
|
+
.Layer__Dialog[data-variant=drawer] {
|
|
5068
|
+
padding: 0;
|
|
5069
|
+
border-radius: 0;
|
|
5070
|
+
}
|
|
5071
|
+
.Layer__Dialog[data-variant=mobile-drawer] {
|
|
5072
|
+
padding: 0;
|
|
5073
|
+
border-radius: var(--border-radius-2xs) var(--border-radius-2xs) 0 0;
|
|
5074
|
+
}
|
|
5075
|
+
@keyframes drawer-slide {
|
|
5076
|
+
from {
|
|
5077
|
+
transform: translateX(100%);
|
|
5078
|
+
}
|
|
5079
|
+
to {
|
|
5080
|
+
transform: translateX(0);
|
|
5081
|
+
}
|
|
5082
|
+
}
|
|
5083
|
+
@keyframes drawer-darken {
|
|
5084
|
+
from {
|
|
5085
|
+
background: rgba(0, 0, 0, 0);
|
|
5086
|
+
}
|
|
5087
|
+
to {
|
|
5088
|
+
background: rgba(0, 0, 0, 0.5);
|
|
5089
|
+
}
|
|
5090
|
+
}
|
|
5091
|
+
@keyframes mobile-drawer-slide {
|
|
5092
|
+
from {
|
|
5093
|
+
transform: translateY(100%);
|
|
5094
|
+
}
|
|
5095
|
+
to {
|
|
5096
|
+
transform: translateY(0);
|
|
5097
|
+
}
|
|
5098
|
+
}
|
|
5024
5099
|
.Layer__ModalCloseButton--position-absolute {
|
|
5025
5100
|
position: absolute;
|
|
5026
5101
|
align-self: end;
|
|
@@ -5030,6 +5105,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5030
5105
|
grid-template-areas: "title close";
|
|
5031
5106
|
grid-template-columns: 1fr auto;
|
|
5032
5107
|
gap: var(--spacing-sm);
|
|
5108
|
+
align-items: center;
|
|
5033
5109
|
}
|
|
5034
5110
|
.Layer__ModalTitleWithClose > [slot=title] {
|
|
5035
5111
|
grid-area: title;
|
|
@@ -5403,6 +5479,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5403
5479
|
border-bottom: 1px solid var(--color-base-300);
|
|
5404
5480
|
}
|
|
5405
5481
|
.Layer__UI__Table-Column {
|
|
5482
|
+
box-sizing: border-box;
|
|
5406
5483
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
5407
5484
|
font-size: var(--text-sm);
|
|
5408
5485
|
font-weight: var(--font-weight-normal);
|
|
@@ -5582,7 +5659,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5582
5659
|
font-weight: var(--font-weight-bold);
|
|
5583
5660
|
}
|
|
5584
5661
|
.Layer__MoneyText {
|
|
5585
|
-
color: var(--color-base-
|
|
5662
|
+
color: var(--color-base-800);
|
|
5586
5663
|
overflow-x: hidden;
|
|
5587
5664
|
text-overflow: ellipsis;
|
|
5588
5665
|
}
|
|
@@ -5675,6 +5752,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5675
5752
|
.Layer__Span[data-size=lg] {
|
|
5676
5753
|
font-size: var(--text-lg);
|
|
5677
5754
|
}
|
|
5755
|
+
.Layer__Header[data-size=xl],
|
|
5756
|
+
.Layer__Label[data-size=xl],
|
|
5757
|
+
.Layer__P[data-size=xl],
|
|
5758
|
+
.Layer__Span[data-size=xl] {
|
|
5759
|
+
font-size: var(--text-xl);
|
|
5760
|
+
}
|
|
5678
5761
|
.Layer__Header[data-pb="3xs"],
|
|
5679
5762
|
.Layer__Label[data-pb="3xs"],
|
|
5680
5763
|
.Layer__P[data-pb="3xs"],
|
|
@@ -6715,35 +6798,38 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6715
6798
|
font-size: var(--text-md);
|
|
6716
6799
|
}
|
|
6717
6800
|
}
|
|
6718
|
-
.
|
|
6801
|
+
.Layer__InvoiceTable {
|
|
6802
|
+
width: clamp(48rem, 100%, 1406px);
|
|
6803
|
+
}
|
|
6804
|
+
.Layer__UI__Table__InvoiceTable {
|
|
6719
6805
|
table-layout: fixed;
|
|
6720
6806
|
}
|
|
6721
|
-
.
|
|
6807
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--SentAt {
|
|
6722
6808
|
width: 15%;
|
|
6723
|
-
min-width:
|
|
6809
|
+
min-width: 8rem;
|
|
6724
6810
|
}
|
|
6725
|
-
.
|
|
6811
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--InvoiceNo {
|
|
6726
6812
|
width: 10%;
|
|
6727
|
-
min-width:
|
|
6813
|
+
min-width: 6.75rem;
|
|
6728
6814
|
}
|
|
6729
|
-
.
|
|
6815
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Customer {
|
|
6730
6816
|
width: 35%;
|
|
6731
|
-
min-width:
|
|
6817
|
+
min-width: 11.75rem;
|
|
6732
6818
|
}
|
|
6733
|
-
.
|
|
6819
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total {
|
|
6734
6820
|
width: 15%;
|
|
6735
|
-
min-width:
|
|
6821
|
+
min-width: 7.75rem;
|
|
6736
6822
|
border-right: 1px solid var(--color-base-300);
|
|
6737
6823
|
text-align: end;
|
|
6738
6824
|
}
|
|
6739
|
-
.
|
|
6825
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Status {
|
|
6740
6826
|
width: 25%;
|
|
6741
|
-
min-width:
|
|
6827
|
+
min-width: 10rem;
|
|
6742
6828
|
}
|
|
6743
|
-
.
|
|
6829
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Cell__InvoiceTable--Total {
|
|
6744
6830
|
border-right: 1px solid var(--color-base-300);
|
|
6745
6831
|
}
|
|
6746
|
-
.
|
|
6832
|
+
.Layer__InvoiceTable__StatusFilter {
|
|
6747
6833
|
width: 11rem;
|
|
6748
6834
|
}
|
|
6749
6835
|
.Layer__InvoiceDetail__SubHeader {
|
|
@@ -6815,6 +6901,66 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6815
6901
|
padding-left: 2.25rem;
|
|
6816
6902
|
border-bottom: 1px solid var(--border-color);
|
|
6817
6903
|
}
|
|
6904
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__InvoiceNo,
|
|
6905
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__PaidAt,
|
|
6906
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__PaymentMethod,
|
|
6907
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__ReferenceNo,
|
|
6908
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__Memo {
|
|
6909
|
+
grid-template-columns: 8rem auto;
|
|
6910
|
+
min-width: 16rem;
|
|
6911
|
+
}
|
|
6912
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__Amount {
|
|
6913
|
+
grid-template-columns: 8rem 8rem;
|
|
6914
|
+
justify-content: end;
|
|
6915
|
+
}
|
|
6916
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__OutstandingBalance {
|
|
6917
|
+
display: grid;
|
|
6918
|
+
grid-template-columns: 8rem 7.5rem;
|
|
6919
|
+
justify-content: end;
|
|
6920
|
+
}
|
|
6921
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__FormError {
|
|
6922
|
+
height: 4rem;
|
|
6923
|
+
padding-inline: var(--spacing-md);
|
|
6924
|
+
border-top: 1px solid var(--border-color);
|
|
6925
|
+
}
|
|
6926
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__InvoiceNo {
|
|
6927
|
+
display: grid;
|
|
6928
|
+
}
|
|
6929
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Section {
|
|
6930
|
+
padding: var(--spacing-md);
|
|
6931
|
+
border-top: 1px solid var(--border-color);
|
|
6932
|
+
}
|
|
6933
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Submit {
|
|
6934
|
+
display: grid;
|
|
6935
|
+
}
|
|
6936
|
+
.Layer__InvoiceSummaryStats__Container {
|
|
6937
|
+
box-sizing: border-box;
|
|
6938
|
+
width: clamp(48rem, 100%, 1406px);
|
|
6939
|
+
padding: var(--spacing-md) var(--spacing-lg);
|
|
6940
|
+
}
|
|
6941
|
+
.Layer__InvoiceSummaryStats__Payments {
|
|
6942
|
+
box-sizing: border-box;
|
|
6943
|
+
min-width: 12rem;
|
|
6944
|
+
padding: var(--spacing-md) var(--spacing-lg);
|
|
6945
|
+
border-radius: var(--border-radius-2xs);
|
|
6946
|
+
border: 1px solid var(--border-color);
|
|
6947
|
+
}
|
|
6948
|
+
.Layer__InvoiceSummaryStats__Meter__track {
|
|
6949
|
+
fill: var(--color-info-bg);
|
|
6950
|
+
}
|
|
6951
|
+
.Layer__InvoiceSummaryStats__Meter__fill {
|
|
6952
|
+
fill: var(--color-info-warning-bg);
|
|
6953
|
+
}
|
|
6954
|
+
.Layer__PaymentMethodComboBox {
|
|
6955
|
+
display: grid;
|
|
6956
|
+
grid-template-areas: "label" "input";
|
|
6957
|
+
gap: var(--spacing-3xs);
|
|
6958
|
+
}
|
|
6959
|
+
.Layer__PaymentMethodComboBox--inline {
|
|
6960
|
+
grid-template-areas: "label input";
|
|
6961
|
+
gap: 0;
|
|
6962
|
+
align-items: center;
|
|
6963
|
+
}
|
|
6818
6964
|
.Layer__DataTableHeader__Filters {
|
|
6819
6965
|
height: 4.25rem;
|
|
6820
6966
|
border-bottom: 1px solid var(--border-color);
|
|
@@ -6823,6 +6969,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6823
6969
|
height: 4.75rem;
|
|
6824
6970
|
border-bottom: 1px solid var(--border-color);
|
|
6825
6971
|
}
|
|
6972
|
+
.Layer__PaginatedDataTable__Pagination {
|
|
6973
|
+
border-top: 1px solid var(--border-color);
|
|
6974
|
+
}
|
|
6975
|
+
.Layer__UI__VirtualizedTable__container {
|
|
6976
|
+
position: relative;
|
|
6977
|
+
overflow: auto;
|
|
6978
|
+
}
|
|
6979
|
+
.Layer__UI__VirtualizedTable__state-container {
|
|
6980
|
+
display: flex;
|
|
6981
|
+
align-items: center;
|
|
6982
|
+
justify-content: center;
|
|
6983
|
+
}
|
|
6984
|
+
.Layer__UI__VirtualizedTable {
|
|
6985
|
+
display: grid;
|
|
6986
|
+
}
|
|
6987
|
+
.Layer__UI__VirtualizedTable__header {
|
|
6988
|
+
position: sticky;
|
|
6989
|
+
z-index: 1;
|
|
6990
|
+
top: 0;
|
|
6991
|
+
display: grid;
|
|
6992
|
+
}
|
|
6993
|
+
.Layer__UI__VirtualizedTable__cell,
|
|
6994
|
+
.Layer__UI__VirtualizedTable__header-cell {
|
|
6995
|
+
display: flex;
|
|
6996
|
+
flex-wrap: wrap;
|
|
6997
|
+
align-content: center;
|
|
6998
|
+
}
|
|
6999
|
+
.Layer__UI__VirtualizedTable__header-cell {
|
|
7000
|
+
background-color: var(--color-base-0);
|
|
7001
|
+
}
|
|
7002
|
+
.Layer__UI__VirtualizedTable__row {
|
|
7003
|
+
position: absolute;
|
|
7004
|
+
display: grid;
|
|
7005
|
+
width: 100%;
|
|
7006
|
+
}
|
|
6826
7007
|
.Layer__caobfb {
|
|
6827
7008
|
padding-inline: var(--spacing-md);
|
|
6828
7009
|
padding-block: var(--spacing-sm);
|
|
@@ -7651,6 +7832,42 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7651
7832
|
.Layer__separator[data-mbs="5xl"] {
|
|
7652
7833
|
margin-block-start: var(--spacing-5xl);
|
|
7653
7834
|
}
|
|
7835
|
+
.Layer__ProfitAndLossDetailReport {
|
|
7836
|
+
--pnl-detail-table-cols: minmax(7rem, 12%) minmax(7rem, 12%) minmax(10rem, 18%) minmax(12rem, 38%) minmax(7.5rem, 10%) minmax(7.5rem, 10%);
|
|
7837
|
+
}
|
|
7838
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport {
|
|
7839
|
+
table-layout: fixed;
|
|
7840
|
+
}
|
|
7841
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__row,
|
|
7842
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__header > tr {
|
|
7843
|
+
display: grid;
|
|
7844
|
+
grid-template-columns: var(--pnl-detail-table-cols);
|
|
7845
|
+
}
|
|
7846
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Date,
|
|
7847
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Date {
|
|
7848
|
+
color: var(--color-base-600);
|
|
7849
|
+
}
|
|
7850
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Amount,
|
|
7851
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Amount {
|
|
7852
|
+
justify-content: flex-end;
|
|
7853
|
+
}
|
|
7854
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance,
|
|
7855
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Balance {
|
|
7856
|
+
justify-content: flex-end;
|
|
7857
|
+
}
|
|
7858
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-row {
|
|
7859
|
+
display: grid;
|
|
7860
|
+
grid-template-columns: var(--pnl-detail-table-cols);
|
|
7861
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
7862
|
+
border-top: 1px solid var(--color-base-300);
|
|
7863
|
+
}
|
|
7864
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-label {
|
|
7865
|
+
grid-column: 1;
|
|
7866
|
+
}
|
|
7867
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-amount {
|
|
7868
|
+
grid-column: 5;
|
|
7869
|
+
justify-content: flex-end;
|
|
7870
|
+
}
|
|
7654
7871
|
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
7655
7872
|
position: absolute;
|
|
7656
7873
|
bottom: -20px;
|
|
@@ -9023,20 +9240,31 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9023
9240
|
color: var(--color-base-300);
|
|
9024
9241
|
}
|
|
9025
9242
|
.Layer__expanded-bank-transaction-row__match-table {
|
|
9026
|
-
display:
|
|
9027
|
-
|
|
9028
|
-
gap:
|
|
9243
|
+
display: grid;
|
|
9244
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px max-content;
|
|
9245
|
+
gap: 0;
|
|
9029
9246
|
margin-bottom: var(--spacing-sm);
|
|
9030
9247
|
}
|
|
9248
|
+
.Layer__expanded-bank-transaction-row__match-table:has(.Layer__expanded-bank-transaction-row__match-table__status) {
|
|
9249
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px max-content min-content;
|
|
9250
|
+
}
|
|
9251
|
+
.Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)) {
|
|
9252
|
+
grid-template-columns: 120px 1fr 100px;
|
|
9253
|
+
}
|
|
9254
|
+
.Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)):has(.Layer__expanded-bank-transaction-row__match-table__status) {
|
|
9255
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px min-content;
|
|
9256
|
+
}
|
|
9031
9257
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
9032
|
-
display:
|
|
9033
|
-
width: 100%;
|
|
9258
|
+
display: contents;
|
|
9034
9259
|
background: transparent;
|
|
9035
9260
|
}
|
|
9036
9261
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
9037
9262
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9038
9263
|
font-size: var(--text-sm);
|
|
9039
9264
|
color: var(--color-base-500);
|
|
9265
|
+
overflow: hidden;
|
|
9266
|
+
text-overflow: ellipsis;
|
|
9267
|
+
white-space: nowrap;
|
|
9040
9268
|
}
|
|
9041
9269
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date {
|
|
9042
9270
|
box-sizing: border-box;
|
|
@@ -9047,11 +9275,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9047
9275
|
display: none;
|
|
9048
9276
|
}
|
|
9049
9277
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9278
|
+
width: 100px;
|
|
9050
9279
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9051
|
-
|
|
9280
|
+
}
|
|
9281
|
+
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__link {
|
|
9282
|
+
overflow: visible;
|
|
9283
|
+
white-space: nowrap;
|
|
9052
9284
|
}
|
|
9053
9285
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status {
|
|
9054
|
-
width:
|
|
9286
|
+
width: 100px;
|
|
9055
9287
|
text-align: right;
|
|
9056
9288
|
}
|
|
9057
9289
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
@@ -9078,7 +9310,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9078
9310
|
max-width: 100%;
|
|
9079
9311
|
}
|
|
9080
9312
|
.Layer__expanded-bank-transaction-row__match-row {
|
|
9081
|
-
display:
|
|
9313
|
+
display: contents;
|
|
9082
9314
|
align-items: stretch;
|
|
9083
9315
|
overflow: hidden;
|
|
9084
9316
|
cursor: pointer;
|
|
@@ -9094,19 +9326,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9094
9326
|
border-bottom: 1px solid var(--color-base-300);
|
|
9095
9327
|
font-size: var(--text-md);
|
|
9096
9328
|
color: var(--color-base-500);
|
|
9329
|
+
overflow: hidden;
|
|
9097
9330
|
}
|
|
9098
9331
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
9099
9332
|
border-top-left-radius: var(--border-radius-2xs);
|
|
9100
9333
|
border-bottom-left-radius: var(--border-radius-2xs);
|
|
9101
9334
|
border-left: 1px solid var(--color-base-300);
|
|
9102
9335
|
}
|
|
9103
|
-
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3)
|
|
9336
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3):last-of-type,
|
|
9337
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(4) {
|
|
9104
9338
|
border-top-right-radius: var(--border-radius-2xs);
|
|
9105
9339
|
border-bottom-right-radius: var(--border-radius-2xs);
|
|
9106
9340
|
border-right: 1px solid var(--color-base-300);
|
|
9107
9341
|
}
|
|
9108
|
-
.Layer__expanded-bank-transaction-row__match-row > div:
|
|
9109
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:
|
|
9342
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(5),
|
|
9343
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(5) {
|
|
9110
9344
|
border-color: transparent;
|
|
9111
9345
|
background-color: transparent;
|
|
9112
9346
|
}
|
|
@@ -9124,7 +9358,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9124
9358
|
border-bottom-left-radius: var(--border-radius-2xs);
|
|
9125
9359
|
border-left: 1px solid var(--color-base-300);
|
|
9126
9360
|
}
|
|
9127
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3)
|
|
9361
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3):last-of-type,
|
|
9362
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(4) {
|
|
9128
9363
|
border-top-right-radius: var(--border-radius-2xs);
|
|
9129
9364
|
border-bottom-right-radius: var(--border-radius-2xs);
|
|
9130
9365
|
border-right: 1px solid var(--color-base-300);
|
|
@@ -9141,13 +9376,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9141
9376
|
.Layer__expanded-bank-transaction-row__match-row--selected > div:first-child {
|
|
9142
9377
|
border-left: 1px solid var(--color-base-800);
|
|
9143
9378
|
}
|
|
9144
|
-
.Layer__expanded-bank-transaction-row__match-row--selected > div:nth-child(3)
|
|
9379
|
+
.Layer__expanded-bank-transaction-row__match-row--selected > div:nth-child(3):last-of-type,
|
|
9380
|
+
.Layer__expanded-bank-transaction-row__match-row--selected > div:nth-child(4) {
|
|
9145
9381
|
border-right: 1px solid var(--color-base-800);
|
|
9146
9382
|
}
|
|
9147
|
-
.Layer__expanded-bank-transaction-row__match-row--selected > div:last-child {
|
|
9148
|
-
border-color: transparent;
|
|
9149
|
-
background-color: transparent;
|
|
9150
|
-
}
|
|
9151
9383
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
9152
9384
|
border-top: 1px solid var(--color-base-500);
|
|
9153
9385
|
border-bottom: 1px solid var(--color-base-500);
|
|
@@ -9157,13 +9389,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9157
9389
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:first-child {
|
|
9158
9390
|
border-left: 1px solid var(--color-base-500);
|
|
9159
9391
|
}
|
|
9160
|
-
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:nth-child(3)
|
|
9392
|
+
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:nth-child(3):last-of-type,
|
|
9393
|
+
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:nth-child(4) {
|
|
9161
9394
|
border-right: 1px solid var(--color-base-500);
|
|
9162
9395
|
}
|
|
9163
|
-
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:last-child {
|
|
9164
|
-
border-color: transparent;
|
|
9165
|
-
background-color: transparent;
|
|
9166
|
-
}
|
|
9167
9396
|
.Layer__bank-transaction-mobile-list-item__description {
|
|
9168
9397
|
padding: var(--spacing-md) 0;
|
|
9169
9398
|
border-top: 1px solid var(--border-color);
|
|
@@ -9187,7 +9416,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9187
9416
|
gap: var(--spacing-sm);
|
|
9188
9417
|
align-items: center;
|
|
9189
9418
|
width: 100%;
|
|
9190
|
-
padding: var(--spacing-xs)
|
|
9419
|
+
padding: var(--spacing-xs);
|
|
9191
9420
|
border-bottom: 1px solid var(--color-base-50);
|
|
9192
9421
|
}
|
|
9193
9422
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
@@ -9206,8 +9435,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9206
9435
|
}
|
|
9207
9436
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__details {
|
|
9208
9437
|
display: flex;
|
|
9209
|
-
justify-content:
|
|
9438
|
+
justify-content: space-between;
|
|
9210
9439
|
color: var(--color-base-500);
|
|
9440
|
+
width: 100%;
|
|
9211
9441
|
}
|
|
9212
9442
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
9213
9443
|
display: flex;
|
|
@@ -9215,6 +9445,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9215
9445
|
width: 24px;
|
|
9216
9446
|
min-width: 24px;
|
|
9217
9447
|
}
|
|
9448
|
+
.Layer__bank-transaction-mobile-list-item__match-item.Layer__bank-transaction-mobile-list-item__match-item--selected {
|
|
9449
|
+
background: var(--color-base-100);
|
|
9450
|
+
}
|
|
9218
9451
|
.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 {
|
|
9219
9452
|
color: var(--color-base-1000);
|
|
9220
9453
|
}
|
|
@@ -9245,10 +9478,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9245
9478
|
}
|
|
9246
9479
|
.Layer__expanded-bank-transaction-row__match-row > div,
|
|
9247
9480
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child,
|
|
9248
|
-
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3),
|
|
9481
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3):last-of-type,
|
|
9482
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(4),
|
|
9249
9483
|
.Layer__expanded-bank-transaction-row__match-row:hover > div,
|
|
9250
9484
|
.Layer__expanded-bank-transaction-row__match-row:hover > div:first-child,
|
|
9251
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3)
|
|
9485
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3):last-of-type,
|
|
9486
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(4) {
|
|
9252
9487
|
border-width: 0;
|
|
9253
9488
|
}
|
|
9254
9489
|
.Layer__expanded-bank-transaction-row__match-row:hover {
|
|
@@ -9501,11 +9736,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9501
9736
|
}
|
|
9502
9737
|
}
|
|
9503
9738
|
@container (max-width: 480px) {
|
|
9504
|
-
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input:disabled {
|
|
9505
|
-
box-shadow: none;
|
|
9506
|
-
background-color: transparent;
|
|
9507
|
-
border-color: transparent;
|
|
9508
|
-
}
|
|
9509
9739
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input-left-text {
|
|
9510
9740
|
border-right-color: transparent;
|
|
9511
9741
|
}
|
|
@@ -9518,27 +9748,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9518
9748
|
padding-bottom: 0;
|
|
9519
9749
|
}
|
|
9520
9750
|
.Layer__bank-transactions__mobile-list {
|
|
9521
|
-
padding: 0;
|
|
9522
9751
|
display: flex;
|
|
9523
9752
|
flex-direction: column;
|
|
9524
|
-
list-style: none;
|
|
9525
9753
|
overflow: hidden;
|
|
9754
|
+
padding: 0;
|
|
9526
9755
|
margin: auto;
|
|
9756
|
+
list-style: none;
|
|
9527
9757
|
}
|
|
9528
9758
|
.Layer__bank-transaction-mobile-list-item {
|
|
9759
|
+
box-sizing: border-box;
|
|
9529
9760
|
padding: 0;
|
|
9761
|
+
border-radius: var(--border-radius-sm);
|
|
9762
|
+
box-shadow: 0 2px 2px 0 var(--color-base-200), 0 4px 4px 0 var(--color-base-100);
|
|
9530
9763
|
margin: var(--spacing-2xs) var(--spacing-md);
|
|
9531
9764
|
background: var(--color-base-0);
|
|
9532
|
-
|
|
9533
|
-
|
|
9765
|
+
cursor: pointer;
|
|
9766
|
+
user-select: none;
|
|
9534
9767
|
opacity: 0;
|
|
9535
9768
|
transform: scale(0.96);
|
|
9536
9769
|
transition: all 180ms ease-in-out;
|
|
9537
|
-
cursor: pointer;
|
|
9538
9770
|
-webkit-tap-highlight-color: transparent;
|
|
9539
9771
|
-webkit-touch-callout: none;
|
|
9540
|
-
user-select: none;
|
|
9541
|
-
box-sizing: border-box;
|
|
9542
9772
|
}
|
|
9543
9773
|
.Layer__bank-transaction-mobile-list-item.show {
|
|
9544
9774
|
opacity: 1;
|
|
@@ -9560,8 +9790,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9560
9790
|
height: 0 !important;
|
|
9561
9791
|
}
|
|
9562
9792
|
.Layer__bank-transaction-mobile-list-item .Layer__bank-transaction-mobile-list-item__expanded-row {
|
|
9563
|
-
height: 0;
|
|
9564
9793
|
overflow: hidden;
|
|
9794
|
+
height: 0;
|
|
9565
9795
|
transition: all 180ms ease-out;
|
|
9566
9796
|
}
|
|
9567
9797
|
.Layer__bank-transaction-mobile-list-item .Layer__text--error {
|
|
@@ -9570,30 +9800,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9570
9800
|
text-align: center;
|
|
9571
9801
|
}
|
|
9572
9802
|
.Layer__bank-transaction-mobile-list-item__heading {
|
|
9803
|
+
box-sizing: border-box;
|
|
9573
9804
|
display: block;
|
|
9574
9805
|
width: 100%;
|
|
9575
|
-
box-sizing: border-box;
|
|
9576
9806
|
}
|
|
9577
9807
|
.Layer__bank-transaction-mobile-list-item__heading__content {
|
|
9808
|
+
box-sizing: border-box;
|
|
9578
9809
|
display: flex;
|
|
9579
|
-
|
|
9810
|
+
gap: var(--spacing-xs);
|
|
9580
9811
|
align-items: flex-start;
|
|
9581
9812
|
justify-content: space-between;
|
|
9582
|
-
|
|
9813
|
+
width: 100%;
|
|
9583
9814
|
padding: var(--spacing-sm);
|
|
9584
|
-
box-sizing: border-box;
|
|
9585
9815
|
}
|
|
9586
9816
|
.Layer__bank-transaction-mobile-list-item__heading__main {
|
|
9587
9817
|
display: flex;
|
|
9588
9818
|
flex-direction: column;
|
|
9589
|
-
max-width: 100%;
|
|
9590
9819
|
gap: var(--spacing-4xs);
|
|
9820
|
+
max-width: 100%;
|
|
9591
9821
|
}
|
|
9592
9822
|
.Layer__bank-transaction-mobile-list-item__heading__account-name {
|
|
9593
|
-
color: var(--color-base-500);
|
|
9594
9823
|
display: flex;
|
|
9595
|
-
align-items: center;
|
|
9596
9824
|
gap: var(--spacing-3xs);
|
|
9825
|
+
align-items: center;
|
|
9826
|
+
color: var(--color-base-500);
|
|
9597
9827
|
}
|
|
9598
9828
|
.Layer__bank-transaction-mobile-list-item__heading__account-name svg {
|
|
9599
9829
|
padding-top: 1px;
|
|
@@ -9605,30 +9835,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9605
9835
|
.Layer__bank-transaction-mobile-list-item__heading__amount {
|
|
9606
9836
|
display: flex;
|
|
9607
9837
|
flex-direction: column;
|
|
9608
|
-
align-items: flex-end;
|
|
9609
9838
|
gap: var(--spacing-3xs);
|
|
9839
|
+
align-items: flex-end;
|
|
9610
9840
|
font-size: 14px;
|
|
9611
9841
|
}
|
|
9612
9842
|
.Layer__bank-transaction-mobile-list-item__heading__date {
|
|
9613
|
-
color: var(--color-base-500);
|
|
9614
9843
|
font-size: 12px;
|
|
9844
|
+
color: var(--color-base-500);
|
|
9615
9845
|
}
|
|
9616
9846
|
.Layer__bank-transaction-mobile-list-item__amount-credit {
|
|
9617
9847
|
color: var(--color-info-success);
|
|
9618
9848
|
}
|
|
9619
9849
|
.Layer__bank-transaction-mobile-list-item__value {
|
|
9850
|
+
box-sizing: border-box;
|
|
9620
9851
|
display: flex;
|
|
9852
|
+
gap: var(--spacing-3xs);
|
|
9621
9853
|
align-items: center;
|
|
9622
9854
|
justify-content: flex-end;
|
|
9623
|
-
|
|
9855
|
+
overflow: hidden;
|
|
9856
|
+
height: 0;
|
|
9624
9857
|
padding: 0 var(--spacing-sm);
|
|
9625
|
-
background-color: var(--base-transparent-2);
|
|
9626
9858
|
border-bottom-left-radius: var(--border-radius-sm);
|
|
9627
9859
|
border-bottom-right-radius: var(--border-radius-sm);
|
|
9860
|
+
background-color: var(--base-transparent-2);
|
|
9628
9861
|
transition: all 180ms ease-in-out;
|
|
9629
|
-
height: 0;
|
|
9630
|
-
overflow: hidden;
|
|
9631
|
-
box-sizing: border-box;
|
|
9632
9862
|
opacity: 0;
|
|
9633
9863
|
}
|
|
9634
9864
|
.Layer__bank-transaction-mobile-list-item__value.open {
|
|
@@ -9638,25 +9868,25 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9638
9868
|
}
|
|
9639
9869
|
.Layer__bank-transaction-mobile-list-item__value > .Layer__text {
|
|
9640
9870
|
display: flex;
|
|
9641
|
-
align-items: center;
|
|
9642
9871
|
gap: 12px;
|
|
9872
|
+
align-items: center;
|
|
9643
9873
|
}
|
|
9644
9874
|
.Layer__bank-transaction-mobile-list-item__toggle-row {
|
|
9645
9875
|
display: flex;
|
|
9876
|
+
gap: var(--spacing-3xs);
|
|
9646
9877
|
align-items: center;
|
|
9647
9878
|
justify-content: space-between;
|
|
9648
|
-
gap: var(--spacing-3xs);
|
|
9649
9879
|
padding: var(--spacing-4xs) var(--spacing-sm);
|
|
9650
9880
|
}
|
|
9651
9881
|
.Layer__bank-transaction-mobile-list-item__form-container {
|
|
9652
|
-
padding: var(--spacing-sm);
|
|
9653
9882
|
display: flex;
|
|
9654
9883
|
flex-direction: column;
|
|
9655
9884
|
align-items: center;
|
|
9885
|
+
padding: var(--spacing-sm);
|
|
9656
9886
|
}
|
|
9657
9887
|
.Layer__bank-transaction-mobile-list-item__personal-form {
|
|
9658
|
-
padding: var(--spacing-md) 0 var(--spacing-xs) 0;
|
|
9659
9888
|
width: 100%;
|
|
9889
|
+
padding: var(--spacing-md) 0 var(--spacing-xs) 0;
|
|
9660
9890
|
}
|
|
9661
9891
|
.Layer__bank-transaction-mobile-list-item__business-form {
|
|
9662
9892
|
width: 100%;
|
|
@@ -9672,8 +9902,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9672
9902
|
align-items: center;
|
|
9673
9903
|
justify-content: space-between;
|
|
9674
9904
|
width: 100%;
|
|
9675
|
-
color: var(--color-base-500);
|
|
9676
9905
|
padding-top: var(--spacing-xs);
|
|
9906
|
+
color: var(--color-base-500);
|
|
9677
9907
|
}
|
|
9678
9908
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell--split-entry__right-col {
|
|
9679
9909
|
width: 100%;
|
|
@@ -9682,12 +9912,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9682
9912
|
padding: var(--spacing-sm) 0;
|
|
9683
9913
|
}
|
|
9684
9914
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__splits-inputs .Layer__bank-transactions__table-cell--split-entry {
|
|
9915
|
+
box-sizing: border-box;
|
|
9685
9916
|
display: flex;
|
|
9686
9917
|
flex: 1;
|
|
9687
|
-
width: 100%;
|
|
9688
|
-
box-sizing: border-box;
|
|
9689
|
-
align-items: center;
|
|
9690
9918
|
gap: var(--spacing-xs);
|
|
9919
|
+
align-items: center;
|
|
9920
|
+
width: 100%;
|
|
9691
9921
|
padding-bottom: var(--spacing-xs);
|
|
9692
9922
|
}
|
|
9693
9923
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__split-amount-input {
|
|
@@ -9697,12 +9927,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9697
9927
|
width: 156px;
|
|
9698
9928
|
}
|
|
9699
9929
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell--split-entry__merge-btn {
|
|
9700
|
-
width: 36px;
|
|
9701
9930
|
height: 36px;
|
|
9931
|
+
width: 36px;
|
|
9702
9932
|
}
|
|
9703
9933
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__select__control {
|
|
9704
|
-
min-width: 150px;
|
|
9705
9934
|
width: 100%;
|
|
9935
|
+
min-width: 150px;
|
|
9706
9936
|
font-size: 12px;
|
|
9707
9937
|
}
|
|
9708
9938
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__add-new-split {
|
|
@@ -9717,14 +9947,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9717
9947
|
.Layer__bank-transaction-mobile-list-item__switch-form-btns > .Layer__text-btn {
|
|
9718
9948
|
color: var(--color-base-1000);
|
|
9719
9949
|
}
|
|
9720
|
-
.Layer__bank-transaction-mobile-list-item__categories_list-title {
|
|
9721
|
-
padding-top: var(--spacing-2xs);
|
|
9722
|
-
padding-bottom: var(--spacing-lg);
|
|
9723
|
-
padding-left: var(--spacing-md);
|
|
9724
|
-
font-size: 18px;
|
|
9725
|
-
}
|
|
9726
9950
|
.Layer__bank-transaction-mobile-list-item__categories_list-container {
|
|
9727
|
-
|
|
9951
|
+
height: 100%;
|
|
9952
|
+
padding-inline: var(--spacing-sm);
|
|
9953
|
+
padding-top: var(--spacing-sm);
|
|
9954
|
+
}
|
|
9955
|
+
.Layer__bank-transaction-mobile-list-item__categories_list {
|
|
9956
|
+
overflow-y: auto;
|
|
9728
9957
|
}
|
|
9729
9958
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
9730
9959
|
position: relative;
|
|
@@ -9769,7 +9998,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9769
9998
|
width: 8rem;
|
|
9770
9999
|
}
|
|
9771
10000
|
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--actions {
|
|
9772
|
-
width:
|
|
10001
|
+
width: 10rem;
|
|
9773
10002
|
}
|
|
9774
10003
|
.Layer__chart-of-accounts__table .Layer__table-cell-content .Layer__Span {
|
|
9775
10004
|
color: var(--text-secondary);
|
|
@@ -10380,70 +10609,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10380
10609
|
.Layer__data-state--inline .Layer__data-state__icon {
|
|
10381
10610
|
margin-bottom: 0;
|
|
10382
10611
|
}
|
|
10383
|
-
.Layer__drawer-background {
|
|
10384
|
-
position: fixed;
|
|
10385
|
-
display: none;
|
|
10386
|
-
top: 0;
|
|
10387
|
-
left: 0;
|
|
10388
|
-
right: 0;
|
|
10389
|
-
bottom: 0;
|
|
10390
|
-
opacity: 0;
|
|
10391
|
-
z-index: 1000;
|
|
10392
|
-
transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
10393
|
-
}
|
|
10394
|
-
.Layer__drawer-background.open.closing {
|
|
10395
|
-
opacity: 0;
|
|
10396
|
-
}
|
|
10397
|
-
.Layer__drawer-background.open {
|
|
10398
|
-
display: block;
|
|
10399
|
-
opacity: 0.4;
|
|
10400
|
-
background: #242424;
|
|
10401
|
-
}
|
|
10402
|
-
.Layer__drawer {
|
|
10403
|
-
position: fixed;
|
|
10404
|
-
display: flex;
|
|
10405
|
-
bottom: -100%;
|
|
10406
|
-
left: 0;
|
|
10407
|
-
right: 0;
|
|
10408
|
-
z-index: 9999;
|
|
10409
|
-
background: var(--color-base-0);
|
|
10410
|
-
width: 100%;
|
|
10411
|
-
max-height: 80%;
|
|
10412
|
-
overflow-y: auto;
|
|
10413
|
-
padding: 0 14px;
|
|
10414
|
-
border-radius: var(--spacing-md) var(--spacing-md) 0px 0px;
|
|
10415
|
-
transition: bottom 0.2s ease-in-out;
|
|
10416
|
-
border: 28px solid var(--color-base-0);
|
|
10417
|
-
border-left: 14px solid var(--color-base-0);
|
|
10418
|
-
border-right: 14px solid var(--color-base-0);
|
|
10419
|
-
box-sizing: border-box;
|
|
10420
|
-
}
|
|
10421
|
-
.Layer__drawer::after {
|
|
10422
|
-
position: absolute;
|
|
10423
|
-
content: "";
|
|
10424
|
-
width: 37px;
|
|
10425
|
-
height: 5px;
|
|
10426
|
-
background-color: var(--color-base-50);
|
|
10427
|
-
left: 50%;
|
|
10428
|
-
transform: translateX(-50%);
|
|
10429
|
-
top: 0px;
|
|
10430
|
-
border-radius: 80px;
|
|
10431
|
-
}
|
|
10432
|
-
.Layer__drawer.open:not(.closing) {
|
|
10433
|
-
bottom: 0;
|
|
10434
|
-
}
|
|
10435
|
-
@media (min-width: 414px) {
|
|
10436
|
-
.Layer__drawer {
|
|
10437
|
-
max-height: calc(82% - 32px);
|
|
10438
|
-
max-width: 414px;
|
|
10439
|
-
margin-left: auto;
|
|
10440
|
-
margin-right: auto;
|
|
10441
|
-
border-radius: var(--spacing-md);
|
|
10442
|
-
}
|
|
10443
|
-
.Layer__drawer.open:not(.closing) {
|
|
10444
|
-
bottom: 32px;
|
|
10445
|
-
}
|
|
10446
|
-
}
|
|
10447
10612
|
.Layer__chevron {
|
|
10448
10613
|
stroke: var(--color-base-900);
|
|
10449
10614
|
transition: transform 0.33s;
|
|
@@ -10797,22 +10962,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10797
10962
|
height: 24px;
|
|
10798
10963
|
}
|
|
10799
10964
|
.Layer__loader {
|
|
10800
|
-
|
|
10965
|
+
box-sizing: border-box;
|
|
10801
10966
|
display: flex;
|
|
10967
|
+
gap: 8px;
|
|
10802
10968
|
align-items: center;
|
|
10803
10969
|
justify-content: center;
|
|
10804
|
-
|
|
10970
|
+
width: 100%;
|
|
10805
10971
|
padding: var(--spacing-md);
|
|
10806
|
-
color: var(--text-color-primary);
|
|
10807
10972
|
font-size: var(--text-sm);
|
|
10808
|
-
|
|
10973
|
+
color: var(--text-color-primary);
|
|
10809
10974
|
}
|
|
10810
10975
|
.Layer__loader--as-badge {
|
|
10811
|
-
padding: 0;
|
|
10812
|
-
width: 21px;
|
|
10813
10976
|
height: 21px;
|
|
10814
|
-
|
|
10977
|
+
width: 21px;
|
|
10978
|
+
padding: 0;
|
|
10815
10979
|
border-radius: 50%;
|
|
10980
|
+
background-color: var(--color-base-100);
|
|
10816
10981
|
}
|
|
10817
10982
|
.Layer__loader--as-badge.Layer__loader--info {
|
|
10818
10983
|
background-color: var(--color-info-bg);
|
|
@@ -10831,24 +10996,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10831
10996
|
color: var(--color-info-warning-fg);
|
|
10832
10997
|
}
|
|
10833
10998
|
.Layer__loader--with-bg {
|
|
10834
|
-
background-color: var(--color-base-400);
|
|
10835
|
-
color: var(--text-color-primary);
|
|
10836
10999
|
padding: 0;
|
|
10837
11000
|
border-radius: 50%;
|
|
11001
|
+
background-color: var(--color-base-400);
|
|
11002
|
+
color: var(--text-color-primary);
|
|
10838
11003
|
}
|
|
10839
11004
|
.Layer__skeleton-loader__row {
|
|
11005
|
+
height: 63px;
|
|
10840
11006
|
padding: 0 var(--spacing-md);
|
|
10841
11007
|
border-bottom: 1px solid var(--border-color);
|
|
10842
|
-
height: 63px;
|
|
10843
11008
|
}
|
|
10844
11009
|
.Layer__skeleton-loader__row__group {
|
|
10845
11010
|
display: flex;
|
|
10846
|
-
align-items: center;
|
|
10847
11011
|
gap: var(--spacing-sm);
|
|
11012
|
+
align-items: center;
|
|
10848
11013
|
}
|
|
10849
11014
|
.Layer__skeleton-loader {
|
|
10850
|
-
width: 100%;
|
|
10851
11015
|
height: 12px;
|
|
11016
|
+
width: 100%;
|
|
10852
11017
|
border-radius: 4px;
|
|
10853
11018
|
}
|
|
10854
11019
|
@keyframes shine {
|
|
@@ -10857,27 +11022,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10857
11022
|
}
|
|
10858
11023
|
}
|
|
10859
11024
|
.Layer__anim--skeleton-loading {
|
|
11025
|
+
border-radius: 4px;
|
|
10860
11026
|
background: var(--color-base-100);
|
|
10861
11027
|
background:
|
|
10862
11028
|
linear-gradient(
|
|
10863
11029
|
110deg,
|
|
10864
|
-
var(--color-base-
|
|
10865
|
-
var(--color-base-
|
|
10866
|
-
var(--color-base-
|
|
10867
|
-
var(--color-base-
|
|
10868
|
-
border-radius: 4px;
|
|
11030
|
+
var(--color-base-100) 0%,
|
|
11031
|
+
var(--color-base-50) 28%,
|
|
11032
|
+
var(--color-base-100) 50%,
|
|
11033
|
+
var(--color-base-100) 100%);
|
|
10869
11034
|
background-size: 200% 100%;
|
|
10870
11035
|
animation: 1.5s shine linear infinite;
|
|
10871
11036
|
}
|
|
10872
11037
|
.Layer__syncing-component {
|
|
10873
11038
|
display: flex;
|
|
10874
|
-
align-items: center;
|
|
10875
11039
|
gap: var(--spacing-md);
|
|
11040
|
+
align-items: center;
|
|
10876
11041
|
padding: var(--spacing-md);
|
|
10877
11042
|
}
|
|
10878
11043
|
.Layer__syncing-component.Layer__syncing-component--with-border {
|
|
10879
|
-
border-left: 1px solid var(--border-color);
|
|
10880
11044
|
padding: 0 var(--spacing-md);
|
|
11045
|
+
border-left: 1px solid var(--border-color);
|
|
10881
11046
|
margin-left: var(--spacing-md);
|
|
10882
11047
|
}
|
|
10883
11048
|
.Layer__syncing-component .Layer__syncing-component__content {
|
|
@@ -10886,18 +11051,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10886
11051
|
gap: var(--spacing-4xs);
|
|
10887
11052
|
}
|
|
10888
11053
|
.Layer__syncing-component .Layer__syncing-component__content .Layer__syncing-component__title {
|
|
10889
|
-
color: var(--text-color-primary);
|
|
10890
11054
|
font-size: var(--text-sm);
|
|
10891
11055
|
font-weight: 540;
|
|
11056
|
+
color: var(--text-color-primary);
|
|
10892
11057
|
}
|
|
10893
11058
|
.Layer__syncing-component .Layer__syncing-component__content .Layer__syncing-component__message {
|
|
10894
|
-
color: var(--color-base-500);
|
|
10895
11059
|
font-size: var(--text-sm);
|
|
10896
11060
|
font-weight: 460;
|
|
11061
|
+
color: var(--color-base-500);
|
|
10897
11062
|
}
|
|
10898
11063
|
.Layer__syncing-component .Layer__icon-btn {
|
|
11064
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6, rgba(17, 17, 17, 0.06)), 0 0 0 1px var(--base-300, #eaeaea);
|
|
10899
11065
|
color: var(--color-base-1000);
|
|
10900
|
-
box-shadow: 0px 1px 2px 0px var(--base-transparent-6, rgba(17, 17, 17, 0.06)), 0px 0px 0px 1px var(--base-300, #eaeaea);
|
|
10901
11066
|
}
|
|
10902
11067
|
.Layer__syncing-component .Layer__icon-btn svg {
|
|
10903
11068
|
transition: transform 0.3s ease;
|
|
@@ -10906,13 +11071,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10906
11071
|
transform: rotate(180deg);
|
|
10907
11072
|
}
|
|
10908
11073
|
.Layer__bank-transactions__header--mobile .Layer__syncing-component.Layer__syncing-component--with-border {
|
|
10909
|
-
border-width: 0;
|
|
10910
11074
|
padding: 0;
|
|
10911
11075
|
padding-left: var(--spacing-sm);
|
|
11076
|
+
border-width: 0;
|
|
10912
11077
|
margin-left: 0;
|
|
10913
11078
|
}
|
|
10914
11079
|
.Layer__pagination-container {
|
|
10915
|
-
|
|
11080
|
+
justify-content: end;
|
|
10916
11081
|
padding: var(--spacing-md);
|
|
10917
11082
|
}
|
|
10918
11083
|
@container (min-width: 1400px) {
|
|
@@ -10920,22 +11085,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10920
11085
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
10921
11086
|
}
|
|
10922
11087
|
}
|
|
11088
|
+
.Layer__pagination-nav {
|
|
11089
|
+
display: contents;
|
|
11090
|
+
}
|
|
10923
11091
|
.Layer__pagination {
|
|
10924
11092
|
display: inline-flex;
|
|
10925
11093
|
gap: var(--spacing-4xs);
|
|
10926
11094
|
align-items: center;
|
|
11095
|
+
align-self: flex-end;
|
|
10927
11096
|
height: 2.25rem;
|
|
11097
|
+
padding-inline: var(--spacing-4xs);
|
|
10928
11098
|
border-radius: var(--border-radius-2xs);
|
|
10929
11099
|
border: 1px solid var(--color-base-300);
|
|
10930
11100
|
background: var(--color-base-50);
|
|
10931
11101
|
list-style-type: none;
|
|
10932
|
-
padding-inline-start: var(--spacing-4xs);
|
|
10933
|
-
padding-inline-end: var(--spacing-4xs);
|
|
10934
|
-
}
|
|
10935
|
-
.Layer__pagination .Layer__pagination__selected-item .Layer__UI__Button {
|
|
10936
|
-
box-shadow: inset 0 0 0 1px var(--base-transparent-6);
|
|
10937
|
-
background-color: var(--bg-brand-accent, var(--color-accent));
|
|
10938
|
-
color: var(--fg-brand-accent, var(--color-primary));
|
|
10939
11102
|
}
|
|
10940
11103
|
.Layer__panel {
|
|
10941
11104
|
display: flex;
|