@layerfi/components 0.1.111 → 0.1.112-alpha.1
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 +9568 -7549
- package/dist/cjs/index.css +12 -4
- package/dist/esm/index.css +12 -4
- package/dist/esm/index.mjs +9096 -7078
- package/dist/index.css +659 -361
- package/dist/index.d.ts +3086 -5669
- package/package.json +2 -1
package/dist/index.css
CHANGED
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
--color-dark-h: 0;
|
|
32
32
|
--color-dark-s: 0%;
|
|
33
33
|
--color-dark-l: 7%;
|
|
34
|
-
--color-dark: hsl(
|
|
34
|
+
--color-dark: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l));
|
|
35
35
|
--color-light-h: 0;
|
|
36
36
|
--color-light-s: 0%;
|
|
37
37
|
--color-light-l: 90%;
|
|
38
|
-
--color-light: hsl(
|
|
38
|
+
--color-light: hsl(var(--color-light-h) var(--color-light-s) var(--color-light-l));
|
|
39
39
|
--color-base-0: #fff;
|
|
40
40
|
--color-base-50: hsl(var(--color-dark-h) 1% 98%);
|
|
41
41
|
--color-base-100: hsl(var(--color-dark-h) 1% 94%);
|
|
@@ -51,21 +51,21 @@
|
|
|
51
51
|
--max-component-width: 1408px;
|
|
52
52
|
--base-transparent-1: hsl(220deg 43% 11% / 1%);
|
|
53
53
|
--base-transparent-2: hsl(220deg 43% 11% / 2%);
|
|
54
|
-
--base-transparent-4: hsl(
|
|
55
|
-
--base-transparent-5: hsl(
|
|
56
|
-
--base-transparent-6: hsl(
|
|
57
|
-
--base-transparent-8: hsl(
|
|
58
|
-
--base-transparent-10: hsl(
|
|
59
|
-
--base-transparent-12: hsl(
|
|
60
|
-
--base-transparent-16: hsl(
|
|
61
|
-
--base-transparent-16-light: hsl(
|
|
54
|
+
--base-transparent-4: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 4%);
|
|
55
|
+
--base-transparent-5: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 5%);
|
|
56
|
+
--base-transparent-6: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 6%);
|
|
57
|
+
--base-transparent-8: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 8%);
|
|
58
|
+
--base-transparent-10: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 10%);
|
|
59
|
+
--base-transparent-12: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 12%);
|
|
60
|
+
--base-transparent-16: hsl(var(--color-dark-h) var(--color-dark-s) var(--color-dark-l) / 16%);
|
|
61
|
+
--base-transparent-16-light: hsl(var(--color-light-h) var(--color-light-s) var(--color-light-l) / 16%);
|
|
62
62
|
--color-primary: var(--color-dark);
|
|
63
63
|
--color-accent: var(--color-light);
|
|
64
64
|
--color-secondary: var(--color-base);
|
|
65
65
|
--color-success: var(--color-info-success);
|
|
66
66
|
--color-danger: var(--color-info-error);
|
|
67
67
|
--color-danger-dark: hsl(349deg 30% 30%);
|
|
68
|
-
--color-danger-light: hsl(
|
|
68
|
+
--color-danger-light: hsl(var(--color-info-error-h) var(--color-info-error-s) var(--color-info-error-l) / 40%);
|
|
69
69
|
--text-color-primary: var(--color-dark);
|
|
70
70
|
--text-color-secondary: var(--color-base-600);
|
|
71
71
|
--bg-element-focus: var(--color-base-50);
|
|
@@ -87,9 +87,14 @@
|
|
|
87
87
|
--text-heading-secondary: 20px;
|
|
88
88
|
--text-heading-page: var(--text-heading);
|
|
89
89
|
--text-heading-view: var(--text-heading-secondary);
|
|
90
|
-
--text-heading-sm: 16px;
|
|
91
|
-
--text-heading-xs: 14px;
|
|
92
90
|
--text-heading-2xs: 12px;
|
|
91
|
+
--text-heading-xs: 14px;
|
|
92
|
+
--text-heading-sm: 16px;
|
|
93
|
+
--text-heading-md: var(--text-heading);
|
|
94
|
+
--text-heading-lg: 36px;
|
|
95
|
+
--text-heading-xl: 48px;
|
|
96
|
+
--text-heading-2xl: 56px;
|
|
97
|
+
--text-heading-3xl: 64px;
|
|
93
98
|
--font-weight-normal: 460;
|
|
94
99
|
--font-weight-bold: 540;
|
|
95
100
|
--spacing-4xs: 2px;
|
|
@@ -198,16 +203,16 @@
|
|
|
198
203
|
--button-border-color-ghost-active: var(--color-base-800);
|
|
199
204
|
}
|
|
200
205
|
.Layer__component *::-webkit-scrollbar {
|
|
201
|
-
width: 6px;
|
|
202
206
|
height: 6px;
|
|
207
|
+
width: 6px;
|
|
203
208
|
}
|
|
204
209
|
.Layer__component *::-webkit-scrollbar-track {
|
|
205
|
-
background: #f1f1f1;
|
|
206
210
|
border-radius: 4px;
|
|
211
|
+
background: #f1f1f1;
|
|
207
212
|
}
|
|
208
213
|
.Layer__component *::-webkit-scrollbar-thumb {
|
|
209
|
-
background: #e2e2e2;
|
|
210
214
|
border-radius: 4px;
|
|
215
|
+
background: #e2e2e2;
|
|
211
216
|
}
|
|
212
217
|
.Layer__component *::-webkit-scrollbar-thumb:hover {
|
|
213
218
|
background: #999;
|
|
@@ -223,27 +228,27 @@
|
|
|
223
228
|
stroke: var(--color-base-1000);
|
|
224
229
|
}
|
|
225
230
|
.Layer__actionable-list {
|
|
226
|
-
list-style: none;
|
|
227
|
-
margin: 0;
|
|
228
231
|
padding: 0;
|
|
232
|
+
margin: 0;
|
|
233
|
+
list-style: none;
|
|
229
234
|
}
|
|
230
235
|
.Layer__actionable-list li {
|
|
231
|
-
padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
|
|
232
|
-
gap: var(--spacing-2xs);
|
|
233
|
-
border-radius: var(--spacing-xs);
|
|
234
236
|
box-sizing: border-box;
|
|
235
|
-
font-size: 12px;
|
|
236
|
-
cursor: pointer;
|
|
237
237
|
display: flex;
|
|
238
|
+
gap: var(--spacing-2xs);
|
|
238
239
|
align-items: center;
|
|
239
240
|
justify-content: space-between;
|
|
241
|
+
padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
|
|
242
|
+
border-radius: var(--spacing-xs);
|
|
243
|
+
cursor: pointer;
|
|
244
|
+
font-size: 12px;
|
|
240
245
|
}
|
|
241
246
|
.Layer__actionable-list li .Layer__actionable-list__content {
|
|
242
247
|
display: flex;
|
|
243
248
|
flex-direction: column;
|
|
249
|
+
gap: var(--spacing-2xs);
|
|
244
250
|
align-items: flex-start;
|
|
245
251
|
max-width: 36ch;
|
|
246
|
-
gap: var(--spacing-2xs);
|
|
247
252
|
}
|
|
248
253
|
.Layer__actionable-list li .Layer__actionable-list__content .Layer__actionable-list__content-description {
|
|
249
254
|
color: var(--color-base-500);
|
|
@@ -258,28 +263,28 @@
|
|
|
258
263
|
background-color: var(--color-base-50);
|
|
259
264
|
}
|
|
260
265
|
.Layer__actionable-list .Layer__actionable-list__select {
|
|
261
|
-
width: 18px;
|
|
262
|
-
height: 18px;
|
|
263
266
|
display: flex;
|
|
267
|
+
height: 18px;
|
|
268
|
+
width: 18px;
|
|
264
269
|
border-radius: 50%;
|
|
265
270
|
border: 1px solid var(--color-base-300);
|
|
266
271
|
}
|
|
267
272
|
.Layer__actionable-list .Layer__actionable-list__select.Layer__actionable-list__select--selected {
|
|
268
|
-
border: 1px solid var(--color-info-success);
|
|
269
|
-
color: var(--color-info-success);
|
|
270
|
-
background-color: var(--color-info-success-bg);
|
|
271
273
|
align-items: center;
|
|
272
274
|
justify-content: center;
|
|
275
|
+
border: 1px solid var(--color-info-success);
|
|
276
|
+
background-color: var(--color-info-success-bg);
|
|
277
|
+
color: var(--color-info-success);
|
|
273
278
|
}
|
|
274
279
|
.Layer__actionable_row {
|
|
275
280
|
display: flex;
|
|
276
|
-
|
|
281
|
+
gap: var(--spacing-md);
|
|
277
282
|
align-items: center;
|
|
278
283
|
justify-content: space-between;
|
|
279
|
-
|
|
280
|
-
border-radius:
|
|
284
|
+
padding: var(--spacing-md);
|
|
285
|
+
border-radius: 8px;
|
|
286
|
+
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
281
287
|
background: var(--color-base-0);
|
|
282
|
-
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
283
288
|
container-type: inline-size;
|
|
284
289
|
}
|
|
285
290
|
@container (max-width: 30rem) {
|
|
@@ -293,25 +298,25 @@
|
|
|
293
298
|
}
|
|
294
299
|
.Layer__actionable_row__main {
|
|
295
300
|
display: flex;
|
|
296
|
-
align-items: center;
|
|
297
301
|
gap: var(--spacing-md);
|
|
302
|
+
align-items: center;
|
|
298
303
|
}
|
|
299
304
|
.Layer__actionable_row__icon {
|
|
300
305
|
display: flex;
|
|
301
|
-
width: 32px;
|
|
302
|
-
height: 32px;
|
|
303
|
-
background-color: var(--color-base-100);
|
|
304
|
-
border-radius: var(--border-radius-3xs);
|
|
305
306
|
align-items: center;
|
|
306
307
|
justify-content: center;
|
|
307
|
-
|
|
308
|
+
height: 32px;
|
|
309
|
+
width: 32px;
|
|
310
|
+
border-radius: var(--border-radius-3xs);
|
|
311
|
+
box-shadow: 0 0 3px 0 var(--base-transparent-4) inset;
|
|
312
|
+
background-color: var(--color-base-100);
|
|
308
313
|
}
|
|
309
314
|
.Layer__actionable_row__action {
|
|
310
315
|
display: flex;
|
|
311
316
|
}
|
|
312
317
|
.Layer__actionable_row__description {
|
|
313
|
-
color: var(--color-base-500);
|
|
314
318
|
font-size: var(--text-sm);
|
|
319
|
+
color: var(--color-base-500);
|
|
315
320
|
}
|
|
316
321
|
@keyframes Layer__rotate {
|
|
317
322
|
from {
|
|
@@ -400,17 +405,17 @@
|
|
|
400
405
|
display: flex;
|
|
401
406
|
align-items: center;
|
|
402
407
|
justify-content: space-between;
|
|
408
|
+
min-height: 52px;
|
|
409
|
+
padding: var(--spacing-3xs) var(--spacing-sm);
|
|
410
|
+
border-radius: var(--border-radius-xs);
|
|
411
|
+
box-shadow: 0 0 0 3px var(--color-base-300);
|
|
403
412
|
background-color: var(--color-base-800);
|
|
404
413
|
color: var(--color-base-50);
|
|
405
|
-
border-radius: var(--border-radius-xs);
|
|
406
|
-
padding: var(--spacing-3xs) var(--spacing-sm);
|
|
407
|
-
min-height: 52px;
|
|
408
|
-
box-shadow: 0px 0px 0px 3px var(--color-base-300);
|
|
409
414
|
}
|
|
410
415
|
.Layer__bar-banner__left-col {
|
|
411
416
|
display: flex;
|
|
412
|
-
align-items: center;
|
|
413
417
|
gap: var(--spacing-md);
|
|
418
|
+
align-items: center;
|
|
414
419
|
}
|
|
415
420
|
.Layer__bar-banner__text-container__desc {
|
|
416
421
|
color: var(--color-base-300);
|
|
@@ -418,8 +423,8 @@
|
|
|
418
423
|
@container (max-width: 560px) {
|
|
419
424
|
.Layer__bar-banner--bookkeeping {
|
|
420
425
|
flex-direction: column;
|
|
421
|
-
align-items: flex-start;
|
|
422
426
|
gap: var(--spacing-sm);
|
|
427
|
+
align-items: flex-start;
|
|
423
428
|
padding: var(--spacing-sm);
|
|
424
429
|
}
|
|
425
430
|
.Layer__bar-banner--bookkeeping .Layer__icon-box {
|
|
@@ -771,15 +776,15 @@
|
|
|
771
776
|
display: flex;
|
|
772
777
|
flex-direction: column;
|
|
773
778
|
border-radius: var(--spacing-sm);
|
|
774
|
-
background: var(--color-base-0);
|
|
775
779
|
box-shadow:
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
780
|
+
0 4px 12px 0 var(--base-transparent-8),
|
|
781
|
+
0 2px 4px 0 var(--base-transparent-6),
|
|
782
|
+
0 0 0 1px var(--base-transparent-4);
|
|
783
|
+
background: var(--color-base-0);
|
|
779
784
|
}
|
|
780
785
|
.Layer__component .recharts-responsive-container {
|
|
781
|
-
padding: 4px;
|
|
782
786
|
box-sizing: border-box;
|
|
787
|
+
padding: 4px;
|
|
783
788
|
border-radius: var(--border-radius-xs);
|
|
784
789
|
}
|
|
785
790
|
.Layer__component .recharts-responsive-container .recharts-cartesian-axis-line {
|
|
@@ -798,31 +803,31 @@
|
|
|
798
803
|
min-height: 300px;
|
|
799
804
|
}
|
|
800
805
|
.Layer__chart-legend-list {
|
|
801
|
-
margin: 0;
|
|
802
|
-
padding: 0;
|
|
803
806
|
display: flex;
|
|
807
|
+
gap: var(--spacing-sm);
|
|
804
808
|
align-items: center;
|
|
809
|
+
justify-content: flex-end;
|
|
810
|
+
padding: 0;
|
|
811
|
+
margin: 0;
|
|
805
812
|
font-size: 12px;
|
|
806
|
-
gap: var(--spacing-sm);
|
|
807
813
|
list-style: none;
|
|
808
|
-
justify-content: flex-end;
|
|
809
814
|
}
|
|
810
815
|
.Layer__chart__tooltip {
|
|
811
|
-
background-color: var(--color-base-1000);
|
|
812
816
|
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
813
|
-
color: var(--color-base-500);
|
|
814
817
|
border-radius: var(--border-radius-3xs);
|
|
818
|
+
background-color: var(--color-base-1000);
|
|
815
819
|
font-size: var(--text-sm);
|
|
820
|
+
color: var(--color-base-500);
|
|
816
821
|
}
|
|
817
822
|
.Layer__chart__tooltip-list {
|
|
818
|
-
margin: 0;
|
|
819
823
|
padding: 0;
|
|
824
|
+
margin: 0;
|
|
820
825
|
}
|
|
821
826
|
.Layer__chart__tooltip-list li {
|
|
822
|
-
list-style: none;
|
|
823
827
|
display: flex;
|
|
824
|
-
justify-content: space-between;
|
|
825
828
|
column-gap: var(--spacing-sm);
|
|
829
|
+
justify-content: space-between;
|
|
830
|
+
list-style: none;
|
|
826
831
|
}
|
|
827
832
|
.Layer__chart__tooltip-list .Layer__chart__tooltip-label {
|
|
828
833
|
color: var(--color-base-500);
|
|
@@ -846,7 +851,7 @@
|
|
|
846
851
|
}
|
|
847
852
|
.Layer__hover-menu.Layer__hover-menu--open .Layer__hover-menu__list-wrapper {
|
|
848
853
|
top: 100%;
|
|
849
|
-
right:
|
|
854
|
+
right: 0;
|
|
850
855
|
opacity: 1;
|
|
851
856
|
touch-action: auto;
|
|
852
857
|
pointer-events: auto;
|
|
@@ -855,67 +860,67 @@
|
|
|
855
860
|
display: flex;
|
|
856
861
|
align-items: center;
|
|
857
862
|
justify-content: center;
|
|
858
|
-
cursor: pointer;
|
|
859
863
|
width: 100%;
|
|
864
|
+
cursor: pointer;
|
|
860
865
|
}
|
|
861
866
|
.Layer__hover-menu .Layer__hover-menu__list-wrapper {
|
|
862
867
|
position: absolute;
|
|
863
868
|
z-index: 99;
|
|
864
869
|
top: 80%;
|
|
865
870
|
right: -8px;
|
|
866
|
-
|
|
871
|
+
display: flex;
|
|
872
|
+
justify-content: stretch;
|
|
867
873
|
min-width: 160px;
|
|
874
|
+
padding-top: var(--spacing-xs);
|
|
868
875
|
touch-action: none;
|
|
869
876
|
pointer-events: none;
|
|
870
877
|
opacity: 0;
|
|
871
|
-
display: flex;
|
|
872
|
-
justify-content: stretch;
|
|
873
878
|
transition: all 0.15s ease-out;
|
|
874
879
|
}
|
|
875
880
|
.Layer__hover-menu .Layer__hover-menu__list-wrapper .Layer__hover-menu__list {
|
|
876
|
-
|
|
881
|
+
box-sizing: border-box;
|
|
877
882
|
display: flex;
|
|
883
|
+
flex: 1;
|
|
878
884
|
flex-direction: column;
|
|
879
885
|
gap: var(--spacing-3xs);
|
|
886
|
+
padding: var(--spacing-3xs);
|
|
880
887
|
border-radius: var(--spacing-xs);
|
|
881
|
-
background: var(--color-base-0);
|
|
882
888
|
box-shadow:
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
box-sizing: border-box;
|
|
889
|
+
0 0 0 1px rgba(25, 25, 25, 0.06),
|
|
890
|
+
0 4px 12px 0 var(--base-transparent-1, rgba(16, 24, 40, 0.01)),
|
|
891
|
+
0 2px 4px 0 rgba(25, 25, 25, 0.06);
|
|
887
892
|
margin: 0;
|
|
888
|
-
|
|
893
|
+
background: var(--color-base-0);
|
|
889
894
|
list-style: none;
|
|
890
895
|
}
|
|
891
896
|
.Layer__hover-menu .Layer__hover-menu__list-wrapper .Layer__hover-menu__list .Layer__hover-menu__list-item {
|
|
897
|
+
display: flex;
|
|
898
|
+
align-items: center;
|
|
892
899
|
padding: var(--spacing-3xs);
|
|
893
900
|
padding-left: var(--spacing-xs);
|
|
894
901
|
border-radius: var(--spacing-2xs);
|
|
895
902
|
color: var(--color-base-500);
|
|
896
903
|
transition: all 0.2s ease-in-out;
|
|
897
|
-
display: flex;
|
|
898
|
-
align-items: center;
|
|
899
904
|
}
|
|
900
905
|
.Layer__hover-menu .Layer__hover-menu__list-wrapper .Layer__hover-menu__list .Layer__hover-menu__list-item .Layer__hover-menu__list-item-button {
|
|
901
|
-
|
|
902
|
-
background: none;
|
|
906
|
+
width: 100%;
|
|
903
907
|
border: none;
|
|
904
908
|
outline: none;
|
|
905
|
-
|
|
909
|
+
background: none;
|
|
910
|
+
cursor: pointer;
|
|
906
911
|
font-size: var(--text-sm);
|
|
912
|
+
line-height: normal;
|
|
907
913
|
font-family: inherit;
|
|
908
|
-
font-feature-settings: inherit;
|
|
909
914
|
font-weight: 500;
|
|
910
|
-
|
|
911
|
-
|
|
915
|
+
text-align: start;
|
|
916
|
+
color: inherit;
|
|
917
|
+
font-feature-settings: inherit;
|
|
912
918
|
letter-spacing: -0.06px;
|
|
913
|
-
cursor: pointer;
|
|
914
919
|
}
|
|
915
920
|
.Layer__hover-menu .Layer__hover-menu__list-wrapper .Layer__hover-menu__list .Layer__hover-menu__list-item:hover {
|
|
916
921
|
background: var(--color-base-50);
|
|
917
|
-
color: var(--color-base-800);
|
|
918
922
|
font-weight: 540;
|
|
923
|
+
color: var(--color-base-800);
|
|
919
924
|
}
|
|
920
925
|
.Layer__component {
|
|
921
926
|
max-width: 1406px;
|
|
@@ -993,14 +998,14 @@
|
|
|
993
998
|
}
|
|
994
999
|
.Layer__datetime {
|
|
995
1000
|
display: inline-flex;
|
|
996
|
-
align-items: center;
|
|
997
1001
|
gap: var(--spacing-md);
|
|
1002
|
+
align-items: center;
|
|
998
1003
|
}
|
|
999
1004
|
.Layer__DatePickerModeSelector__container {
|
|
1000
1005
|
display: flex;
|
|
1001
1006
|
justify-content: flex-end;
|
|
1002
|
-
padding-inline: var(--spacing-xs);
|
|
1003
1007
|
padding-block: var(--spacing-xs);
|
|
1008
|
+
padding-inline: var(--spacing-xs);
|
|
1004
1009
|
}
|
|
1005
1010
|
.Layer__datepicker__wrapper,
|
|
1006
1011
|
#Layer__datepicker__portal {
|
|
@@ -2975,13 +2980,13 @@
|
|
|
2975
2980
|
padding: var(--spacing-xs) var(--spacing-md);
|
|
2976
2981
|
}
|
|
2977
2982
|
.Layer__file-thumb {
|
|
2983
|
+
box-sizing: border-box;
|
|
2984
|
+
position: relative;
|
|
2978
2985
|
display: flex;
|
|
2986
|
+
gap: var(--spacing-2xs);
|
|
2979
2987
|
align-items: flex-start;
|
|
2980
2988
|
justify-content: space-between;
|
|
2981
2989
|
min-height: 38px;
|
|
2982
|
-
gap: var(--spacing-2xs);
|
|
2983
|
-
position: relative;
|
|
2984
|
-
box-sizing: border-box;
|
|
2985
2990
|
container-type: normal;
|
|
2986
2991
|
}
|
|
2987
2992
|
.Layer__file-thumb:not(.Layer__file-thumb--floating) {
|
|
@@ -2994,17 +2999,17 @@
|
|
|
2994
2999
|
border-bottom: 1px solid var(--color-base-300);
|
|
2995
3000
|
}
|
|
2996
3001
|
.Layer__file-thumb:not(.Layer__file-thumb--floating) .Layer__file-thumb__actions:not(.Layer__file-thumb__actions--floating) {
|
|
2997
|
-
padding-left: 0;
|
|
2998
3002
|
padding-right: 0;
|
|
3003
|
+
padding-left: 0;
|
|
2999
3004
|
margin-left: -6px;
|
|
3000
3005
|
}
|
|
3001
3006
|
.Layer__file-thumb:not(.Layer__file-thumb--floating) .Layer__file-thumb__actions:not(.Layer__file-thumb__actions--floating) .Layer__icon-btn {
|
|
3002
|
-
width: 26px;
|
|
3003
3007
|
height: 26px;
|
|
3008
|
+
width: 26px;
|
|
3004
3009
|
}
|
|
3005
3010
|
.Layer__file-thumb:not(.Layer__file-thumb--floating) .Layer__file-thumb__actions:not(.Layer__file-thumb__actions--floating) .Layer__icon-btn svg {
|
|
3006
|
-
width: 14px;
|
|
3007
3011
|
height: 14px;
|
|
3012
|
+
width: 14px;
|
|
3008
3013
|
}
|
|
3009
3014
|
}
|
|
3010
3015
|
.Layer__file-thumb__main {
|
|
@@ -3027,55 +3032,55 @@
|
|
|
3027
3032
|
color: var(--color-danger);
|
|
3028
3033
|
}
|
|
3029
3034
|
.Layer__file-thumb__actions.Layer__file-thumb__actions--floating {
|
|
3030
|
-
display: none;
|
|
3031
3035
|
position: absolute;
|
|
3032
3036
|
top: -20px;
|
|
3033
3037
|
right: -10px;
|
|
3034
|
-
|
|
3038
|
+
display: none;
|
|
3035
3039
|
border-radius: var(--border-radius-3xs);
|
|
3036
|
-
box-shadow:
|
|
3040
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
3041
|
+
background-color: var(--color-base-0);
|
|
3037
3042
|
transform: scale(0.8);
|
|
3038
3043
|
}
|
|
3039
3044
|
.Layer__file-thumb:hover .Layer__file-thumb__actions--floating {
|
|
3040
3045
|
display: flex;
|
|
3041
3046
|
}
|
|
3042
3047
|
.Layer__file-thumb__img {
|
|
3043
|
-
width: 100%;
|
|
3044
3048
|
height: 100%;
|
|
3045
3049
|
height: 38px;
|
|
3050
|
+
width: 100%;
|
|
3046
3051
|
width: 38px;
|
|
3047
3052
|
border-radius: var(--border-radius-3xs, 4px);
|
|
3053
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
3048
3054
|
background: var(--color-base-300);
|
|
3049
|
-
box-shadow: 0px 1px 2px 0px var(--base-transparent-6), 0px 0px 0px 1px var(--color-base-300);
|
|
3050
3055
|
}
|
|
3051
3056
|
.Layer__file-thumb__img img {
|
|
3052
|
-
width: 100%;
|
|
3053
3057
|
height: 100%;
|
|
3058
|
+
width: 100%;
|
|
3054
3059
|
object-fit: cover;
|
|
3055
3060
|
}
|
|
3056
3061
|
.Layer__file-thumb__details {
|
|
3057
3062
|
display: flex;
|
|
3058
3063
|
flex-direction: column;
|
|
3059
|
-
align-items: flex-start;
|
|
3060
3064
|
gap: var(--spacing-4xs);
|
|
3061
|
-
|
|
3065
|
+
align-items: flex-start;
|
|
3062
3066
|
justify-content: flex-start;
|
|
3063
3067
|
padding: var(--spacing-4xs) var(--spacing-2xs);
|
|
3068
|
+
font-size: var(--text-sm);
|
|
3064
3069
|
}
|
|
3065
3070
|
.Layer__file-thumb__details__date {
|
|
3066
3071
|
color: var(--color-base-600);
|
|
3067
3072
|
}
|
|
3068
3073
|
.Layer__file-thumb__details__uploading {
|
|
3069
3074
|
display: flex;
|
|
3070
|
-
align-items: center;
|
|
3071
3075
|
gap: var(--spacing-3xs);
|
|
3076
|
+
align-items: center;
|
|
3072
3077
|
color: var(--color-info-fg);
|
|
3073
3078
|
}
|
|
3074
3079
|
.Layer__file-thumb__details__error {
|
|
3075
3080
|
color: var(--color-danger);
|
|
3076
3081
|
}
|
|
3077
3082
|
.Layer__file-thumb__details__name {
|
|
3078
|
-
|
|
3083
|
+
overflow-wrap: break-word;
|
|
3079
3084
|
}
|
|
3080
3085
|
.Layer__header {
|
|
3081
3086
|
display: flex;
|
|
@@ -3084,37 +3089,37 @@
|
|
|
3084
3089
|
}
|
|
3085
3090
|
.Layer__header--sticky {
|
|
3086
3091
|
position: sticky;
|
|
3092
|
+
z-index: 10;
|
|
3087
3093
|
top: 0;
|
|
3088
3094
|
background: rgba(255, 255, 255, 0.5);
|
|
3089
3095
|
backdrop-filter: blur(6px);
|
|
3090
|
-
z-index: 10;
|
|
3091
3096
|
}
|
|
3092
3097
|
.Layer__header--top-rounded {
|
|
3093
3098
|
border-top-left-radius: var(--border-radius-sm);
|
|
3094
3099
|
border-top-right-radius: var(--border-radius-sm);
|
|
3095
3100
|
}
|
|
3096
3101
|
.Layer__header__row {
|
|
3102
|
+
box-sizing: border-box;
|
|
3097
3103
|
display: flex;
|
|
3098
|
-
|
|
3104
|
+
gap: var(--spacing-sm);
|
|
3099
3105
|
align-items: center;
|
|
3100
3106
|
justify-content: space-between;
|
|
3101
|
-
|
|
3102
|
-
border-bottom: 1px solid var(--border-color);
|
|
3107
|
+
width: 100%;
|
|
3103
3108
|
padding: 0 var(--spacing-md);
|
|
3104
|
-
|
|
3109
|
+
border-bottom: 1px solid var(--border-color);
|
|
3105
3110
|
}
|
|
3106
3111
|
.Layer__header__row[data-direction=col] {
|
|
3107
3112
|
flex-direction: column;
|
|
3113
|
+
gap: var(--spacing-md);
|
|
3108
3114
|
align-items: flex-start;
|
|
3109
3115
|
padding-top: var(--spacing-md);
|
|
3110
3116
|
padding-bottom: var(--spacing-md);
|
|
3111
|
-
gap: var(--spacing-md);
|
|
3112
3117
|
}
|
|
3113
3118
|
.Layer__header__row[data-direction=col] .Layer__header__col {
|
|
3114
|
-
padding-top: 0;
|
|
3115
|
-
padding-bottom: 0;
|
|
3116
3119
|
min-height: 36px;
|
|
3117
3120
|
width: 100%;
|
|
3121
|
+
padding-top: 0;
|
|
3122
|
+
padding-bottom: 0;
|
|
3118
3123
|
}
|
|
3119
3124
|
@container (min-width: 1400px) {
|
|
3120
3125
|
.Layer__header__row {
|
|
@@ -3122,15 +3127,15 @@
|
|
|
3122
3127
|
}
|
|
3123
3128
|
}
|
|
3124
3129
|
.Layer__header__col {
|
|
3130
|
+
box-sizing: border-box;
|
|
3125
3131
|
display: flex;
|
|
3126
|
-
align-items: center;
|
|
3127
3132
|
gap: var(--spacing-sm);
|
|
3133
|
+
align-items: center;
|
|
3128
3134
|
min-height: 68px;
|
|
3129
|
-
box-sizing: border-box;
|
|
3130
3135
|
}
|
|
3131
3136
|
.Layer__header__col[data-no-padding=true] {
|
|
3132
|
-
padding-left: 0;
|
|
3133
3137
|
padding-right: 0;
|
|
3138
|
+
padding-left: 0;
|
|
3134
3139
|
}
|
|
3135
3140
|
::placeholder {
|
|
3136
3141
|
color: var(--input-placeholder-color);
|
|
@@ -3712,15 +3717,15 @@
|
|
|
3712
3717
|
transform 500ms ease-out;
|
|
3713
3718
|
}
|
|
3714
3719
|
.Layer__onboarding__content {
|
|
3720
|
+
box-sizing: border-box;
|
|
3715
3721
|
display: flex;
|
|
3716
3722
|
flex-direction: column;
|
|
3717
3723
|
align-items: center;
|
|
3718
3724
|
padding: var(--spacing-lg) var(--spacing-md) var(--spacing-3xl);
|
|
3719
|
-
box-sizing: border-box;
|
|
3720
3725
|
}
|
|
3721
3726
|
.Layer__onboarding .Layer__actionable_row {
|
|
3722
|
-
max-width: 90%;
|
|
3723
3727
|
width: 640px;
|
|
3728
|
+
max-width: 90%;
|
|
3724
3729
|
}
|
|
3725
3730
|
.Layer__table {
|
|
3726
3731
|
width: 100%;
|
|
@@ -4044,11 +4049,13 @@
|
|
|
4044
4049
|
}
|
|
4045
4050
|
@container (min-width: 1400px) {
|
|
4046
4051
|
.Layer__table tr td:first-child .Layer__table-cell-content,
|
|
4047
|
-
.Layer__table tr th:first-child.Layer__table-cell .Layer__table-cell-content
|
|
4052
|
+
.Layer__table tr th:first-child.Layer__table-cell .Layer__table-cell-content,
|
|
4053
|
+
.Layer__table tr th:first-child.Layer__table-header .Layer__table-cell-content {
|
|
4048
4054
|
padding-left: var(--spacing-xl);
|
|
4049
4055
|
}
|
|
4050
4056
|
.Layer__table tr td:last-child .Layer__table-cell-content,
|
|
4051
|
-
.Layer__table tr th:last-child.Layer__table-cell .Layer__table-cell-content
|
|
4057
|
+
.Layer__table tr th:last-child.Layer__table-cell .Layer__table-cell-content,
|
|
4058
|
+
.Layer__table tr th:last-child.Layer__table-header .Layer__table-cell-content {
|
|
4052
4059
|
padding-right: var(--spacing-xl);
|
|
4053
4060
|
}
|
|
4054
4061
|
}
|
|
@@ -4082,34 +4089,34 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4082
4089
|
border-bottom: 1px solid var(--border-color);
|
|
4083
4090
|
}
|
|
4084
4091
|
.Layer__heading {
|
|
4085
|
-
|
|
4092
|
+
align-self: center;
|
|
4093
|
+
margin: 0;
|
|
4086
4094
|
font-size: var(--text-heading);
|
|
4095
|
+
line-height: 140%;
|
|
4087
4096
|
font-weight: var(--font-weight-bold);
|
|
4097
|
+
color: var(--text-color-primary);
|
|
4088
4098
|
font-variation-settings: "wght" var(--font-weight-bold);
|
|
4089
|
-
line-height: 140%;
|
|
4090
4099
|
letter-spacing: -0.12px;
|
|
4091
|
-
margin: 0;
|
|
4092
|
-
align-self: center;
|
|
4093
4100
|
}
|
|
4094
4101
|
.Layer__heading--secondary,
|
|
4095
4102
|
.Layer__heading.Layer__heading--secondary {
|
|
4096
|
-
color: var(--text-color-primary);
|
|
4097
4103
|
font-size: var(--text-heading-sm);
|
|
4098
4104
|
font-weight: var(--font-weight-bold);
|
|
4105
|
+
color: var(--text-color-primary);
|
|
4099
4106
|
font-variation-settings: "wght" var(--font-weight-bold);
|
|
4100
4107
|
}
|
|
4101
4108
|
.Layer__heading--view,
|
|
4102
4109
|
.Layer__heading.Layer__heading--view {
|
|
4103
|
-
color: var(--text-color-primary);
|
|
4104
4110
|
font-size: var(--text-heading-view);
|
|
4105
4111
|
font-weight: var(--font-weight-bold);
|
|
4112
|
+
color: var(--text-color-primary);
|
|
4106
4113
|
font-variation-settings: "wght" var(--font-weight-bold);
|
|
4107
4114
|
}
|
|
4108
4115
|
.Layer__heading--page,
|
|
4109
4116
|
.Layer__heading.Layer__heading--page {
|
|
4110
|
-
color: var(--text-color-primary);
|
|
4111
4117
|
font-size: var(--text-heading-page);
|
|
4112
4118
|
font-weight: var(--font-weight-bold);
|
|
4119
|
+
color: var(--text-color-primary);
|
|
4113
4120
|
font-variation-settings: "wght" var(--font-weight-bold);
|
|
4114
4121
|
}
|
|
4115
4122
|
.Layer__heading--left {
|
|
@@ -4122,6 +4129,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4122
4129
|
align-self: flex-end;
|
|
4123
4130
|
}
|
|
4124
4131
|
.Layer__text {
|
|
4132
|
+
margin: 0;
|
|
4133
|
+
line-height: 140%;
|
|
4125
4134
|
font-family: var(--font-family);
|
|
4126
4135
|
font-weight: var(--font-weight-normal);
|
|
4127
4136
|
font-variant-numeric: lining-nums proportional-nums;
|
|
@@ -4130,8 +4139,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4130
4139
|
"cv05" on,
|
|
4131
4140
|
"cv08" on,
|
|
4132
4141
|
"ss03" on;
|
|
4133
|
-
line-height: 140%;
|
|
4134
|
-
margin: 0;
|
|
4135
4142
|
}
|
|
4136
4143
|
.Layer__text--sm {
|
|
4137
4144
|
font-size: var(--text-sm);
|
|
@@ -4183,10 +4190,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4183
4190
|
text-overflow: ellipsis;
|
|
4184
4191
|
}
|
|
4185
4192
|
.Layer__label {
|
|
4186
|
-
|
|
4193
|
+
overflow: hidden;
|
|
4187
4194
|
font-weight: var(--font-weight-normal);
|
|
4195
|
+
color: var(--color-base-500);
|
|
4188
4196
|
white-space: nowrap;
|
|
4189
|
-
overflow: hidden;
|
|
4190
4197
|
}
|
|
4191
4198
|
.Layer__justify--center {
|
|
4192
4199
|
justify-content: center;
|
|
@@ -4335,8 +4342,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4335
4342
|
.Layer__view .Layer__view-header__title {
|
|
4336
4343
|
display: flex;
|
|
4337
4344
|
align-items: center;
|
|
4338
|
-
width: 100%;
|
|
4339
4345
|
min-height: 44px;
|
|
4346
|
+
width: 100%;
|
|
4340
4347
|
padding: var(--spacing-md) var(--spacing-sm);
|
|
4341
4348
|
}
|
|
4342
4349
|
.Layer__view .Layer__view-header__content {
|
|
@@ -4493,6 +4500,38 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4493
4500
|
height: 1rem;
|
|
4494
4501
|
place-self: center;
|
|
4495
4502
|
}
|
|
4503
|
+
.Layer__UI__Calendar {
|
|
4504
|
+
width: min-content;
|
|
4505
|
+
}
|
|
4506
|
+
.Layer__UI__CalendarGrid {
|
|
4507
|
+
border-collapse: collapse;
|
|
4508
|
+
}
|
|
4509
|
+
.Layer__UI__CalendarCell,
|
|
4510
|
+
.Layer__UI__CalendarHeaderCell {
|
|
4511
|
+
height: 2rem;
|
|
4512
|
+
width: 2rem;
|
|
4513
|
+
border-radius: var(--border-radius-3xs);
|
|
4514
|
+
font-size: var(--text-sm);
|
|
4515
|
+
line-height: 2rem;
|
|
4516
|
+
text-align: center;
|
|
4517
|
+
}
|
|
4518
|
+
.Layer__UI__CalendarCell {
|
|
4519
|
+
transition: background-color 0.2s ease, color 0.2s ease;
|
|
4520
|
+
}
|
|
4521
|
+
.Layer__UI__CalendarCell[data-hovered] {
|
|
4522
|
+
background-color: var(--color-base-400);
|
|
4523
|
+
}
|
|
4524
|
+
.Layer__UI__CalendarCell[data-selected] {
|
|
4525
|
+
background-color: var(--color-base-900);
|
|
4526
|
+
color: var(--color-base-0);
|
|
4527
|
+
}
|
|
4528
|
+
.Layer__UI__CalendarCell[data-disabled] {
|
|
4529
|
+
color: var(--color-base-400);
|
|
4530
|
+
}
|
|
4531
|
+
.Layer__UI__CalendarCell[data-outside-month] {
|
|
4532
|
+
color: var(--color-base-0);
|
|
4533
|
+
transition: none;
|
|
4534
|
+
}
|
|
4496
4535
|
.Layer__Checkbox {
|
|
4497
4536
|
position: relative;
|
|
4498
4537
|
display: inline-flex;
|
|
@@ -4534,7 +4573,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4534
4573
|
outline: 1px solid var(--outline-active);
|
|
4535
4574
|
outline-offset: 2px;
|
|
4536
4575
|
}
|
|
4537
|
-
.Layer__Checkbox[data-selected] [slot=checkbox]
|
|
4576
|
+
.Layer__Checkbox[data-selected] [slot=checkbox],
|
|
4577
|
+
.Layer__Checkbox[data-indeterminate] [slot=checkbox] {
|
|
4538
4578
|
background-color: var(--fg-default);
|
|
4539
4579
|
color: var(--bg-default);
|
|
4540
4580
|
border-color: var(--fg-default);
|
|
@@ -4911,23 +4951,23 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4911
4951
|
animation-iteration-count: infinite;
|
|
4912
4952
|
}
|
|
4913
4953
|
.Layer__Menu {
|
|
4914
|
-
max-block-size: inherit;
|
|
4915
|
-
min-inline-size: 9rem;
|
|
4916
|
-
overflow: auto;
|
|
4917
4954
|
display: flex;
|
|
4918
4955
|
flex-direction: column;
|
|
4919
4956
|
gap: var(--spacing-3xs);
|
|
4957
|
+
overflow: auto;
|
|
4958
|
+
max-block-size: inherit;
|
|
4959
|
+
min-inline-size: 9rem;
|
|
4920
4960
|
padding: var(--spacing-3xs);
|
|
4921
|
-
border: 1px solid var(--border-color);
|
|
4922
4961
|
border-radius: var(--spacing-xs);
|
|
4923
|
-
|
|
4962
|
+
border: 1px solid var(--border-color);
|
|
4924
4963
|
outline: none;
|
|
4964
|
+
background: white;
|
|
4925
4965
|
}
|
|
4926
4966
|
.Layer__MenuItem {
|
|
4927
4967
|
display: flex;
|
|
4928
4968
|
align-items: center;
|
|
4929
|
-
padding-inline: var(--spacing-xs);
|
|
4930
4969
|
padding-block: var(--spacing-3xs);
|
|
4970
|
+
padding-inline: var(--spacing-xs);
|
|
4931
4971
|
border-radius: var(--spacing-2xs);
|
|
4932
4972
|
outline: none;
|
|
4933
4973
|
cursor: pointer;
|
|
@@ -4981,9 +5021,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4981
5021
|
block-size: min(42rem, 90%);
|
|
4982
5022
|
inline-size: min(36rem, 90%);
|
|
4983
5023
|
}
|
|
4984
|
-
.Layer__Modal[data-flex-block] {
|
|
4985
|
-
block-size: auto;
|
|
4986
|
-
}
|
|
4987
5024
|
.Layer__Modal[data-size=lg] {
|
|
4988
5025
|
inline-size: min(42rem, 90%);
|
|
4989
5026
|
}
|
|
@@ -5013,6 +5050,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5013
5050
|
.Layer__Modal[data-variant=mobile-drawer][data-exiting] {
|
|
5014
5051
|
animation: mobile-drawer-slide 200ms reverse ease-in;
|
|
5015
5052
|
}
|
|
5053
|
+
.Layer__Modal[data-flex-block] {
|
|
5054
|
+
block-size: auto;
|
|
5055
|
+
}
|
|
5016
5056
|
.Layer__Dialog {
|
|
5017
5057
|
display: flex;
|
|
5018
5058
|
flex-direction: column;
|
|
@@ -5090,16 +5130,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5090
5130
|
display: inline-flex;
|
|
5091
5131
|
flex-direction: row;
|
|
5092
5132
|
align-items: center;
|
|
5133
|
+
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
5134
|
+
border-radius: var(--badge-border-radius);
|
|
5093
5135
|
border: none;
|
|
5094
5136
|
outline: none;
|
|
5137
|
+
background-color: var(--badge-bg-color);
|
|
5095
5138
|
cursor: pointer;
|
|
5139
|
+
user-select: none;
|
|
5096
5140
|
font-size: var(--text-sm);
|
|
5097
|
-
background-color: var(--badge-bg-color);
|
|
5098
5141
|
color: var(--badge-color);
|
|
5099
|
-
border-radius: var(--badge-border-radius);
|
|
5100
|
-
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
5101
5142
|
white-space: nowrap;
|
|
5102
|
-
user-select: none;
|
|
5103
5143
|
}
|
|
5104
5144
|
.Layer__Pill svg {
|
|
5105
5145
|
margin-right: 0.25rem;
|
|
@@ -5436,14 +5476,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5436
5476
|
.Layer__UI__Table-TableHeader > tr {
|
|
5437
5477
|
height: inherit;
|
|
5438
5478
|
}
|
|
5479
|
+
.Layer__UI__Table-TableHeader--hidden {
|
|
5480
|
+
display: none;
|
|
5481
|
+
}
|
|
5439
5482
|
.Layer__UI__Table-Row {
|
|
5440
5483
|
height: 3.25rem;
|
|
5484
|
+
background-color: var(--color-base-200);
|
|
5441
5485
|
}
|
|
5442
5486
|
.Layer__UI__Table-Row:not(:last-child) .Layer__UI__Table-Cell {
|
|
5443
5487
|
border-bottom: 1px solid var(--color-base-300);
|
|
5444
5488
|
}
|
|
5445
|
-
.Layer__UI__Table-
|
|
5446
|
-
|
|
5489
|
+
.Layer__UI__Table-Row[data-depth="0"] {
|
|
5490
|
+
background-color: var(--color-base-0);
|
|
5491
|
+
}
|
|
5492
|
+
.Layer__UI__Table-Row[data-depth="1"] {
|
|
5493
|
+
background-color: var(--color-base-50);
|
|
5494
|
+
}
|
|
5495
|
+
.Layer__UI__Table-Row[data-depth="2"] {
|
|
5496
|
+
background-color: var(--color-base-100);
|
|
5497
|
+
}
|
|
5498
|
+
.Layer__UI__Table-Column {
|
|
5499
|
+
box-sizing: border-box;
|
|
5447
5500
|
display: flex;
|
|
5448
5501
|
align-items: center;
|
|
5449
5502
|
height: inherit;
|
|
@@ -5532,6 +5585,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5532
5585
|
color: var(--color-base-700);
|
|
5533
5586
|
text-wrap: pretty;
|
|
5534
5587
|
}
|
|
5588
|
+
.Layer__UI__Heading[data-variant=dark] {
|
|
5589
|
+
color: var(--color-base-900);
|
|
5590
|
+
}
|
|
5535
5591
|
.Layer__UI__Heading[data-variant=subtle] {
|
|
5536
5592
|
color: var(--fg-subtle);
|
|
5537
5593
|
}
|
|
@@ -5609,12 +5665,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5609
5665
|
.Layer__UI__Heading[data-size=sm] {
|
|
5610
5666
|
font-size: var(--text-heading-sm);
|
|
5611
5667
|
}
|
|
5612
|
-
.Layer__UI__Heading[data-size=
|
|
5668
|
+
.Layer__UI__Heading[data-size=md] {
|
|
5613
5669
|
font-size: var(--text-heading-secondary);
|
|
5614
5670
|
}
|
|
5615
|
-
.Layer__UI__Heading[data-size=
|
|
5671
|
+
.Layer__UI__Heading[data-size=lg] {
|
|
5616
5672
|
font-size: var(--text-heading);
|
|
5617
5673
|
}
|
|
5674
|
+
.Layer__UI__Heading[data-size=xl] {
|
|
5675
|
+
font-size: var(--text-heading-xl);
|
|
5676
|
+
}
|
|
5677
|
+
.Layer__UI__Heading[data-size="2xl"] {
|
|
5678
|
+
font-size: var(--text-heading-2xl);
|
|
5679
|
+
}
|
|
5680
|
+
.Layer__UI__Heading[data-size="3xl"] {
|
|
5681
|
+
font-size: var(--text-heading-3xl);
|
|
5682
|
+
}
|
|
5618
5683
|
.Layer__UI__Heading[data-align=left] {
|
|
5619
5684
|
text-align: left;
|
|
5620
5685
|
}
|
|
@@ -5635,8 +5700,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5635
5700
|
font-weight: var(--font-weight-bold);
|
|
5636
5701
|
}
|
|
5637
5702
|
.Layer__MoneyText {
|
|
5638
|
-
color: var(--color-base-800);
|
|
5639
5703
|
overflow-x: hidden;
|
|
5704
|
+
color: var(--color-base-800);
|
|
5640
5705
|
text-overflow: ellipsis;
|
|
5641
5706
|
}
|
|
5642
5707
|
.Layer__MoneyText[data-bold] {
|
|
@@ -5682,7 +5747,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5682
5747
|
.Layer__Label[data-variant=subtle],
|
|
5683
5748
|
.Layer__P[data-variant=subtle],
|
|
5684
5749
|
.Layer__Span[data-variant=subtle] {
|
|
5685
|
-
color: var(--
|
|
5750
|
+
color: var(--fg-subtle);
|
|
5686
5751
|
}
|
|
5687
5752
|
.Layer__Header[data-status=error],
|
|
5688
5753
|
.Layer__Label[data-status=error],
|
|
@@ -5704,6 +5769,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5704
5769
|
overflow: hidden;
|
|
5705
5770
|
text-overflow: ellipsis;
|
|
5706
5771
|
}
|
|
5772
|
+
.Layer__Header[data-size="2xs"],
|
|
5773
|
+
.Layer__Label[data-size="2xs"],
|
|
5774
|
+
.Layer__P[data-size="2xs"],
|
|
5775
|
+
.Layer__Span[data-size="2xs"] {
|
|
5776
|
+
font-size: var(--text-2xs);
|
|
5777
|
+
}
|
|
5707
5778
|
.Layer__Header[data-size=xs],
|
|
5708
5779
|
.Layer__Label[data-size=xs],
|
|
5709
5780
|
.Layer__P[data-size=xs],
|
|
@@ -5956,6 +6027,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5956
6027
|
.Layer__InvisibleDownload {
|
|
5957
6028
|
display: none;
|
|
5958
6029
|
}
|
|
6030
|
+
.Layer__call-booking {
|
|
6031
|
+
padding: var(--spacing-lg);
|
|
6032
|
+
}
|
|
6033
|
+
.Layer__call-booking .Layer__call-booking-details {
|
|
6034
|
+
width: 100%;
|
|
6035
|
+
}
|
|
6036
|
+
.Layer__call-booking .Layer__call-booking-actions {
|
|
6037
|
+
width: 100%;
|
|
6038
|
+
margin-top: var(--spacing-md);
|
|
6039
|
+
}
|
|
6040
|
+
.Layer__call-booking .Layer__call-booking-state {
|
|
6041
|
+
text-align: center;
|
|
6042
|
+
}
|
|
6043
|
+
@media (width <= 480px) {
|
|
6044
|
+
.Layer__call-booking {
|
|
6045
|
+
padding: var(--spacing-md);
|
|
6046
|
+
}
|
|
6047
|
+
}
|
|
5959
6048
|
.Layer__custom-account-form .Layer__custom-account-form__field > .Layer__input-tooltip {
|
|
5960
6049
|
display: flex;
|
|
5961
6050
|
flex: 1 1;
|
|
@@ -6114,8 +6203,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6114
6203
|
}
|
|
6115
6204
|
.Layer__due-status--sm {
|
|
6116
6205
|
flex-direction: row;
|
|
6117
|
-
align-items: center;
|
|
6118
6206
|
gap: var(--spacing-3xs);
|
|
6207
|
+
align-items: center;
|
|
6119
6208
|
}
|
|
6120
6209
|
.Layer__due-status[data-status=overdue] .Layer__due-status__title {
|
|
6121
6210
|
color: var(--color-info-error);
|
|
@@ -6135,8 +6224,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6135
6224
|
.Layer__BasicLinkedAccountContainer {
|
|
6136
6225
|
display: grid;
|
|
6137
6226
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
6138
|
-
padding-inline: var(--spacing-xs) var(--spacing-md);
|
|
6139
6227
|
padding-block: var(--spacing-xs);
|
|
6228
|
+
padding-inline: var(--spacing-xs) var(--spacing-md);
|
|
6140
6229
|
border-radius: var(--border-radius-xs);
|
|
6141
6230
|
border: 1px solid var(--outline-subtle);
|
|
6142
6231
|
}
|
|
@@ -6147,8 +6236,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6147
6236
|
display: flex;
|
|
6148
6237
|
align-items: center;
|
|
6149
6238
|
justify-content: center;
|
|
6150
|
-
width: 52px;
|
|
6151
6239
|
height: 28px;
|
|
6240
|
+
width: 52px;
|
|
6152
6241
|
padding: var(--spacing-3xs) 0;
|
|
6153
6242
|
border-radius: var(--border-radius-3xs);
|
|
6154
6243
|
background: var(--color-base-0);
|
|
@@ -6753,8 +6842,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6753
6842
|
}
|
|
6754
6843
|
}
|
|
6755
6844
|
.Layer__bills-list-item__separator {
|
|
6756
|
-
width: 1px;
|
|
6757
6845
|
height: 10px;
|
|
6846
|
+
width: 1px;
|
|
6758
6847
|
background-color: var(--color-base-400);
|
|
6759
6848
|
}
|
|
6760
6849
|
@container (max-width: 499px) {
|
|
@@ -6762,6 +6851,28 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6762
6851
|
font-size: var(--text-md);
|
|
6763
6852
|
}
|
|
6764
6853
|
}
|
|
6854
|
+
.Layer__CategorizationRulesTable {
|
|
6855
|
+
border: none;
|
|
6856
|
+
}
|
|
6857
|
+
.Layer__UI__Table__CategorizationRulesTable {
|
|
6858
|
+
table-layout: fixed;
|
|
6859
|
+
width: 100%;
|
|
6860
|
+
}
|
|
6861
|
+
.Layer__UI__Table__CategorizationRulesTable .Layer__UI__Table-Row,
|
|
6862
|
+
.Layer__UI__Table__CategorizationRulesTable .Layer__UI__Table-TableHeader > tr {
|
|
6863
|
+
display: grid;
|
|
6864
|
+
grid-template-columns: minmax(8rem, 45%) minmax(8rem, 45%) auto;
|
|
6865
|
+
}
|
|
6866
|
+
.Layer__UI__Table__CategorizationRulesTable .Layer__UI__Table-Row > *:last-child,
|
|
6867
|
+
.Layer__UI__Table__CategorizationRulesTable .Layer__UI__Table-TableHeader > tr > *:last-child {
|
|
6868
|
+
justify-content: end;
|
|
6869
|
+
}
|
|
6870
|
+
.Layer__bulk-actions-header__selection-container {
|
|
6871
|
+
height: 2.25rem;
|
|
6872
|
+
min-width: 11rem;
|
|
6873
|
+
border-radius: var(--border-radius-2xs);
|
|
6874
|
+
border: 1px solid var(--color-base-300);
|
|
6875
|
+
}
|
|
6765
6876
|
.Layer__InvoiceTable {
|
|
6766
6877
|
width: clamp(48rem, 100%, 1406px);
|
|
6767
6878
|
}
|
|
@@ -6983,17 +7094,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6983
7094
|
width: 100%;
|
|
6984
7095
|
}
|
|
6985
7096
|
.Layer__caobfb {
|
|
6986
|
-
padding-inline: var(--spacing-md);
|
|
6987
|
-
padding-block: var(--spacing-sm);
|
|
6988
7097
|
position: relative;
|
|
6989
7098
|
display: flex;
|
|
6990
7099
|
gap: var(--spacing-sm);
|
|
7100
|
+
max-height: 280px;
|
|
7101
|
+
padding-block: var(--spacing-sm);
|
|
7102
|
+
padding-inline: var(--spacing-md);
|
|
6991
7103
|
border-radius: var(--border-radius-xs);
|
|
6992
7104
|
border: 1px solid var(--color-base-100);
|
|
6993
7105
|
container-type: inline-size;
|
|
6994
7106
|
transition: all 0.25s ease-in-out;
|
|
6995
7107
|
transition-delay: 0.8s;
|
|
6996
|
-
max-height: 280px;
|
|
6997
7108
|
}
|
|
6998
7109
|
.Layer__caobfb[data-confirmed=true] {
|
|
6999
7110
|
background-color: var(--color-base-50);
|
|
@@ -7005,10 +7116,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7005
7116
|
}
|
|
7006
7117
|
.Layer__caobfb__details-col {
|
|
7007
7118
|
display: flex;
|
|
7119
|
+
flex: 1;
|
|
7008
7120
|
flex-direction: column;
|
|
7009
7121
|
gap: var(--spacing-2xs);
|
|
7010
7122
|
color: var(--color-base-700);
|
|
7011
|
-
flex: 1;
|
|
7012
7123
|
}
|
|
7013
7124
|
.Layer__caobfb__details-col__details {
|
|
7014
7125
|
padding-bottom: var(--spacing-sm);
|
|
@@ -7020,17 +7131,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7020
7131
|
max-width: 500px;
|
|
7021
7132
|
}
|
|
7022
7133
|
.Layer__caobfb__details-col__name__institution-name {
|
|
7023
|
-
|
|
7134
|
+
overflow: hidden;
|
|
7024
7135
|
max-width: 50%;
|
|
7136
|
+
color: var(--color-base-500);
|
|
7025
7137
|
text-overflow: ellipsis;
|
|
7026
|
-
overflow: hidden;
|
|
7027
7138
|
white-space: nowrap;
|
|
7028
7139
|
}
|
|
7029
7140
|
.Layer__caobfb__details-col__name__account-name {
|
|
7030
|
-
|
|
7141
|
+
overflow: hidden;
|
|
7031
7142
|
max-width: 50%;
|
|
7143
|
+
color: var(--color-base-1000);
|
|
7032
7144
|
text-overflow: ellipsis;
|
|
7033
|
-
overflow: hidden;
|
|
7034
7145
|
white-space: nowrap;
|
|
7035
7146
|
}
|
|
7036
7147
|
.Layer__caobfb__details-col__inputs {
|
|
@@ -7065,23 +7176,23 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7065
7176
|
}
|
|
7066
7177
|
.Layer__caobfb__success-banner {
|
|
7067
7178
|
position: absolute;
|
|
7068
|
-
inset: 0;
|
|
7069
|
-
opacity: 0;
|
|
7070
7179
|
z-index: -1;
|
|
7180
|
+
inset: 0;
|
|
7071
7181
|
display: flex;
|
|
7072
7182
|
flex-direction: column;
|
|
7073
7183
|
align-items: center;
|
|
7074
7184
|
justify-content: center;
|
|
7075
7185
|
padding: var(--spacing-sm);
|
|
7076
7186
|
background-color: var(--color-base-50);
|
|
7077
|
-
transition: opacity 0.12s ease-in-out;
|
|
7078
7187
|
color: var(--color-info-success-fg);
|
|
7188
|
+
opacity: 0;
|
|
7189
|
+
transition: opacity 0.12s ease-in-out;
|
|
7079
7190
|
}
|
|
7080
7191
|
.Layer__caobfb[data-saved] {
|
|
7192
|
+
overflow: hidden;
|
|
7081
7193
|
max-height: 0;
|
|
7082
7194
|
padding: 0;
|
|
7083
7195
|
border-width: 0;
|
|
7084
|
-
overflow: hidden;
|
|
7085
7196
|
}
|
|
7086
7197
|
.Layer__caobfb[data-saved] .Layer__caobfb__success-banner {
|
|
7087
7198
|
opacity: 1;
|
|
@@ -7490,9 +7601,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7490
7601
|
align-items: center;
|
|
7491
7602
|
}
|
|
7492
7603
|
.Layer__progress-steps .Layer__progress-steps--step-wrapper {
|
|
7604
|
+
position: relative;
|
|
7493
7605
|
display: flex;
|
|
7494
7606
|
align-items: flex-start;
|
|
7495
|
-
position: relative;
|
|
7496
7607
|
min-width: 50px;
|
|
7497
7608
|
}
|
|
7498
7609
|
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step {
|
|
@@ -7525,61 +7636,61 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7525
7636
|
position: relative;
|
|
7526
7637
|
}
|
|
7527
7638
|
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step .Layer__progress-steps--label p::after {
|
|
7528
|
-
content: "";
|
|
7529
|
-
opacity: 0;
|
|
7530
|
-
width: 100%;
|
|
7531
|
-
height: 100%;
|
|
7532
|
-
padding: 2px 8px;
|
|
7533
|
-
background-color: var(--color-base-300);
|
|
7534
7639
|
position: absolute;
|
|
7535
|
-
|
|
7640
|
+
z-index: -1;
|
|
7536
7641
|
top: -2px;
|
|
7537
7642
|
left: -8px;
|
|
7643
|
+
height: 100%;
|
|
7644
|
+
width: 100%;
|
|
7645
|
+
padding: 2px 8px;
|
|
7646
|
+
border-radius: 30px;
|
|
7647
|
+
background-color: var(--color-base-300);
|
|
7648
|
+
content: "";
|
|
7649
|
+
opacity: 0;
|
|
7538
7650
|
transition: all 200ms ease;
|
|
7539
|
-
z-index: -1;
|
|
7540
7651
|
}
|
|
7541
7652
|
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step .Layer__progress-steps--circle {
|
|
7542
|
-
width: 12px;
|
|
7543
|
-
height: 12px;
|
|
7544
|
-
background-color: var(--color-base-50);
|
|
7545
|
-
border: 1px var(--color-base-500);
|
|
7546
|
-
border-style: dashed;
|
|
7547
|
-
border-radius: 100%;
|
|
7548
7653
|
position: relative;
|
|
7549
7654
|
display: flex;
|
|
7550
7655
|
align-items: center;
|
|
7551
7656
|
justify-content: center;
|
|
7657
|
+
height: 12px;
|
|
7658
|
+
width: 12px;
|
|
7659
|
+
border-radius: 100%;
|
|
7660
|
+
border: 1px var(--color-base-500);
|
|
7661
|
+
background-color: var(--color-base-50);
|
|
7662
|
+
border-style: dashed;
|
|
7552
7663
|
transition: all 200ms ease;
|
|
7553
7664
|
}
|
|
7554
7665
|
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step .Layer__progress-steps--circle::after {
|
|
7666
|
+
position: absolute;
|
|
7667
|
+
top: -1px;
|
|
7668
|
+
left: -1px;
|
|
7555
7669
|
display: block;
|
|
7556
|
-
content: "";
|
|
7557
|
-
width: 12px;
|
|
7558
7670
|
height: 12px;
|
|
7671
|
+
width: 12px;
|
|
7672
|
+
border-radius: 100%;
|
|
7559
7673
|
border: 1px var(--color-base-500);
|
|
7674
|
+
content: "";
|
|
7560
7675
|
border-style: dashed;
|
|
7561
|
-
border-radius: 100%;
|
|
7562
|
-
position: absolute;
|
|
7563
|
-
top: -1px;
|
|
7564
|
-
left: -1px;
|
|
7565
7676
|
transition: all 200ms ease;
|
|
7566
7677
|
}
|
|
7567
7678
|
.Layer__progress-steps--step-line {
|
|
7568
|
-
width: 100%;
|
|
7569
|
-
height: 2px;
|
|
7570
|
-
background-color: var(--color-base-300);
|
|
7571
7679
|
position: absolute;
|
|
7572
7680
|
top: 6px;
|
|
7573
7681
|
display: flex;
|
|
7574
7682
|
align-items: center;
|
|
7575
7683
|
justify-content: flex-start;
|
|
7684
|
+
height: 2px;
|
|
7685
|
+
width: 100%;
|
|
7686
|
+
background-color: var(--color-base-300);
|
|
7576
7687
|
}
|
|
7577
7688
|
.Layer__progress-steps--step-line::after {
|
|
7578
|
-
|
|
7579
|
-
width: 0%;
|
|
7689
|
+
position: absolute;
|
|
7580
7690
|
height: 2px;
|
|
7691
|
+
width: 0%;
|
|
7581
7692
|
background-color: var(--color-base-800);
|
|
7582
|
-
|
|
7693
|
+
content: "";
|
|
7583
7694
|
transition: all 200ms ease;
|
|
7584
7695
|
}
|
|
7585
7696
|
.Layer__progress-steps--step[data-complete=true] .Layer__progress-steps--step-line::after {
|
|
@@ -7622,17 +7733,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7622
7733
|
container-type: inline-size;
|
|
7623
7734
|
}
|
|
7624
7735
|
.Layer__platform-onboarding-layout {
|
|
7625
|
-
position: relative;
|
|
7626
7736
|
box-sizing: border-box;
|
|
7737
|
+
position: relative;
|
|
7627
7738
|
padding: var(--spacing-lg);
|
|
7628
7739
|
}
|
|
7629
7740
|
.Layer__platform-onboarding__back-button-container {
|
|
7630
|
-
max-width: calc(672px + 2 * var(--spacing-xl));
|
|
7631
|
-
margin: auto;
|
|
7632
|
-
margin-bottom: var(--spacing-lg);
|
|
7633
7741
|
position: absolute;
|
|
7634
7742
|
top: var(--spacing-lg);
|
|
7635
7743
|
left: var(--spacing-lg);
|
|
7744
|
+
max-width: calc(672px + 2 * var(--spacing-xl));
|
|
7745
|
+
margin: auto;
|
|
7746
|
+
margin-bottom: var(--spacing-lg);
|
|
7636
7747
|
}
|
|
7637
7748
|
@container (width < 969px) {
|
|
7638
7749
|
.Layer__platform-onboarding__back-button-container {
|
|
@@ -7640,16 +7751,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7640
7751
|
}
|
|
7641
7752
|
}
|
|
7642
7753
|
.Layer__platfom-onboarding-layout__box {
|
|
7643
|
-
padding: var(--spacing-xl);
|
|
7644
|
-
max-width: 672px;
|
|
7645
|
-
margin: auto;
|
|
7646
7754
|
display: flex;
|
|
7647
7755
|
flex-direction: column;
|
|
7648
7756
|
gap: var(--spacing-lg);
|
|
7757
|
+
max-width: 672px;
|
|
7758
|
+
padding: var(--spacing-xl);
|
|
7649
7759
|
border-radius: var(--border-radius-xs);
|
|
7650
|
-
background: var(--color-base-0);
|
|
7651
7760
|
box-shadow: 0 0 0 1px var(--base-transparent-4);
|
|
7761
|
+
margin: auto;
|
|
7652
7762
|
margin-bottom: var(--spacing-md);
|
|
7763
|
+
background: var(--color-base-0);
|
|
7653
7764
|
}
|
|
7654
7765
|
@container (width < 500px) {
|
|
7655
7766
|
.Layer__platfom-onboarding-layout__box {
|
|
@@ -7657,8 +7768,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7657
7768
|
}
|
|
7658
7769
|
}
|
|
7659
7770
|
.Layer__platform-onboarding-layout__footer {
|
|
7660
|
-
padding: var(--spacing-lg) 0;
|
|
7661
7771
|
max-width: 1200px;
|
|
7772
|
+
padding: var(--spacing-lg) 0;
|
|
7662
7773
|
margin: auto;
|
|
7663
7774
|
}
|
|
7664
7775
|
@container (width < 500px) {
|
|
@@ -7676,13 +7787,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7676
7787
|
margin-bottom: var(--spacing-lg);
|
|
7677
7788
|
}
|
|
7678
7789
|
.Layer__platform-onboarding__welcome-footer__content {
|
|
7679
|
-
max-width: 672px;
|
|
7680
|
-
margin: auto;
|
|
7681
7790
|
display: flex;
|
|
7682
7791
|
flex-direction: column;
|
|
7683
|
-
align-items: flex-start;
|
|
7684
7792
|
gap: var(--spacing-lg);
|
|
7793
|
+
align-items: flex-start;
|
|
7794
|
+
max-width: 672px;
|
|
7685
7795
|
padding: 0 var(--spacing-xl);
|
|
7796
|
+
margin: auto;
|
|
7686
7797
|
}
|
|
7687
7798
|
@container (width < 500px) {
|
|
7688
7799
|
.Layer__platform-onboarding__welcome-footer__content {
|
|
@@ -7700,8 +7811,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7700
7811
|
gap: var(--spacing-lg);
|
|
7701
7812
|
align-items: flex-start;
|
|
7702
7813
|
max-width: 1200px;
|
|
7703
|
-
margin: auto;
|
|
7704
7814
|
padding-top: var(--spacing-5xl);
|
|
7815
|
+
margin: auto;
|
|
7705
7816
|
}
|
|
7706
7817
|
@container (width < 640px) {
|
|
7707
7818
|
.Layer__platform-onboarding__welcome-footer__images {
|
|
@@ -7715,16 +7826,16 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7715
7826
|
}
|
|
7716
7827
|
.Layer__platform-onboarding__welcome-footer__images .Layer__platform-onboarding__welcome-footer__image .Layer__platform__onboarding__welcome-footer__image-wrapper {
|
|
7717
7828
|
display: flex;
|
|
7829
|
+
flex: 1 0 0;
|
|
7718
7830
|
flex-direction: column;
|
|
7719
|
-
align-items: center;
|
|
7720
7831
|
gap: var(--spacing-2xl);
|
|
7721
|
-
|
|
7832
|
+
align-items: center;
|
|
7722
7833
|
border-radius: 12px;
|
|
7723
7834
|
box-shadow: 0 0 0 1px var(--base-transparent-4, rgba(16, 24, 40, 0.04));
|
|
7724
7835
|
}
|
|
7725
7836
|
.Layer__platform-onboarding__welcome-footer__images .Layer__platform-onboarding__welcome-footer__image .Layer__platform__onboarding__welcome-footer__image-wrapper img {
|
|
7726
|
-
width: 100%;
|
|
7727
7837
|
height: 100%;
|
|
7838
|
+
width: 100%;
|
|
7728
7839
|
object-fit: contain;
|
|
7729
7840
|
}
|
|
7730
7841
|
.Layer__platform-onboarding__welcome-footer__images .Layer__platform-onboarding__welcome-footer__image .Layer__platform__onboarding__welcome-footer__image-text {
|
|
@@ -7733,14 +7844,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7733
7844
|
gap: var(--spacing-xs);
|
|
7734
7845
|
align-items: center;
|
|
7735
7846
|
justify-content: center;
|
|
7736
|
-
padding: 36px 0;
|
|
7737
7847
|
max-width: 27ch;
|
|
7848
|
+
padding: 36px 0;
|
|
7738
7849
|
margin: auto;
|
|
7739
7850
|
text-align: center;
|
|
7740
7851
|
}
|
|
7741
7852
|
.Layer__separator {
|
|
7742
|
-
width: 100%;
|
|
7743
7853
|
height: 1px;
|
|
7854
|
+
width: 100%;
|
|
7744
7855
|
background-color: var(--color-base-300);
|
|
7745
7856
|
}
|
|
7746
7857
|
.Layer__separator[data-mbe="3xs"] {
|
|
@@ -7887,41 +7998,76 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7887
7998
|
@container (width < 460px) {
|
|
7888
7999
|
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
7889
8000
|
position: static;
|
|
7890
|
-
width: 260px;
|
|
7891
8001
|
height: 18px;
|
|
8002
|
+
width: 260px;
|
|
7892
8003
|
}
|
|
7893
8004
|
.Layer__profit-and-loss-header__bookkeeping-status .Layer__bookkeeping-status {
|
|
7894
8005
|
white-space: normal;
|
|
7895
8006
|
}
|
|
7896
8007
|
}
|
|
7897
8008
|
.Layer__bookkeeping-status {
|
|
7898
|
-
white-space: nowrap;
|
|
7899
8009
|
display: flex;
|
|
7900
|
-
align-items: center;
|
|
7901
8010
|
gap: var(--spacing-3xs);
|
|
8011
|
+
align-items: center;
|
|
8012
|
+
white-space: nowrap;
|
|
7902
8013
|
}
|
|
7903
8014
|
.Layer__bookkeeping-status .Layer__bookkeeping-status__icon-wrapper {
|
|
7904
|
-
border-radius: 50%;
|
|
7905
|
-
width: 16px;
|
|
7906
|
-
height: 16px;
|
|
7907
8015
|
display: flex;
|
|
7908
8016
|
align-items: center;
|
|
7909
8017
|
justify-content: center;
|
|
7910
|
-
|
|
7911
|
-
|
|
8018
|
+
height: 16px;
|
|
8019
|
+
width: 16px;
|
|
8020
|
+
border-radius: 50%;
|
|
7912
8021
|
margin-top: -1px;
|
|
8022
|
+
background: var(--color-info-bg);
|
|
8023
|
+
color: var(--color-info-fg);
|
|
7913
8024
|
}
|
|
7914
8025
|
.Layer__bookkeeping-status[data-status=warning] .Layer__bookkeeping-status__icon-wrapper {
|
|
7915
|
-
color: var(--color-info-warning-fg);
|
|
7916
8026
|
background: var(--color-info-warning-bg);
|
|
8027
|
+
color: var(--color-info-warning-fg);
|
|
7917
8028
|
}
|
|
7918
8029
|
.Layer__bookkeeping-status[data-status=success] .Layer__bookkeeping-status__icon-wrapper {
|
|
7919
|
-
color: var(--color-info-success-fg);
|
|
7920
8030
|
background: var(--color-info-success-bg);
|
|
8031
|
+
color: var(--color-info-success-fg);
|
|
7921
8032
|
}
|
|
7922
8033
|
.Layer__bookkeeping-status[data-status=error] .Layer__bookkeeping-status__icon-wrapper {
|
|
7923
|
-
color: var(--color-info-error-fg);
|
|
7924
8034
|
background: var(--color-info-error-bg);
|
|
8035
|
+
color: var(--color-info-error-fg);
|
|
8036
|
+
}
|
|
8037
|
+
.Layer__suggested-categorization-rule-updates-drawer {
|
|
8038
|
+
padding: var(--spacing-sm);
|
|
8039
|
+
}
|
|
8040
|
+
.Layer__suggested-categorization-rule-updates .Layer__UI__Button {
|
|
8041
|
+
width: 100%;
|
|
8042
|
+
}
|
|
8043
|
+
.Layer__suggested-categorization-rule-updates-header {
|
|
8044
|
+
padding-bottom: var(--spacing-sm);
|
|
8045
|
+
}
|
|
8046
|
+
.Layer__AffectedTransactionsTable {
|
|
8047
|
+
container-type: inline-size;
|
|
8048
|
+
--affected-transactions-table-cols: minmax(10rem, 25%) minmax(20rem, 50%) minmax(10rem, 25%);
|
|
8049
|
+
}
|
|
8050
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable {
|
|
8051
|
+
table-layout: fixed;
|
|
8052
|
+
}
|
|
8053
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__VirtualizedTable__row,
|
|
8054
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__VirtualizedTable__header > tr {
|
|
8055
|
+
display: grid;
|
|
8056
|
+
grid-template-columns: var(--affected-transactions-table-cols);
|
|
8057
|
+
}
|
|
8058
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__Table-Column__AffectedTransactionsTable--Date,
|
|
8059
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__Table-Cell__AffectedTransactionsTable--Date {
|
|
8060
|
+
color: var(--color-base-600);
|
|
8061
|
+
}
|
|
8062
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__Table-Column__AffectedTransactionsTable--Amount,
|
|
8063
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__Table-Cell__AffectedTransactionsTable--Amount {
|
|
8064
|
+
justify-content: flex-end;
|
|
8065
|
+
}
|
|
8066
|
+
@container (width <= 840px) {
|
|
8067
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__VirtualizedTable__row,
|
|
8068
|
+
.Layer__AffectedTransactionsTable .Layer__UI__Table__AffectedTransactionsTable .Layer__UI__VirtualizedTable__header > tr {
|
|
8069
|
+
grid-template-columns: minmax(4rem, 25%) minmax(8rem, 50%) minmax(4rem, 25%);
|
|
8070
|
+
}
|
|
7925
8071
|
}
|
|
7926
8072
|
.Layer__tabs__container {
|
|
7927
8073
|
overflow: auto hidden;
|
|
@@ -8020,17 +8166,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8020
8166
|
}
|
|
8021
8167
|
.Layer__mobile-panel {
|
|
8022
8168
|
position: fixed;
|
|
8169
|
+
z-index: -1;
|
|
8023
8170
|
top: 0;
|
|
8024
8171
|
left: 0;
|
|
8025
|
-
|
|
8172
|
+
display: flex;
|
|
8173
|
+
flex-direction: column;
|
|
8026
8174
|
height: 100dvh;
|
|
8175
|
+
width: 100dvw;
|
|
8176
|
+
background-color: var(--color-base-50);
|
|
8027
8177
|
opacity: 0;
|
|
8028
8178
|
transition: opacity 180ms ease-out;
|
|
8029
8179
|
filter: blur(6px);
|
|
8030
|
-
display: flex;
|
|
8031
|
-
flex-direction: column;
|
|
8032
|
-
background-color: var(--color-base-50);
|
|
8033
|
-
z-index: -1;
|
|
8034
8180
|
}
|
|
8035
8181
|
.Layer__mobile-panel[data-open] {
|
|
8036
8182
|
z-index: var(--z-index-mobile-panel);
|
|
@@ -8041,11 +8187,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8041
8187
|
.Layer__mobile-panel__header {
|
|
8042
8188
|
top: 0;
|
|
8043
8189
|
display: flex;
|
|
8190
|
+
gap: var(--spacing-lg);
|
|
8044
8191
|
align-items: center;
|
|
8045
8192
|
padding: var(--spacing-sm) var(--spacing-lg);
|
|
8046
|
-
background-color: var(--color-base-0);
|
|
8047
|
-
gap: var(--spacing-lg);
|
|
8048
8193
|
border-bottom: 1px solid var(--color-base-100);
|
|
8194
|
+
background-color: var(--color-base-0);
|
|
8049
8195
|
}
|
|
8050
8196
|
.Layer__mobile-panel__content {
|
|
8051
8197
|
flex: 1;
|
|
@@ -8151,9 +8297,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8151
8297
|
padding-top: var(--spacing-xl);
|
|
8152
8298
|
}
|
|
8153
8299
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
|
|
8154
|
-
padding: 0 var(--spacing-xl);
|
|
8155
8300
|
display: flex;
|
|
8156
8301
|
gap: var(--spacing-md);
|
|
8302
|
+
padding: 0 var(--spacing-xl);
|
|
8157
8303
|
}
|
|
8158
8304
|
.Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
|
|
8159
8305
|
flex: 0 0 clamp(16rem, 100%, 24rem);
|
|
@@ -8178,8 +8324,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8178
8324
|
}
|
|
8179
8325
|
.Layer__JournalEntryForm__LineItem {
|
|
8180
8326
|
display: flex;
|
|
8181
|
-
align-items: flex-end;
|
|
8182
8327
|
gap: var(--spacing-xs);
|
|
8328
|
+
align-items: flex-end;
|
|
8183
8329
|
}
|
|
8184
8330
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
|
|
8185
8331
|
flex: 1 1 12rem;
|
|
@@ -8199,17 +8345,52 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8199
8345
|
.Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
|
|
8200
8346
|
display: none;
|
|
8201
8347
|
}
|
|
8202
|
-
@media (
|
|
8348
|
+
@media (width <= 768px) {
|
|
8203
8349
|
.Layer__JournalEntryForm__LineItem {
|
|
8204
8350
|
flex-direction: column;
|
|
8205
|
-
align-items: stretch;
|
|
8206
8351
|
gap: var(--spacing-sm);
|
|
8352
|
+
align-items: stretch;
|
|
8207
8353
|
}
|
|
8208
8354
|
.Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
|
|
8209
8355
|
flex: 1 1 auto;
|
|
8210
8356
|
max-width: 16rem;
|
|
8211
8357
|
}
|
|
8212
8358
|
}
|
|
8359
|
+
.Layer__ExpandButton {
|
|
8360
|
+
height: 16px;
|
|
8361
|
+
min-width: 16px;
|
|
8362
|
+
transition: transform 0.1s ease-in-out;
|
|
8363
|
+
}
|
|
8364
|
+
.Layer__ExpandButton--collapsed {
|
|
8365
|
+
transform: rotate(-90deg);
|
|
8366
|
+
}
|
|
8367
|
+
.Layer__ExpandButton--expanded {
|
|
8368
|
+
transform: rotate(0deg);
|
|
8369
|
+
}
|
|
8370
|
+
.Layer__UnifiedReport {
|
|
8371
|
+
overflow: hidden;
|
|
8372
|
+
width: clamp(24rem, 100%, 1406px);
|
|
8373
|
+
}
|
|
8374
|
+
.Layer__UnifiedReport__Header {
|
|
8375
|
+
height: 4.75rem;
|
|
8376
|
+
border-bottom: 1px solid var(--border-color);
|
|
8377
|
+
}
|
|
8378
|
+
.Layer__UI__Table__UnifiedReport {
|
|
8379
|
+
table-layout: fixed;
|
|
8380
|
+
width: 100%;
|
|
8381
|
+
}
|
|
8382
|
+
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Row,
|
|
8383
|
+
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-TableHeader > tr {
|
|
8384
|
+
display: grid;
|
|
8385
|
+
grid-template-columns: minmax(16rem, 80%) minmax(8rem, 20%);
|
|
8386
|
+
}
|
|
8387
|
+
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Column__UnifiedReport--Value,
|
|
8388
|
+
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Cell__UnifiedReport--Value {
|
|
8389
|
+
justify-content: flex-end;
|
|
8390
|
+
}
|
|
8391
|
+
.Layer__DateCalendar__Header {
|
|
8392
|
+
border-bottom: 1px solid var(--border-color);
|
|
8393
|
+
}
|
|
8213
8394
|
.Layer__TagSelectorLayoutGroup {
|
|
8214
8395
|
display: grid;
|
|
8215
8396
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -8264,8 +8445,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8264
8445
|
box-sizing: border-box;
|
|
8265
8446
|
}
|
|
8266
8447
|
.Layer__ledger-account__index {
|
|
8267
|
-
background-color: var(--color-base-0);
|
|
8268
8448
|
width: 100%;
|
|
8449
|
+
background-color: var(--color-base-0);
|
|
8269
8450
|
}
|
|
8270
8451
|
.Layer__ledger-account__panel {
|
|
8271
8452
|
min-height: 800px;
|
|
@@ -8283,54 +8464,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8283
8464
|
background: var(--color-base-0);
|
|
8284
8465
|
}
|
|
8285
8466
|
.Layer__ledger-account__entry-details__header {
|
|
8286
|
-
background: var(--color-base-0);
|
|
8287
8467
|
border-top-left-radius: var(--border-radius-sm);
|
|
8288
8468
|
border-top-right-radius: var(--border-radius-sm);
|
|
8469
|
+
background: var(--color-base-0);
|
|
8289
8470
|
}
|
|
8290
8471
|
.Layer__ledger-account__title-container {
|
|
8291
8472
|
display: flex;
|
|
8292
8473
|
flex-direction: column;
|
|
8293
|
-
justify-content: flex-start;
|
|
8294
8474
|
align-items: flex-start;
|
|
8475
|
+
justify-content: flex-start;
|
|
8295
8476
|
width: 100%;
|
|
8296
8477
|
}
|
|
8297
8478
|
.Layer__ledger-account__balance-container {
|
|
8298
8479
|
display: flex;
|
|
8299
|
-
align-items: center;
|
|
8300
8480
|
gap: var(--spacing-xs);
|
|
8481
|
+
align-items: center;
|
|
8301
8482
|
}
|
|
8302
8483
|
.Layer__ledger-account__balance-label {
|
|
8303
8484
|
color: var(--color-base-600);
|
|
8304
8485
|
}
|
|
8305
|
-
.Layer__ledger-account__entry-details__back-btn {
|
|
8306
|
-
display: flex;
|
|
8307
|
-
align-items: center;
|
|
8308
|
-
gap: var(--spacing-md);
|
|
8309
|
-
padding-bottom: var(--spacing-md);
|
|
8310
|
-
}
|
|
8311
8486
|
.Layer__ledger-account__entry-details__title-container > .Layer__text {
|
|
8312
8487
|
font-size: 24px;
|
|
8313
8488
|
}
|
|
8314
8489
|
.Layer__ledger-account__entry-details__line-items {
|
|
8315
8490
|
padding: var(--spacing-md);
|
|
8316
8491
|
}
|
|
8317
|
-
.Layer__ledger-account__entry-details__back-btn {
|
|
8318
|
-
display: none;
|
|
8319
|
-
background: var(--color-base-0);
|
|
8320
|
-
padding-top: var(--spacing-xl);
|
|
8321
|
-
padding-left: var(--spacing-xl);
|
|
8322
|
-
padding-right: var(--spacing-xl);
|
|
8323
|
-
}
|
|
8324
8492
|
.Layer__ledger-account-table__tablet-main-col .Layer__table-cell-content {
|
|
8325
8493
|
display: flex;
|
|
8326
8494
|
flex-direction: column;
|
|
8327
|
-
align-items: flex-start;
|
|
8328
8495
|
gap: var(--spacing-xs);
|
|
8496
|
+
align-items: flex-start;
|
|
8329
8497
|
}
|
|
8330
8498
|
.Layer__ledger-account-table__tablet-main-col .Layer__ledger-account-table__tablet-main-col__date {
|
|
8331
8499
|
display: flex;
|
|
8332
|
-
align-items: center;
|
|
8333
8500
|
gap: var(--spacing-xs);
|
|
8501
|
+
align-items: center;
|
|
8334
8502
|
}
|
|
8335
8503
|
.Layer__ledger_account-table__journal-id {
|
|
8336
8504
|
color: var(--color-base-800);
|
|
@@ -8338,14 +8506,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8338
8506
|
.Layer__ledger_account-table__balances-mobile {
|
|
8339
8507
|
display: flex;
|
|
8340
8508
|
flex-direction: column;
|
|
8341
|
-
width: 100%;
|
|
8342
8509
|
gap: var(--spacing-xs);
|
|
8510
|
+
width: 100%;
|
|
8343
8511
|
}
|
|
8344
8512
|
.Layer__ledger_account-table__balance-item {
|
|
8345
8513
|
display: flex;
|
|
8346
|
-
width: 100%;
|
|
8347
8514
|
align-items: center;
|
|
8348
8515
|
justify-content: space-between;
|
|
8516
|
+
width: 100%;
|
|
8349
8517
|
}
|
|
8350
8518
|
.Layer__ledger_account-table__balance-item .Layer__ledger_account-table__balances-mobile__value {
|
|
8351
8519
|
font-weight: var(--font-weight-bold);
|
|
@@ -8355,14 +8523,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8355
8523
|
.Layer__ledger-account__panel .Layer__panel__sidebar .Layer__panel__sidebar-content {
|
|
8356
8524
|
width: 100%;
|
|
8357
8525
|
}
|
|
8358
|
-
.Layer__ledger-account__entry-details__back-btn {
|
|
8359
|
-
display: flex;
|
|
8360
|
-
}
|
|
8361
8526
|
}
|
|
8362
8527
|
@container (min-width: 500px) and (max-width: 1024px) {
|
|
8363
8528
|
.Layer__ledger-account__panel .Layer__details-list .Layer__component-header {
|
|
8364
|
-
padding-left: var(--spacing-xl);
|
|
8365
8529
|
padding-right: var(--spacing-xl);
|
|
8530
|
+
padding-left: var(--spacing-xl);
|
|
8366
8531
|
}
|
|
8367
8532
|
}
|
|
8368
8533
|
@container (max-width: 499px) {
|
|
@@ -8374,21 +8539,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8374
8539
|
padding: 0 var(--spacing-xs);
|
|
8375
8540
|
}
|
|
8376
8541
|
.Layer__ledger-account__entry-details__line-items {
|
|
8377
|
-
padding-left: 0;
|
|
8378
|
-
padding-right: 0;
|
|
8379
8542
|
padding-top: 0;
|
|
8543
|
+
padding-right: 0;
|
|
8544
|
+
padding-left: 0;
|
|
8380
8545
|
}
|
|
8381
8546
|
.Layer__ledger-account__entry-details__line-items .Layer__card {
|
|
8382
|
-
box-shadow: none;
|
|
8383
8547
|
border-radius: 0;
|
|
8548
|
+
box-shadow: none;
|
|
8384
8549
|
}
|
|
8385
8550
|
.Layer__ledger-account__panel .Layer__panel__sidebar {
|
|
8386
8551
|
background: var(--color-base-0);
|
|
8387
8552
|
}
|
|
8388
|
-
.Layer__ledger-account__entry-details__back-btn {
|
|
8389
|
-
padding-left: var(--spacing-md);
|
|
8390
|
-
padding-right: var(--spacing-md);
|
|
8391
|
-
}
|
|
8392
8553
|
}
|
|
8393
8554
|
.Layer__ledger-account__entry-details__table .Layer__table-row.Layer__table-row--variant-default,
|
|
8394
8555
|
.Layer__ledger-account__entry-details__table .Layer__table-row.Layer__table-row--variant-summation {
|
|
@@ -8402,8 +8563,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8402
8563
|
.Layer__ledger-account__entry-details__table tr td:last-child .Layer__table-cell-content,
|
|
8403
8564
|
.Layer__ledger-account__entry-details__table tr th:first-child.Layer__table-header,
|
|
8404
8565
|
.Layer__ledger-account__entry-details__table tr th:last-child.Layer__table-header {
|
|
8405
|
-
padding-left: var(--spacing-lg);
|
|
8406
8566
|
padding-right: var(--spacing-lg);
|
|
8567
|
+
padding-left: var(--spacing-lg);
|
|
8407
8568
|
}
|
|
8408
8569
|
}
|
|
8409
8570
|
@container (max-width: 1023px) and (min-width: 700px) {
|
|
@@ -8569,6 +8730,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8569
8730
|
left: 0;
|
|
8570
8731
|
display: flex;
|
|
8571
8732
|
flex-direction: column;
|
|
8733
|
+
gap: var(--spacing-xs);
|
|
8572
8734
|
align-items: stretch;
|
|
8573
8735
|
width: 100%;
|
|
8574
8736
|
}
|
|
@@ -8596,7 +8758,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8596
8758
|
.Layer__bank-transactions__header--with-date-picker.Layer__bank-transactions__header--mobile .Layer__datepicker__wrapper {
|
|
8597
8759
|
margin-right: 4px;
|
|
8598
8760
|
}
|
|
8599
|
-
.Layer__bank-transactions__header-
|
|
8761
|
+
.Layer__bank-transactions__header-menu__icon {
|
|
8600
8762
|
padding: var(--spacing-3xs);
|
|
8601
8763
|
border-radius: var(--spacing-3xs);
|
|
8602
8764
|
background: var(--color-base-200);
|
|
@@ -8657,6 +8819,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8657
8819
|
}
|
|
8658
8820
|
.Layer__bank-transaction-row .Layer__table-cell {
|
|
8659
8821
|
background-color: var(--table-bg);
|
|
8822
|
+
color: var(--color-base-900);
|
|
8660
8823
|
transition: background-color var(--transition-speed) ease-out;
|
|
8661
8824
|
}
|
|
8662
8825
|
.Layer__bank-transaction-row .Layer__table-cell-content {
|
|
@@ -8866,15 +9029,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8866
9029
|
.Layer__bank-transaction-row__table-cell--amount-debit,
|
|
8867
9030
|
.Layer__bank-transaction-list-item__amount-debit {
|
|
8868
9031
|
justify-content: flex-end;
|
|
8869
|
-
color: var(--text-color-primary);
|
|
8870
9032
|
}
|
|
8871
9033
|
.Layer__bank-transaction-row__table-cell--amount-debit .Layer__table-cell-content,
|
|
8872
9034
|
.Layer__bank-transaction-list-item__amount-debit .Layer__table-cell-content {
|
|
8873
9035
|
justify-content: flex-end;
|
|
8874
9036
|
}
|
|
8875
|
-
.Layer__bank-transaction-list-item__amount-debit {
|
|
8876
|
-
color: var(--text-color-primary);
|
|
8877
|
-
}
|
|
8878
9037
|
.Layer__expanded-bank-transaction-row__description {
|
|
8879
9038
|
padding: 0 var(--spacing-md);
|
|
8880
9039
|
}
|
|
@@ -9117,6 +9276,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9117
9276
|
min-width: var(--width);
|
|
9118
9277
|
max-width: var(--width);
|
|
9119
9278
|
}
|
|
9279
|
+
.Layer__bank-transactions__checkbox-col {
|
|
9280
|
+
width: 48px;
|
|
9281
|
+
}
|
|
9282
|
+
.Layer__bank-transactions__checkbox-col .Layer__table-cell-content {
|
|
9283
|
+
justify-content: center;
|
|
9284
|
+
}
|
|
9120
9285
|
.Layer__bank-transactions__date-col {
|
|
9121
9286
|
box-sizing: border-box;
|
|
9122
9287
|
width: 140px;
|
|
@@ -9127,9 +9292,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9127
9292
|
box-sizing: border-box;
|
|
9128
9293
|
color: var(--color-base-1000);
|
|
9129
9294
|
}
|
|
9130
|
-
.Layer__bank-transactions__tx-text {
|
|
9131
|
-
max-width: 32ch;
|
|
9132
|
-
}
|
|
9133
9295
|
.Layer__bank-transactions__account-col {
|
|
9134
9296
|
box-sizing: border-box;
|
|
9135
9297
|
width: 30ch;
|
|
@@ -9154,6 +9316,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9154
9316
|
padding-right: var(--spacing-md);
|
|
9155
9317
|
padding-left: var(--spacing-xl);
|
|
9156
9318
|
}
|
|
9319
|
+
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__checkbox-col + .Layer__table-header.Layer__bank-transactions__date-col {
|
|
9320
|
+
padding-left: var(--spacing-md);
|
|
9321
|
+
}
|
|
9157
9322
|
.Layer__table.Layer__bank-transactions__table .Layer__table-header.Layer__table-cell__category-col {
|
|
9158
9323
|
padding-right: var(--spacing-xl);
|
|
9159
9324
|
padding-left: var(--spacing-md);
|
|
@@ -9167,16 +9332,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9167
9332
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col {
|
|
9168
9333
|
text-overflow: ellipsis;
|
|
9169
9334
|
}
|
|
9170
|
-
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col .Layer__table-cell-content .Layer__bank-transactions__account-text,
|
|
9171
|
-
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col .Layer__table-cell-content .Layer__bank-transactions__tx-text,
|
|
9172
|
-
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col .Layer__table-cell-content .Layer__bank-transactions__account-text,
|
|
9173
|
-
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col .Layer__table-cell-content .Layer__bank-transactions__tx-text {
|
|
9174
|
-
box-sizing: border-box;
|
|
9175
|
-
display: block;
|
|
9176
|
-
overflow: hidden;
|
|
9177
|
-
text-overflow: ellipsis;
|
|
9178
|
-
white-space: nowrap;
|
|
9179
|
-
}
|
|
9180
9335
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--expanded td {
|
|
9181
9336
|
vertical-align: top;
|
|
9182
9337
|
}
|
|
@@ -9225,9 +9380,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9225
9380
|
box-shadow: none;
|
|
9226
9381
|
}
|
|
9227
9382
|
}
|
|
9228
|
-
.Layer__tooltip.Layer__bank-transactions__tx-tooltip {
|
|
9229
|
-
max-width: 250px;
|
|
9230
|
-
}
|
|
9231
9383
|
.Layer__bank-transaction-list-item__match-tooltip,
|
|
9232
9384
|
.Layer__expanded-bank-transaction-row__match-tooltip,
|
|
9233
9385
|
.Layer__bank-transaction-row__match-tooltip {
|
|
@@ -10227,9 +10379,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10227
10379
|
}
|
|
10228
10380
|
}
|
|
10229
10381
|
.Layer__component-container.Layer__journal {
|
|
10382
|
+
position: relative;
|
|
10230
10383
|
display: flex;
|
|
10231
10384
|
align-items: stretch;
|
|
10232
|
-
position: relative;
|
|
10233
10385
|
overflow: auto;
|
|
10234
10386
|
}
|
|
10235
10387
|
.Layer__component-container.Layer__journal .Layer__table-state-container {
|
|
@@ -10251,8 +10403,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10251
10403
|
max-width: 100%;
|
|
10252
10404
|
}
|
|
10253
10405
|
.Layer__journal__table-container {
|
|
10254
|
-
max-width: 100%;
|
|
10255
10406
|
overflow: auto;
|
|
10407
|
+
max-width: 100%;
|
|
10256
10408
|
}
|
|
10257
10409
|
.Layer__journal__arrow .Layer__table-cell-content {
|
|
10258
10410
|
padding-right: 0 !important;
|
|
@@ -10273,8 +10425,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10273
10425
|
}
|
|
10274
10426
|
.Layer__journal__actions {
|
|
10275
10427
|
display: flex;
|
|
10276
|
-
align-items: center;
|
|
10277
10428
|
gap: var(--spacing-sm);
|
|
10429
|
+
align-items: center;
|
|
10278
10430
|
}
|
|
10279
10431
|
.Layer__table-cell.Layer__journal__arrow,
|
|
10280
10432
|
.Layer__table-cell.Layer__journal__balance {
|
|
@@ -10297,19 +10449,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10297
10449
|
font-weight: var(--font-weight-bold);
|
|
10298
10450
|
}
|
|
10299
10451
|
.Layer__journal__balance {
|
|
10300
|
-
text-align: right;
|
|
10301
10452
|
justify-content: flex-end;
|
|
10453
|
+
text-align: right;
|
|
10302
10454
|
}
|
|
10303
10455
|
.Layer__table-cell.Layer__journal__actions {
|
|
10304
10456
|
width: 160px;
|
|
10305
10457
|
}
|
|
10306
10458
|
.Layer__table-cell.Layer__journal__actions .Layer__table-cell-content {
|
|
10307
10459
|
display: flex;
|
|
10308
|
-
|
|
10460
|
+
gap: var(--spacing-xs);
|
|
10309
10461
|
align-items: center;
|
|
10462
|
+
justify-content: flex-end;
|
|
10310
10463
|
padding-top: var(--spacing-3xs);
|
|
10311
10464
|
padding-bottom: var(--spacing-3xs);
|
|
10312
|
-
gap: var(--spacing-xs);
|
|
10313
10465
|
}
|
|
10314
10466
|
.Layer__table-cell.Layer__journal__actions .Layer__table-cell-content > .Layer__btn {
|
|
10315
10467
|
opacity: 0;
|
|
@@ -10318,12 +10470,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10318
10470
|
transform: scale(0.92);
|
|
10319
10471
|
}
|
|
10320
10472
|
.Layer__table-cell.Layer__journal__actions .Layer__btn--icon-only {
|
|
10321
|
-
|
|
10473
|
+
box-sizing: border-box;
|
|
10322
10474
|
height: 32px;
|
|
10323
10475
|
min-height: 32px;
|
|
10324
10476
|
max-height: 32px;
|
|
10477
|
+
width: 32px;
|
|
10325
10478
|
padding: 0;
|
|
10326
|
-
box-sizing: border-box;
|
|
10327
10479
|
}
|
|
10328
10480
|
.Layer__journal-line__table-row {
|
|
10329
10481
|
background-color: var(--color-base-50);
|
|
@@ -10352,11 +10504,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10352
10504
|
margin: auto;
|
|
10353
10505
|
}
|
|
10354
10506
|
.Layer__journal__form-edit-entry {
|
|
10355
|
-
padding: var(--spacing-md) var(--spacing-xl);
|
|
10356
10507
|
display: flex;
|
|
10508
|
+
gap: var(--spacing-md);
|
|
10357
10509
|
align-items: center;
|
|
10358
10510
|
justify-content: space-between;
|
|
10359
|
-
|
|
10511
|
+
padding: var(--spacing-md) var(--spacing-xl);
|
|
10360
10512
|
}
|
|
10361
10513
|
.Layer__journal__form-edit-entry .Layer__text {
|
|
10362
10514
|
margin: 0;
|
|
@@ -10397,12 +10549,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10397
10549
|
width: 64px;
|
|
10398
10550
|
}
|
|
10399
10551
|
.Layer__journal__row---mobile {
|
|
10400
|
-
visibility: visible;
|
|
10401
10552
|
display: table-row;
|
|
10553
|
+
visibility: visible;
|
|
10402
10554
|
}
|
|
10403
10555
|
.Layer__journal__row---desktop {
|
|
10404
|
-
visibility: hidden;
|
|
10405
10556
|
display: none;
|
|
10557
|
+
visibility: hidden;
|
|
10406
10558
|
}
|
|
10407
10559
|
.Layer__journal__form-row {
|
|
10408
10560
|
flex-direction: column;
|
|
@@ -10415,29 +10567,25 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10415
10567
|
.Layer__journal__entry-details__title .Layer__component-header {
|
|
10416
10568
|
padding-bottom: var(--spacing-3xs);
|
|
10417
10569
|
}
|
|
10418
|
-
.Layer__journal__entry-details__title .Layer__journal__entry-details__back-btn {
|
|
10419
|
-
display: flex;
|
|
10420
|
-
background: var(--color-base-0);
|
|
10421
|
-
}
|
|
10422
10570
|
.Layer__journal__form__input-group__line-item {
|
|
10423
10571
|
display: flex;
|
|
10424
10572
|
flex-direction: column;
|
|
10425
|
-
padding: var(--spacing-md) 0;
|
|
10426
10573
|
gap: var(--spacing-2xs);
|
|
10574
|
+
padding: var(--spacing-md) 0;
|
|
10427
10575
|
}
|
|
10428
10576
|
.Layer__journal__form__input-group__line-item:not(:first-of-type) {
|
|
10429
10577
|
border-top: 1px solid var(--color-base-300);
|
|
10430
10578
|
}
|
|
10431
10579
|
.Layer__remove__button {
|
|
10432
|
-
box-shadow: 0 0 0 1px var(--input-border-color), 0 0 0 2px rgba(0, 0, 0, 0);
|
|
10433
10580
|
padding: 8px;
|
|
10581
|
+
box-shadow: 0 0 0 1px var(--input-border-color), 0 0 0 2px rgba(0, 0, 0, 0);
|
|
10434
10582
|
margin-left: 8px;
|
|
10435
10583
|
}
|
|
10436
10584
|
.Layer__journal__form__input-group {
|
|
10437
10585
|
display: flex;
|
|
10438
10586
|
flex-direction: column;
|
|
10439
|
-
padding: var(--spacing-xl);
|
|
10440
10587
|
gap: var(--spacing-3xs);
|
|
10588
|
+
padding: var(--spacing-xl);
|
|
10441
10589
|
}
|
|
10442
10590
|
.Layer__journal__form__input-group__textarea {
|
|
10443
10591
|
background: var(--color-base-50);
|
|
@@ -10450,9 +10598,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10450
10598
|
}
|
|
10451
10599
|
.Layer__journal__form__input-group .Layer__input-group .Layer__journal__datepicker__wrapper {
|
|
10452
10600
|
display: flex;
|
|
10601
|
+
gap: var(--spacing-xs);
|
|
10453
10602
|
align-items: center;
|
|
10454
10603
|
justify-content: flex-end;
|
|
10455
|
-
gap: var(--spacing-xs);
|
|
10456
10604
|
}
|
|
10457
10605
|
.Layer__journal__form__input-group .Layer__input-label {
|
|
10458
10606
|
padding: 0;
|
|
@@ -10464,10 +10612,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10464
10612
|
display: flex;
|
|
10465
10613
|
}
|
|
10466
10614
|
.Layer__journal__form__error-message {
|
|
10467
|
-
|
|
10615
|
+
box-sizing: border-box;
|
|
10468
10616
|
width: 100%;
|
|
10617
|
+
padding: var(--spacing-4xs) var(--spacing-xl);
|
|
10469
10618
|
text-align: right;
|
|
10470
|
-
box-sizing: border-box;
|
|
10471
10619
|
color: var(--color-danger);
|
|
10472
10620
|
}
|
|
10473
10621
|
.Layer__journal__add-entry-line {
|
|
@@ -10500,15 +10648,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10500
10648
|
.Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__input-group,
|
|
10501
10649
|
.Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__journal__form__input-group__title,
|
|
10502
10650
|
.Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__journal__add-entry-line {
|
|
10503
|
-
max-width: 600px;
|
|
10504
10651
|
width: 100%;
|
|
10652
|
+
max-width: 600px;
|
|
10505
10653
|
margin: auto;
|
|
10506
10654
|
}
|
|
10507
10655
|
.Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__form .Layer__header__col {
|
|
10508
10656
|
width: 100%;
|
|
10509
|
-
margin: auto;
|
|
10510
|
-
padding: var(--spacing-md) var(--spacing-xl);
|
|
10511
10657
|
max-width: calc(600px + var(--spacing-xl) * 2);
|
|
10658
|
+
padding: var(--spacing-md) var(--spacing-xl);
|
|
10659
|
+
margin: auto;
|
|
10512
10660
|
}
|
|
10513
10661
|
.Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content .Layer__journal__bottom-actions {
|
|
10514
10662
|
max-width: 600px;
|
|
@@ -10517,9 +10665,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10517
10665
|
.Layer__journal .Layer__journal__sidebar__header .actions {
|
|
10518
10666
|
display: none;
|
|
10519
10667
|
}
|
|
10520
|
-
.Layer__journal .Layer__journal__sidebar__header .actions {
|
|
10521
|
-
display: none;
|
|
10522
|
-
}
|
|
10523
10668
|
.Layer__journal .Layer__journal__bottom-actions {
|
|
10524
10669
|
display: flex;
|
|
10525
10670
|
}
|
|
@@ -10535,8 +10680,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10535
10680
|
}
|
|
10536
10681
|
@container (min-width: 500px) and (max-width: 1024px) {
|
|
10537
10682
|
.Layer__journal__panel .Layer__details-list .Layer__component-header {
|
|
10538
|
-
padding-left: var(--spacing-xl);
|
|
10539
10683
|
padding-right: var(--spacing-xl);
|
|
10684
|
+
padding-left: var(--spacing-xl);
|
|
10540
10685
|
}
|
|
10541
10686
|
}
|
|
10542
10687
|
@container (max-width: 499px) {
|
|
@@ -10548,21 +10693,17 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10548
10693
|
padding: 0 var(--spacing-xs);
|
|
10549
10694
|
}
|
|
10550
10695
|
.Layer__journal__entry-details__line-items {
|
|
10551
|
-
padding-left: 0;
|
|
10552
|
-
padding-right: 0;
|
|
10553
10696
|
padding-top: 0;
|
|
10697
|
+
padding-right: 0;
|
|
10698
|
+
padding-left: 0;
|
|
10554
10699
|
}
|
|
10555
10700
|
.Layer__journal__entry-details__line-items .Layer__card {
|
|
10556
|
-
box-shadow: none;
|
|
10557
10701
|
border-radius: 0;
|
|
10702
|
+
box-shadow: none;
|
|
10558
10703
|
}
|
|
10559
10704
|
.Layer__journal__panel .Layer__panel__sidebar {
|
|
10560
10705
|
background: var(--color-base-0);
|
|
10561
10706
|
}
|
|
10562
|
-
.Layer__journal__entry-details__back-btn {
|
|
10563
|
-
padding-left: var(--spacing-md);
|
|
10564
|
-
padding-right: var(--spacing-md);
|
|
10565
|
-
}
|
|
10566
10707
|
.Layer__input-group.Layer__input-group--inline {
|
|
10567
10708
|
flex-direction: column;
|
|
10568
10709
|
gap: var(--spacing-2xs);
|
|
@@ -10689,14 +10830,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10689
10830
|
.Layer__linked-accounts__header {
|
|
10690
10831
|
position: sticky;
|
|
10691
10832
|
left: 0;
|
|
10692
|
-
padding: var(--spacing-
|
|
10833
|
+
padding: var(--spacing-lg);
|
|
10693
10834
|
}
|
|
10694
10835
|
.Layer__linked-accounts__list {
|
|
10695
10836
|
display: flex;
|
|
10696
10837
|
flex-wrap: wrap;
|
|
10697
10838
|
gap: var(--spacing-md);
|
|
10698
10839
|
align-items: stretch;
|
|
10699
|
-
padding: var(--spacing-
|
|
10840
|
+
padding: var(--spacing-lg);
|
|
10700
10841
|
}
|
|
10701
10842
|
@media screen and (width <= 650px) {
|
|
10702
10843
|
.Layer__linked-accounts__list {
|
|
@@ -10711,12 +10852,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10711
10852
|
.Layer__linked-accounts__loader-container {
|
|
10712
10853
|
min-height: 120px;
|
|
10713
10854
|
}
|
|
10714
|
-
.Layer__linked-accounts__header {
|
|
10715
|
-
padding: var(--spacing-lg);
|
|
10716
|
-
}
|
|
10717
|
-
.Layer__linked-accounts__list {
|
|
10718
|
-
padding: var(--spacing-lg);
|
|
10719
|
-
}
|
|
10720
10855
|
.Layer__linked-accounts__new-account {
|
|
10721
10856
|
box-sizing: border-box;
|
|
10722
10857
|
display: flex;
|
|
@@ -10815,8 +10950,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10815
10950
|
padding: var(--spacing-xs);
|
|
10816
10951
|
border-top-left-radius: var(--border-radius-xs);
|
|
10817
10952
|
border-top-right-radius: var(--border-radius-xs);
|
|
10818
|
-
border-bottom-right-radius: 0;
|
|
10819
10953
|
border-bottom-left-radius: 0;
|
|
10954
|
+
border-bottom-right-radius: 0;
|
|
10820
10955
|
background: var(--color-base-50);
|
|
10821
10956
|
color: var(--text-color-primary);
|
|
10822
10957
|
}
|
|
@@ -10867,8 +11002,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10867
11002
|
padding: 0 var(--spacing-xs);
|
|
10868
11003
|
border-top-left-radius: 0;
|
|
10869
11004
|
border-top-right-radius: 0;
|
|
10870
|
-
border-bottom-right-radius: var(--border-radius-xs);
|
|
10871
11005
|
border-bottom-left-radius: var(--border-radius-xs);
|
|
11006
|
+
border-bottom-right-radius: var(--border-radius-xs);
|
|
10872
11007
|
background: var(--color-base-50);
|
|
10873
11008
|
}
|
|
10874
11009
|
.Layer__linked-account-thumb .middlebar .account-balance-text {
|
|
@@ -10881,8 +11016,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10881
11016
|
gap: var(--spacing-xs);
|
|
10882
11017
|
align-items: center;
|
|
10883
11018
|
padding: var(--spacing-xs);
|
|
10884
|
-
border-bottom-right-radius: var(--border-radius-xs);
|
|
10885
11019
|
border-bottom-left-radius: var(--border-radius-xs);
|
|
11020
|
+
border-bottom-right-radius: var(--border-radius-xs);
|
|
10886
11021
|
}
|
|
10887
11022
|
.Layer__linked-account-thumb .loadingbar .loading-text {
|
|
10888
11023
|
flex: 1;
|
|
@@ -10917,8 +11052,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10917
11052
|
gap: var(--spacing-2xs);
|
|
10918
11053
|
}
|
|
10919
11054
|
.Layer__linked-account-thumb.--as-widget .topbar {
|
|
10920
|
-
border-bottom-right-radius: var(--border-radius-xs);
|
|
10921
11055
|
border-bottom-left-radius: var(--border-radius-xs);
|
|
11056
|
+
border-bottom-right-radius: var(--border-radius-xs);
|
|
10922
11057
|
}
|
|
10923
11058
|
.Layer__linked-account-thumb.--as-widget .account-number {
|
|
10924
11059
|
display: flex;
|
|
@@ -11232,13 +11367,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11232
11367
|
.Layer__ProfitAndLossSummariesListItem {
|
|
11233
11368
|
all: unset;
|
|
11234
11369
|
display: grid;
|
|
11235
|
-
background: var(--color-base-0);
|
|
11236
|
-
border-radius: var(--border-radius-xs);
|
|
11237
|
-
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
11238
11370
|
padding: var(--spacing-4xs);
|
|
11371
|
+
border-radius: var(--border-radius-xs);
|
|
11372
|
+
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
11373
|
+
background: var(--color-base-0);
|
|
11239
11374
|
}
|
|
11240
11375
|
.Layer__ProfitAndLossSummariesListItem[data-active] {
|
|
11241
|
-
box-shadow:
|
|
11376
|
+
box-shadow: 0 0 0 1px var(--color-base-200);
|
|
11242
11377
|
background: var(--color-base-50);
|
|
11243
11378
|
}
|
|
11244
11379
|
.Layer__ProfitAndLossSummariesListItem[data-clickable] {
|
|
@@ -11250,14 +11385,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11250
11385
|
.Layer__ProfitAndLossSummariesList {
|
|
11251
11386
|
all: unset;
|
|
11252
11387
|
display: grid;
|
|
11253
|
-
gap: var(--spacing-sm);
|
|
11254
11388
|
grid-auto-rows: minmax(0, 1fr);
|
|
11389
|
+
gap: var(--spacing-sm);
|
|
11255
11390
|
}
|
|
11256
11391
|
@container (min-width: 48rem) {
|
|
11257
11392
|
.Layer__ProfitAndLossSummariesList {
|
|
11258
11393
|
--column-count: 3;
|
|
11259
|
-
gap: var(--spacing-md);
|
|
11260
11394
|
grid-template-columns: repeat(var(--column-count), minmax(0, 1fr));
|
|
11395
|
+
gap: var(--spacing-md);
|
|
11261
11396
|
}
|
|
11262
11397
|
.Layer__ProfitAndLossSummariesList[data-column-count="4"] {
|
|
11263
11398
|
--column-count: 4;
|
|
@@ -11265,14 +11400,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11265
11400
|
}
|
|
11266
11401
|
.Layer__ProfitAndLossSummariesSummary {
|
|
11267
11402
|
display: grid;
|
|
11268
|
-
|
|
11403
|
+
grid-template-areas: "chart heading" "chart amount";
|
|
11269
11404
|
grid-template-columns: auto minmax(0, 1fr);
|
|
11270
11405
|
gap: var(--spacing-3xs) var(--spacing-xs);
|
|
11271
|
-
|
|
11406
|
+
min-block-size: 3rem;
|
|
11272
11407
|
}
|
|
11273
11408
|
.Layer__ProfitAndLossSummariesSummary[data-size=lg] {
|
|
11274
|
-
min-block-size: 6rem;
|
|
11275
11409
|
column-gap: var(--spacing-md);
|
|
11410
|
+
min-block-size: 6rem;
|
|
11276
11411
|
}
|
|
11277
11412
|
.Layer__ProfitAndLossSummariesSummary [slot=heading] {
|
|
11278
11413
|
grid-area: heading;
|
|
@@ -12020,28 +12155,191 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12020
12155
|
.Layer__project-view .Layer__select__menu {
|
|
12021
12156
|
z-index: 2;
|
|
12022
12157
|
}
|
|
12158
|
+
.Layer__service-offering {
|
|
12159
|
+
box-sizing: border-box;
|
|
12160
|
+
display: flex;
|
|
12161
|
+
flex-direction: column;
|
|
12162
|
+
gap: var(--spacing-md);
|
|
12163
|
+
justify-content: flex-start;
|
|
12164
|
+
height: 100%;
|
|
12165
|
+
width: 100%;
|
|
12166
|
+
border-radius: var(--border-radius-sm);
|
|
12167
|
+
border: none;
|
|
12168
|
+
background: var(--color-white);
|
|
12169
|
+
}
|
|
12170
|
+
.Layer__service-offering__calendly-container {
|
|
12171
|
+
overflow: hidden;
|
|
12172
|
+
max-height: 0;
|
|
12173
|
+
margin: 0;
|
|
12174
|
+
transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
|
|
12175
|
+
}
|
|
12176
|
+
.Layer__service-offering__calendly-container.visible {
|
|
12177
|
+
max-height: 800px;
|
|
12178
|
+
margin: var(--spacing-lg) 0;
|
|
12179
|
+
}
|
|
12180
|
+
.Layer__service-offering__calendly-container .calendly-inline-widget {
|
|
12181
|
+
min-height: 630px;
|
|
12182
|
+
width: 100%;
|
|
12183
|
+
margin-bottom: var(--spacing-lg);
|
|
12184
|
+
transition: opacity 0.3s ease-in-out 0.8s;
|
|
12185
|
+
}
|
|
12186
|
+
.Layer__feature-card {
|
|
12187
|
+
display: flex;
|
|
12188
|
+
flex-direction: column;
|
|
12189
|
+
gap: var(--spacing-md);
|
|
12190
|
+
width: 33%;
|
|
12191
|
+
margin: auto 0;
|
|
12192
|
+
text-align: center;
|
|
12193
|
+
}
|
|
12194
|
+
.Layer__feature-card .img-container {
|
|
12195
|
+
display: flex;
|
|
12196
|
+
align-items: center;
|
|
12197
|
+
justify-content: center;
|
|
12198
|
+
height: 320px;
|
|
12199
|
+
width: auto;
|
|
12200
|
+
}
|
|
12201
|
+
@media (width <= 768px) {
|
|
12202
|
+
.Layer__feature-card .img-container {
|
|
12203
|
+
height: 100%;
|
|
12204
|
+
max-width: max(80%, 240px);
|
|
12205
|
+
margin: var(--spacing-xl) auto;
|
|
12206
|
+
}
|
|
12207
|
+
}
|
|
12208
|
+
@media (width <= 1024px) {
|
|
12209
|
+
.Layer__feature-card .img-container {
|
|
12210
|
+
margin: var(--spacing-md) auto;
|
|
12211
|
+
}
|
|
12212
|
+
}
|
|
12213
|
+
.Layer__feature-card .img-container img {
|
|
12214
|
+
height: 100%;
|
|
12215
|
+
width: auto;
|
|
12216
|
+
max-width: 100%;
|
|
12217
|
+
margin: 0 auto;
|
|
12218
|
+
filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.2));
|
|
12219
|
+
}
|
|
12220
|
+
.Layer__service-offering-options {
|
|
12221
|
+
max-width: 1200px;
|
|
12222
|
+
padding: var(--spacing-xl) var(--spacing-lg);
|
|
12223
|
+
margin: 0 auto;
|
|
12224
|
+
}
|
|
12225
|
+
.Layer__service-offering-options__grid {
|
|
12226
|
+
display: grid;
|
|
12227
|
+
grid-template-columns: 1fr 1fr;
|
|
12228
|
+
gap: var(--spacing-2xl);
|
|
12229
|
+
justify-items: center;
|
|
12230
|
+
margin: 0 auto;
|
|
12231
|
+
}
|
|
12232
|
+
@media (width <= 720px) {
|
|
12233
|
+
.Layer__service-offering-options__grid {
|
|
12234
|
+
grid-template-columns: 1fr;
|
|
12235
|
+
}
|
|
12236
|
+
}
|
|
12237
|
+
.Layer__service-offering-options__card {
|
|
12238
|
+
position: relative;
|
|
12239
|
+
display: flex;
|
|
12240
|
+
flex-direction: column;
|
|
12241
|
+
gap: var(--spacing-xs);
|
|
12242
|
+
border-radius: 16px;
|
|
12243
|
+
border: 1px solid var(--color-base-100);
|
|
12244
|
+
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
12245
|
+
margin: 0;
|
|
12246
|
+
background: white;
|
|
12247
|
+
overflow-wrap: break-word;
|
|
12248
|
+
}
|
|
12249
|
+
.Layer__service-offering-options__feature-check {
|
|
12250
|
+
color: var(--fg-subtle);
|
|
12251
|
+
}
|
|
12252
|
+
.Layer__service-offering__content {
|
|
12253
|
+
display: flex;
|
|
12254
|
+
flex-direction: column;
|
|
12255
|
+
gap: var(--spacing-xl);
|
|
12256
|
+
}
|
|
12257
|
+
.Layer__service-offering__offers {
|
|
12258
|
+
width: 100%;
|
|
12259
|
+
background-color: transparent;
|
|
12260
|
+
}
|
|
12261
|
+
.Layer__service-offering__responsive-layout {
|
|
12262
|
+
display: flex;
|
|
12263
|
+
flex-direction: row;
|
|
12264
|
+
justify-content: center;
|
|
12265
|
+
}
|
|
12266
|
+
@media (width <= 1440px) {
|
|
12267
|
+
.Layer__service-offering__responsive-layout {
|
|
12268
|
+
flex-direction: column;
|
|
12269
|
+
}
|
|
12270
|
+
}
|
|
12271
|
+
.Layer__service-offering__responsive-content {
|
|
12272
|
+
display: flex;
|
|
12273
|
+
flex-direction: column;
|
|
12274
|
+
gap: var(--spacing-2xl);
|
|
12275
|
+
max-width: 420px;
|
|
12276
|
+
}
|
|
12277
|
+
@media (width <= 1440px) {
|
|
12278
|
+
.Layer__service-offering__responsive-content {
|
|
12279
|
+
max-width: 100%;
|
|
12280
|
+
}
|
|
12281
|
+
}
|
|
12282
|
+
.Layer__service-offering__responsive-image {
|
|
12283
|
+
display: flex;
|
|
12284
|
+
align-items: center;
|
|
12285
|
+
justify-content: center;
|
|
12286
|
+
transition: margin-top 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
12287
|
+
}
|
|
12288
|
+
@media (width <= 1440px) {
|
|
12289
|
+
.Layer__service-offering__responsive-image {
|
|
12290
|
+
margin-top: var(--spacing-lg);
|
|
12291
|
+
}
|
|
12292
|
+
}
|
|
12293
|
+
.Layer__service-offering__responsive-image img {
|
|
12294
|
+
height: auto;
|
|
12295
|
+
max-height: 480px;
|
|
12296
|
+
max-width: 100%;
|
|
12297
|
+
object-fit: cover;
|
|
12298
|
+
opacity: 0;
|
|
12299
|
+
animation: fade-in-image 0.4s ease-in forwards;
|
|
12300
|
+
animation-delay: 0.1s;
|
|
12301
|
+
}
|
|
12302
|
+
@keyframes fade-in-image {
|
|
12303
|
+
from {
|
|
12304
|
+
opacity: 0;
|
|
12305
|
+
}
|
|
12306
|
+
to {
|
|
12307
|
+
opacity: 1;
|
|
12308
|
+
}
|
|
12309
|
+
}
|
|
12310
|
+
.Layer__mobile-feature-section {
|
|
12311
|
+
box-sizing: border-box;
|
|
12312
|
+
gap: var(--spacing-xl);
|
|
12313
|
+
width: 100%;
|
|
12314
|
+
padding: 0 var(--spacing-md);
|
|
12315
|
+
}
|
|
12316
|
+
.Layer__mobile-feature-section .Layer__feature-card {
|
|
12317
|
+
width: 100%;
|
|
12318
|
+
max-width: 100%;
|
|
12319
|
+
margin: 0 auto;
|
|
12320
|
+
}
|
|
12023
12321
|
.Layer__tooltip {
|
|
12024
12322
|
box-sizing: border-box;
|
|
12323
|
+
z-index: 100;
|
|
12025
12324
|
width: max-content;
|
|
12026
12325
|
max-width: calc(100vw - 10px);
|
|
12027
|
-
z-index: 100;
|
|
12028
12326
|
}
|
|
12029
12327
|
.Layer__tooltip[data-width=md] {
|
|
12030
12328
|
max-width: 256px;
|
|
12031
12329
|
}
|
|
12032
12330
|
.Layer__tooltip .Layer__tooltip-content {
|
|
12033
|
-
|
|
12034
|
-
color: var(--color-base-300);
|
|
12331
|
+
box-sizing: border-box;
|
|
12035
12332
|
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
12036
12333
|
border-radius: var(--border-radius-2xs);
|
|
12037
|
-
|
|
12334
|
+
background: var(--color-base-1000);
|
|
12038
12335
|
font-size: var(--text-sm);
|
|
12336
|
+
color: var(--color-base-300);
|
|
12039
12337
|
}
|
|
12040
12338
|
.Layer__tooltip-trigger {
|
|
12041
12339
|
display: flex;
|
|
12042
12340
|
flex: 1;
|
|
12043
|
-
padding-top: 2px;
|
|
12044
12341
|
max-width: 100%;
|
|
12342
|
+
padding-top: 2px;
|
|
12045
12343
|
}
|
|
12046
12344
|
.Layer__actionable-list__tooltip-content {
|
|
12047
12345
|
z-index: 99999;
|
|
@@ -12051,36 +12349,36 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12051
12349
|
align-items: flex-start;
|
|
12052
12350
|
}
|
|
12053
12351
|
.Layer__actionable-list__tooltip-content .Layer__tooltip-content {
|
|
12054
|
-
margin-right: auto;
|
|
12055
12352
|
max-width: 220px;
|
|
12056
|
-
border-radius: var(--border-radius-3xs);
|
|
12057
12353
|
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
12354
|
+
border-radius: var(--border-radius-3xs);
|
|
12355
|
+
margin-right: auto;
|
|
12058
12356
|
background-color: var(--color-base-800);
|
|
12059
12357
|
color: var(--color-base-0);
|
|
12060
12358
|
}
|
|
12061
12359
|
.Layer__toasts-container {
|
|
12062
12360
|
position: fixed;
|
|
12063
|
-
|
|
12361
|
+
z-index: 1000;
|
|
12064
12362
|
right: 20px;
|
|
12363
|
+
bottom: 20px;
|
|
12065
12364
|
display: flex;
|
|
12066
12365
|
flex-direction: column-reverse;
|
|
12067
12366
|
gap: 10px;
|
|
12068
|
-
z-index: 1000;
|
|
12069
12367
|
}
|
|
12070
12368
|
.Layer__toasts-container .Layer__toast {
|
|
12071
|
-
color: var(--color-base-0);
|
|
12072
|
-
background: var(--color-base-1000);
|
|
12073
|
-
border-radius: var(--spacing-3xs);
|
|
12074
12369
|
padding: var(--spacing-xs) var(--spacing-md);
|
|
12075
|
-
|
|
12076
|
-
transform: translateY(20px);
|
|
12077
|
-
transition: opacity 0.6s linear, transform 0.6s linear;
|
|
12370
|
+
border-radius: var(--spacing-3xs);
|
|
12078
12371
|
box-shadow:
|
|
12079
12372
|
0 4px 4px 0 var(--base-transparent-5, rgba(16, 24, 40, 0.05)),
|
|
12080
12373
|
0 3px 3px 0 var(--base-transparent-6, rgba(16, 24, 40, 0.06)),
|
|
12081
12374
|
0 2px 2px 0 var(--base-transparent-8, rgba(16, 24, 40, 0.08)),
|
|
12082
12375
|
0 1px 0 0 var(--base-transparent-12, rgba(16, 24, 40, 0.12)),
|
|
12083
12376
|
0 0 0 1px var(--base-900, #05132f);
|
|
12377
|
+
background: var(--color-base-1000);
|
|
12378
|
+
color: var(--color-base-0);
|
|
12379
|
+
opacity: 0;
|
|
12380
|
+
transform: translateY(20px);
|
|
12381
|
+
transition: opacity 0.6s linear, transform 0.6s linear;
|
|
12084
12382
|
}
|
|
12085
12383
|
.Layer__toasts-container .Layer__toast p {
|
|
12086
12384
|
margin: 0;
|
|
@@ -12088,12 +12386,12 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12088
12386
|
color: var(--color-base-0);
|
|
12089
12387
|
}
|
|
12090
12388
|
.Layer__toasts-container .Layer__toast.Layer__toast--success {
|
|
12091
|
-
background: var(--color-info-success);
|
|
12092
12389
|
box-shadow: 0 0 0 1px var(--color-info-success);
|
|
12390
|
+
background: var(--color-info-success);
|
|
12093
12391
|
}
|
|
12094
12392
|
.Layer__toasts-container .Layer__toast.Layer__toast--error {
|
|
12095
|
-
background: var(--color-info-error);
|
|
12096
12393
|
box-shadow: 0 0 0 1px var(--color-info-error);
|
|
12394
|
+
background: var(--color-info-error);
|
|
12097
12395
|
}
|
|
12098
12396
|
.Layer__toast.enter {
|
|
12099
12397
|
opacity: 1;
|
|
@@ -12112,9 +12410,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12112
12410
|
}
|
|
12113
12411
|
.Layer__TransactionsToReview {
|
|
12114
12412
|
display: flex;
|
|
12413
|
+
gap: var(--spacing-xs);
|
|
12115
12414
|
align-items: center;
|
|
12116
12415
|
justify-content: space-between;
|
|
12117
|
-
gap: var(--spacing-xs);
|
|
12118
12416
|
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
12119
12417
|
}
|
|
12120
12418
|
.Layer__accounting-overview-profit-and-loss-charts {
|
|
@@ -12145,8 +12443,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12145
12443
|
}
|
|
12146
12444
|
}
|
|
12147
12445
|
.Layer__accounting-overview-profit-and-loss-chart {
|
|
12148
|
-
width: 100%;
|
|
12149
12446
|
box-sizing: border-box;
|
|
12447
|
+
width: 100%;
|
|
12150
12448
|
}
|
|
12151
12449
|
@container (max-width: 460px) {
|
|
12152
12450
|
.Layer__component.Layer__accounting-overview-profit-and-loss .recharts-responsive-container {
|
|
@@ -12216,7 +12514,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
12216
12514
|
}
|
|
12217
12515
|
@container (min-width: 1024px) {
|
|
12218
12516
|
.Layer__reports .Layer__panel__content {
|
|
12219
|
-
border-bottom-right-radius: 0;
|
|
12220
12517
|
border-top-right-radius: 0;
|
|
12518
|
+
border-bottom-right-radius: 0;
|
|
12221
12519
|
}
|
|
12222
12520
|
}
|