@layerfi/components 0.1.5 → 0.1.7
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/esm/index.js +1950 -734
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +209 -17
- package/dist/index.js +2009 -799
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +896 -52
- package/dist/styles/index.css.map +3 -3
- package/package.json +1 -1
package/dist/styles/index.css
CHANGED
|
@@ -23,15 +23,18 @@
|
|
|
23
23
|
--color-base-200: hsl(var(--color-dark-h) 1% 94%);
|
|
24
24
|
--color-base-300: hsl(var(--color-dark-h) 2% 92%);
|
|
25
25
|
--color-base-400: var(--color-light);
|
|
26
|
-
--color-base-500: hsl(var(--color-dark-h)
|
|
26
|
+
--color-base-500: hsl(var(--color-dark-h) 2% 53%);
|
|
27
27
|
--color-base-600: hsl(var(--color-dark-h) 7% 40%);
|
|
28
28
|
--color-base-700: hsl(var(--color-dark-h) 9% 27%);
|
|
29
29
|
--color-base-800: hsl(var(--color-dark-h) 12% 20%);
|
|
30
30
|
--color-base-900: var(--color-dark);
|
|
31
31
|
--color-base-1000: hsl(var(--color-dark-h) 20% 7%);
|
|
32
32
|
--max-component-width: 1408px;
|
|
33
|
+
--base-transparent-4: hsla(var(--color-dark-h), var(--color-dark-s), var(--color-dark-l), 0.04);
|
|
33
34
|
--base-transparent-5: hsla(var(--color-dark-h), var(--color-dark-s), var(--color-dark-l), 0.05);
|
|
34
35
|
--base-transparent-6: hsla(var(--color-dark-h), var(--color-dark-s), var(--color-dark-l), 0.06);
|
|
36
|
+
--base-transparent-8: hsla(var(--color-dark-h), var(--color-dark-s), var(--color-dark-l), 0.08);
|
|
37
|
+
--base-transparent-12: hsla(var(--color-dark-h), var(--color-dark-s), var(--color-dark-l), 0.12);
|
|
35
38
|
--color-primary: var(--color-dark);
|
|
36
39
|
--color-accent: var(--color-light);
|
|
37
40
|
--color-secondary: var(--color-base);
|
|
@@ -65,6 +68,7 @@
|
|
|
65
68
|
--spacing-lg: 24px;
|
|
66
69
|
--spacing-xl: 32px;
|
|
67
70
|
--spacing-2xl: 36px;
|
|
71
|
+
--spacing-3xl: 40px;
|
|
68
72
|
--spacing-5xl: 52px;
|
|
69
73
|
--bg-color: var(--color-white);
|
|
70
74
|
--border-color: var(--color-base-200);
|
|
@@ -94,7 +98,7 @@
|
|
|
94
98
|
--btn-bg-color-icon-hover: var(--color-accent);
|
|
95
99
|
--btn-secondary-color: var(--color-black);
|
|
96
100
|
--btn-secondary-bg-color: var(--color-white);
|
|
97
|
-
--badge-color: var(--
|
|
101
|
+
--badge-color: var(--color-dark);
|
|
98
102
|
--badge-bg-color: var(--color-base-400);
|
|
99
103
|
--badge-border-radius: var(--border-radius-sm);
|
|
100
104
|
--table-bg: var(--color-white);
|
|
@@ -152,12 +156,22 @@
|
|
|
152
156
|
.Layer__component *::-webkit-scrollbar-thumb:hover {
|
|
153
157
|
background: #999;
|
|
154
158
|
}
|
|
159
|
+
.Layer__sortable-col .Layer__sort-arrows .desc-arrow,
|
|
160
|
+
.Layer__sortable-col .Layer__sort-arrows .asc-arrow {
|
|
161
|
+
stroke: var(--color-base-500);
|
|
162
|
+
}
|
|
163
|
+
.Layer__sortable-col.sort--desc .Layer__sort-arrows .desc-arrow {
|
|
164
|
+
stroke: var(--color-base-1000);
|
|
165
|
+
}
|
|
166
|
+
.Layer__sortable-col.sort--asc .Layer__sort-arrows .asc-arrow {
|
|
167
|
+
stroke: var(--color-base-1000);
|
|
168
|
+
}
|
|
155
169
|
.Layer__badge {
|
|
156
170
|
display: inline-flex;
|
|
157
171
|
gap: var(--spacing-3xs);
|
|
158
172
|
border-radius: var(--border-radius-5xl);
|
|
159
|
-
background-color: var(--color
|
|
160
|
-
color: var(--color
|
|
173
|
+
background-color: var(--badge-bg-color);
|
|
174
|
+
color: var(--badge-color);
|
|
161
175
|
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
162
176
|
font-size: var(--text-sm);
|
|
163
177
|
align-items: center;
|
|
@@ -175,9 +189,9 @@
|
|
|
175
189
|
cursor: pointer;
|
|
176
190
|
}
|
|
177
191
|
.Layer__badge.Layer__badge--clickable:hover {
|
|
178
|
-
background-color: var(--color
|
|
179
|
-
color: var(--color
|
|
180
|
-
border-color: var(--color
|
|
192
|
+
background-color: var(--badge-color);
|
|
193
|
+
color: var(--badge-bg-color);
|
|
194
|
+
border-color: var(--badge-color);
|
|
181
195
|
}
|
|
182
196
|
.Layer__badge .Layer__badge__icon {
|
|
183
197
|
margin-top: 2px;
|
|
@@ -296,11 +310,8 @@
|
|
|
296
310
|
font-family: var(--font-family);
|
|
297
311
|
font-size: var(--btn-font-size);
|
|
298
312
|
}
|
|
299
|
-
.Layer__btn-icon
|
|
300
|
-
|
|
301
|
-
}
|
|
302
|
-
.Layer__btn-icon--right.Layer__btn-icon--primary {
|
|
303
|
-
margin-left: -4px;
|
|
313
|
+
.Layer__btn--with-primary-icon .Layer__btn-text {
|
|
314
|
+
padding-right: calc(var(--spacing-md) - 4px);
|
|
304
315
|
}
|
|
305
316
|
.Layer__btn--icon-only .Layer__btn-icon--right {
|
|
306
317
|
margin-left: 0;
|
|
@@ -349,17 +360,44 @@
|
|
|
349
360
|
text-decoration: underline;
|
|
350
361
|
color: var(--color-base-700);
|
|
351
362
|
background: transparent;
|
|
363
|
+
padding: 0;
|
|
352
364
|
cursor: pointer;
|
|
353
365
|
}
|
|
354
366
|
.Layer__text-btn:hover {
|
|
355
367
|
color: var(--color-base-1000);
|
|
356
368
|
}
|
|
369
|
+
.Layer__retry-btn {
|
|
370
|
+
color: var(--color-danger);
|
|
371
|
+
}
|
|
372
|
+
.Layer__retry-btn .Layer__btn-icon {
|
|
373
|
+
color: var(--color-danger);
|
|
374
|
+
transition: all 300ms ease-in-out;
|
|
375
|
+
}
|
|
376
|
+
.Layer__retry-btn:hover .Layer__btn-icon {
|
|
377
|
+
transform: rotate(-30deg);
|
|
378
|
+
}
|
|
379
|
+
.Layer__retry-btn.Layer__btn--processing .Layer__btn-icon {
|
|
380
|
+
-webkit-animation: rotating-ccw 2s linear infinite;
|
|
381
|
+
-moz-animation: rotating-ccw 2s linear infinite;
|
|
382
|
+
-ms-animation: rotating-ccw 2s linear infinite;
|
|
383
|
+
-o-animation: rotating-ccw 2s linear infinite;
|
|
384
|
+
animation: rotating-ccw 2s linear infinite;
|
|
385
|
+
}
|
|
386
|
+
.Layer__unsaved-info {
|
|
387
|
+
color: var(--color-danger);
|
|
388
|
+
display: flex;
|
|
389
|
+
align-items: center;
|
|
390
|
+
gap: var(--spacing-4xs);
|
|
391
|
+
}
|
|
357
392
|
.Layer__component .recharts-responsive-container {
|
|
358
393
|
padding: 4px;
|
|
359
394
|
box-sizing: border-box;
|
|
360
395
|
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
361
396
|
border-radius: var(--border-radius-xs);
|
|
362
397
|
}
|
|
398
|
+
.Layer__component .recharts-responsive-container .recharts-cartesian-axis-line {
|
|
399
|
+
stroke: var(--color-base-300);
|
|
400
|
+
}
|
|
363
401
|
.Layer__chart-container {
|
|
364
402
|
min-height: 200px;
|
|
365
403
|
}
|
|
@@ -421,7 +459,7 @@
|
|
|
421
459
|
padding: var(--spacing-md);
|
|
422
460
|
}
|
|
423
461
|
}
|
|
424
|
-
@container (min-width:
|
|
462
|
+
@container (min-width: 1023px) {
|
|
425
463
|
.Layer__component-header {
|
|
426
464
|
padding-left: var(--spacing-xl);
|
|
427
465
|
padding-right: var(--spacing-xl);
|
|
@@ -442,6 +480,7 @@
|
|
|
442
480
|
.Layer__input {
|
|
443
481
|
padding: 8px;
|
|
444
482
|
box-sizing: border-box;
|
|
483
|
+
position: relative;
|
|
445
484
|
border: 1px solid var(--border-color);
|
|
446
485
|
border-radius: var(--input-border-radius);
|
|
447
486
|
border-width: 0px;
|
|
@@ -455,8 +494,30 @@
|
|
|
455
494
|
color: var(--color-danger);
|
|
456
495
|
box-shadow: 0px 0px 0px 1px var(--color-base-300), 0px 0px 0px 2px var(--color-danger);
|
|
457
496
|
}
|
|
497
|
+
.Layer__input:disabled {
|
|
498
|
+
background-color: var(--color-base-100);
|
|
499
|
+
color: var(--color-base-800);
|
|
500
|
+
}
|
|
501
|
+
.Layer__input--with-left-text {
|
|
502
|
+
padding-left: 60px;
|
|
503
|
+
}
|
|
504
|
+
.Layer__input-left-text {
|
|
505
|
+
position: absolute;
|
|
506
|
+
display: flex;
|
|
507
|
+
align-items: center;
|
|
508
|
+
height: 100%;
|
|
509
|
+
left: 0;
|
|
510
|
+
top: 0;
|
|
511
|
+
padding: var(--spacing-xs);
|
|
512
|
+
padding-right: var(--spacing-sm);
|
|
513
|
+
box-sizing: border-box;
|
|
514
|
+
border-right: 1px solid var(--input-border-color);
|
|
515
|
+
color: var(--color-base-700);
|
|
516
|
+
font-size: var(--text-sm);
|
|
517
|
+
}
|
|
458
518
|
.Layer__input-tooltip {
|
|
459
519
|
flex: 0;
|
|
520
|
+
position: relative;
|
|
460
521
|
}
|
|
461
522
|
.Layer__textarea {
|
|
462
523
|
padding: 10px 14px;
|
|
@@ -567,7 +628,7 @@
|
|
|
567
628
|
border-radius: 6px;
|
|
568
629
|
}
|
|
569
630
|
.Layer__toggle--initialized .Layer__toggle__thumb {
|
|
570
|
-
transition: left
|
|
631
|
+
transition: left 150ms ease, width 150ms ease;
|
|
571
632
|
}
|
|
572
633
|
.Layer__select {
|
|
573
634
|
border-width: 0px;
|
|
@@ -627,7 +688,7 @@
|
|
|
627
688
|
.Layer__select__menu-portal .Layer__select__group-heading {
|
|
628
689
|
color: var(--color-base-500);
|
|
629
690
|
font-size: var(--text-xs);
|
|
630
|
-
padding: var(--spacing-xs);
|
|
691
|
+
padding: var(--spacing-xs) var(--spacing-md);
|
|
631
692
|
}
|
|
632
693
|
.Layer__select__menu-portal .Layer__select__option {
|
|
633
694
|
font-family: var(--font-family);
|
|
@@ -636,7 +697,7 @@
|
|
|
636
697
|
cursor: pointer;
|
|
637
698
|
transition: all 200ms ease-out;
|
|
638
699
|
background: var(--color-white);
|
|
639
|
-
padding: var(--spacing-xs);
|
|
700
|
+
padding: var(--spacing-xs) var(--spacing-md);
|
|
640
701
|
}
|
|
641
702
|
.Layer__select__menu-portal .Layer__select__option.Layer__select__option--is-selected {
|
|
642
703
|
color: var(--text-color-primary);
|
|
@@ -667,7 +728,7 @@
|
|
|
667
728
|
.Layer__select__menu-portal .Layer__select__group-heading--main {
|
|
668
729
|
font-size: var(--text-xs);
|
|
669
730
|
color: var(--color-base-700);
|
|
670
|
-
padding: var(--spacing-xs);
|
|
731
|
+
padding: var(--spacing-xs) var(--spacing-md);
|
|
671
732
|
border-bottom: 1px solid var(--color-base-200);
|
|
672
733
|
}
|
|
673
734
|
.Layer__select__menu-portal .Layer__select__option--separator {
|
|
@@ -714,6 +775,11 @@
|
|
|
714
775
|
max-width: 100%;
|
|
715
776
|
flex: 1;
|
|
716
777
|
}
|
|
778
|
+
@media screen and (max-width: 400px) {
|
|
779
|
+
.Layer__select__menu-portal .Layer__select__option {
|
|
780
|
+
font-size: var(--text-sm) !important;
|
|
781
|
+
}
|
|
782
|
+
}
|
|
717
783
|
.Layer__table {
|
|
718
784
|
width: 100%;
|
|
719
785
|
border-collapse: separate;
|
|
@@ -855,6 +921,13 @@
|
|
|
855
921
|
.Layer__text.Layer__text--bold {
|
|
856
922
|
font-variation-settings: "wght" var(--font-weight-bold);
|
|
857
923
|
}
|
|
924
|
+
.Layer__text--error {
|
|
925
|
+
color: var(--color-danger);
|
|
926
|
+
}
|
|
927
|
+
.Layer__label {
|
|
928
|
+
color: var(--color-base-500);
|
|
929
|
+
font-variation-settings: "wght" var(--font-weight-normal);
|
|
930
|
+
}
|
|
858
931
|
.Layer__flex-1 {
|
|
859
932
|
flex: 1;
|
|
860
933
|
}
|
|
@@ -892,6 +965,22 @@
|
|
|
892
965
|
transform: rotate(360deg);
|
|
893
966
|
}
|
|
894
967
|
}
|
|
968
|
+
@keyframes rotating-ccw {
|
|
969
|
+
from {
|
|
970
|
+
-ms-transform: rotate(0deg);
|
|
971
|
+
-moz-transform: rotate(0deg);
|
|
972
|
+
-webkit-transform: rotate(0deg);
|
|
973
|
+
-o-transform: rotate(0deg);
|
|
974
|
+
transform: rotate(0deg);
|
|
975
|
+
}
|
|
976
|
+
to {
|
|
977
|
+
-ms-transform: rotate(-360deg);
|
|
978
|
+
-moz-transform: rotate(-360deg);
|
|
979
|
+
-webkit-transform: rotate(-360deg);
|
|
980
|
+
-o-transform: rotate(-360deg);
|
|
981
|
+
transform: rotate(-360deg);
|
|
982
|
+
}
|
|
983
|
+
}
|
|
895
984
|
.Layer__anim--rotating {
|
|
896
985
|
-webkit-animation: rotating 2s linear infinite;
|
|
897
986
|
-moz-animation: rotating 2s linear infinite;
|
|
@@ -1127,13 +1216,28 @@
|
|
|
1127
1216
|
.Layer__bank-transactions__loader-container {
|
|
1128
1217
|
padding: var(--spacing-2xl);
|
|
1129
1218
|
}
|
|
1219
|
+
.Layer__bank-transactions__header {
|
|
1220
|
+
position: sticky;
|
|
1221
|
+
left: 0;
|
|
1222
|
+
}
|
|
1130
1223
|
.Layer__bank-transaction-row {
|
|
1131
|
-
transition:
|
|
1224
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
1132
1225
|
top: 1px;
|
|
1226
|
+
transform: scale(0.8);
|
|
1227
|
+
opacity: 0;
|
|
1228
|
+
}
|
|
1229
|
+
.Layer__bank-transaction-row.show {
|
|
1230
|
+
transform: scale(1);
|
|
1231
|
+
opacity: 1;
|
|
1133
1232
|
}
|
|
1134
1233
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--removing {
|
|
1135
1234
|
top: 0;
|
|
1136
1235
|
}
|
|
1236
|
+
.Layer__bank-transaction-row.Layer__bank-transaction-row--removing .Layer__table-cell-content {
|
|
1237
|
+
padding: 0 var(--spacing-md);
|
|
1238
|
+
overflow: hidden;
|
|
1239
|
+
min-height: 0;
|
|
1240
|
+
}
|
|
1137
1241
|
.Layer__bank-transaction-row .Layer__table-cell {
|
|
1138
1242
|
border-top: 1px solid var(--border-color);
|
|
1139
1243
|
}
|
|
@@ -1163,6 +1267,7 @@
|
|
|
1163
1267
|
.Layer__expanded-bank-transaction-row {
|
|
1164
1268
|
display: block;
|
|
1165
1269
|
overflow: hidden;
|
|
1270
|
+
position: relative;
|
|
1166
1271
|
background-color: var(--bg-element-focus);
|
|
1167
1272
|
transition: background-color var(--transition-speed) ease-in-out, height var(--transition-speed) ease-in-out;
|
|
1168
1273
|
}
|
|
@@ -1225,6 +1330,11 @@
|
|
|
1225
1330
|
overflow: hidden;
|
|
1226
1331
|
text-overflow: ellipsis;
|
|
1227
1332
|
}
|
|
1333
|
+
.Layer__bank-transaction-list-item__category-text__text {
|
|
1334
|
+
white-space: nowrap;
|
|
1335
|
+
text-overflow: ellipsis;
|
|
1336
|
+
overflow: hidden;
|
|
1337
|
+
}
|
|
1228
1338
|
.Layer__bank-transaction-list-item__content,
|
|
1229
1339
|
.Layer__expanded-bank-transaction-row__content {
|
|
1230
1340
|
display: flex;
|
|
@@ -1264,6 +1374,49 @@
|
|
|
1264
1374
|
max-width: 100%;
|
|
1265
1375
|
opacity: 1;
|
|
1266
1376
|
}
|
|
1377
|
+
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__select .Layer__select__control {
|
|
1378
|
+
max-width: 0;
|
|
1379
|
+
overflow: hidden;
|
|
1380
|
+
}
|
|
1381
|
+
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
1382
|
+
max-width: 0;
|
|
1383
|
+
overflow: hidden;
|
|
1384
|
+
}
|
|
1385
|
+
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__splits-buttons {
|
|
1386
|
+
max-width: 0;
|
|
1387
|
+
overflow: hidden;
|
|
1388
|
+
}
|
|
1389
|
+
.Layer__expanded-bank-transaction-row__content-panel:not(.Layer__expanded-bank-transaction-row__content-panel--active) .Layer__expanded-bank-transaction-row__splits-total {
|
|
1390
|
+
max-width: 0;
|
|
1391
|
+
overflow: hidden;
|
|
1392
|
+
}
|
|
1393
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__right-col {
|
|
1394
|
+
display: flex;
|
|
1395
|
+
gap: var(--spacing-sm);
|
|
1396
|
+
flex: 1;
|
|
1397
|
+
}
|
|
1398
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
1399
|
+
width: 36px;
|
|
1400
|
+
height: 36px;
|
|
1401
|
+
padding: 0;
|
|
1402
|
+
}
|
|
1403
|
+
@container (min-width: 701px) {
|
|
1404
|
+
.Layer__expanded-bank-transaction-row__content-panel.Layer__expanded-bank-transaction-row__content-panel--active {
|
|
1405
|
+
max-width: 100%;
|
|
1406
|
+
opacity: 1;
|
|
1407
|
+
}
|
|
1408
|
+
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
1409
|
+
max-height: 38px;
|
|
1410
|
+
}
|
|
1411
|
+
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__splits-buttons {
|
|
1412
|
+
max-height: 38px;
|
|
1413
|
+
white-space: nowrap;
|
|
1414
|
+
}
|
|
1415
|
+
.Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__splits-total {
|
|
1416
|
+
max-height: 25px;
|
|
1417
|
+
white-space: nowrap;
|
|
1418
|
+
}
|
|
1419
|
+
}
|
|
1267
1420
|
.Layer__expanded-bank-transaction-row__content-toggle {
|
|
1268
1421
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
1269
1422
|
}
|
|
@@ -1277,6 +1430,9 @@
|
|
|
1277
1430
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
1278
1431
|
flex: 1;
|
|
1279
1432
|
padding-top: 2px;
|
|
1433
|
+
display: flex;
|
|
1434
|
+
flex-direction: column;
|
|
1435
|
+
gap: var(--spacing-sm);
|
|
1280
1436
|
}
|
|
1281
1437
|
.Layer__expanded-bank-transaction-row__splits-total {
|
|
1282
1438
|
color: var(--color-base-500);
|
|
@@ -1285,6 +1441,12 @@
|
|
|
1285
1441
|
.Layer__expanded-bank-transaction-row__splits-buttons {
|
|
1286
1442
|
padding-bottom: 2px;
|
|
1287
1443
|
}
|
|
1444
|
+
.Layer__expanded-bank-transaction-row__total-and-btns {
|
|
1445
|
+
display: flex;
|
|
1446
|
+
flex-direction: column;
|
|
1447
|
+
gap: var(--spacing-sm);
|
|
1448
|
+
padding: var(--spacing-sm) 0;
|
|
1449
|
+
}
|
|
1288
1450
|
.Layer__bank-transaction-row__table-cell--amount-credit,
|
|
1289
1451
|
.Layer__bank-transaction-list-item__amount-credit {
|
|
1290
1452
|
justify-content: flex-end;
|
|
@@ -1323,6 +1485,10 @@
|
|
|
1323
1485
|
transition: border 5s ease-out;
|
|
1324
1486
|
width: 0%;
|
|
1325
1487
|
}
|
|
1488
|
+
.Layer__bank-transactions--to-review .Layer__bank-transactions__table .Layer__bank-transaction__submit-btn,
|
|
1489
|
+
.Layer__bank-transactions--to-review .Layer__bank-transactions__table .Layer__bank-transaction__retry-btn {
|
|
1490
|
+
min-width: 122px;
|
|
1491
|
+
}
|
|
1326
1492
|
.Layer__bank-transaction-row__actions-cell--open {
|
|
1327
1493
|
border-left: 1px solid transparent;
|
|
1328
1494
|
}
|
|
@@ -1335,7 +1501,6 @@
|
|
|
1335
1501
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
1336
1502
|
display: flex;
|
|
1337
1503
|
flex-direction: row;
|
|
1338
|
-
margin-bottom: 0.5rem;
|
|
1339
1504
|
gap: var(--spacing-md);
|
|
1340
1505
|
}
|
|
1341
1506
|
.Layer__bank-transactions__list {
|
|
@@ -1347,6 +1512,13 @@
|
|
|
1347
1512
|
display: flex;
|
|
1348
1513
|
flex-direction: column;
|
|
1349
1514
|
border-bottom: 1px solid var(--border-color);
|
|
1515
|
+
transform: scale(0.92);
|
|
1516
|
+
opacity: 0;
|
|
1517
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
1518
|
+
}
|
|
1519
|
+
.Layer__bank-transaction-list-item.show {
|
|
1520
|
+
opacity: 1;
|
|
1521
|
+
transform: scale(1);
|
|
1350
1522
|
}
|
|
1351
1523
|
.Layer__bank-transaction-list-item .Layer__bank-transaction-list-item__base-row {
|
|
1352
1524
|
max-height: 60px;
|
|
@@ -1360,6 +1532,12 @@
|
|
|
1360
1532
|
overflow: hidden;
|
|
1361
1533
|
transition: all var(--transition-speed) ease-out;
|
|
1362
1534
|
}
|
|
1535
|
+
.Layer__bank-transaction-list-item > .Layer__text--error {
|
|
1536
|
+
padding: var(--spacing-md);
|
|
1537
|
+
padding-top: 0;
|
|
1538
|
+
margin: 0;
|
|
1539
|
+
font-size: var(--text-xs);
|
|
1540
|
+
}
|
|
1363
1541
|
.Layer__bank-transaction-list-item.Layer__bank-transaction-list-item--expanded {
|
|
1364
1542
|
background: var(--bg-element-focus);
|
|
1365
1543
|
}
|
|
@@ -1367,6 +1545,7 @@
|
|
|
1367
1545
|
max-height: 0;
|
|
1368
1546
|
padding: 0;
|
|
1369
1547
|
opacity: 0;
|
|
1548
|
+
z-index: -1;
|
|
1370
1549
|
}
|
|
1371
1550
|
.Layer__bank-transaction-list-item.Layer__bank-transaction-list-item--expanded .Layer__bank-transaction-list-item__expanded-row {
|
|
1372
1551
|
max-height: unset;
|
|
@@ -1392,6 +1571,7 @@
|
|
|
1392
1571
|
gap: 4px;
|
|
1393
1572
|
padding: var(--spacing-md);
|
|
1394
1573
|
padding-bottom: var(--spacing-sm);
|
|
1574
|
+
justify-content: space-between;
|
|
1395
1575
|
}
|
|
1396
1576
|
.Layer__bank-transaction-list-item__heading .Layer__bank-transaction-list-item__heading-separator {
|
|
1397
1577
|
display: block;
|
|
@@ -1399,8 +1579,14 @@
|
|
|
1399
1579
|
width: 1px;
|
|
1400
1580
|
background: var(--color-base-200);
|
|
1401
1581
|
}
|
|
1582
|
+
.Layer__bank-transaction-list-item__heading .Layer__bank-transaction-list-item__heading__main {
|
|
1583
|
+
gap: 4px;
|
|
1584
|
+
display: flex;
|
|
1585
|
+
align-items: center;
|
|
1586
|
+
}
|
|
1402
1587
|
.Layer__bank-transaction-list-item__body {
|
|
1403
1588
|
display: flex;
|
|
1589
|
+
justify-content: space-between;
|
|
1404
1590
|
gap: 4px;
|
|
1405
1591
|
color: var(--text-color-primary);
|
|
1406
1592
|
width: 100%;
|
|
@@ -1409,6 +1595,15 @@
|
|
|
1409
1595
|
}
|
|
1410
1596
|
.Layer__bank-transaction-list-item__body .Layer__bank-transaction-list-item__body__name {
|
|
1411
1597
|
flex: 1;
|
|
1598
|
+
max-width: calc(100% - 120px);
|
|
1599
|
+
}
|
|
1600
|
+
.Layer__bank-transaction-list-item__body .Layer__bank-transaction-list-item__body__name .Layer__tooltip-trigger {
|
|
1601
|
+
display: flex;
|
|
1602
|
+
}
|
|
1603
|
+
.Layer__bank-transaction-list-item__body .Layer__bank-transaction-list-item__body__name .Layer__text {
|
|
1604
|
+
white-space: nowrap;
|
|
1605
|
+
overflow: hidden;
|
|
1606
|
+
text-overflow: ellipsis;
|
|
1412
1607
|
}
|
|
1413
1608
|
.Layer__bank-transaction-list-item__body .Layer__bank-transaction-row__expand-button {
|
|
1414
1609
|
margin: 0 var(--spacing-xs);
|
|
@@ -1417,9 +1612,8 @@
|
|
|
1417
1612
|
box-sizing: border-box;
|
|
1418
1613
|
padding: var(--spacing-md);
|
|
1419
1614
|
padding-top: var(--spacing-sm);
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
width: 100%;
|
|
1615
|
+
display: flex;
|
|
1616
|
+
gap: var(--spacing-md);
|
|
1423
1617
|
}
|
|
1424
1618
|
.Layer__table.Layer__bank-transactions__table {
|
|
1425
1619
|
overflow: auto;
|
|
@@ -1427,9 +1621,11 @@
|
|
|
1427
1621
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
1428
1622
|
position: -webkit-sticky;
|
|
1429
1623
|
position: sticky;
|
|
1430
|
-
right:
|
|
1431
|
-
width:
|
|
1624
|
+
right: 449px;
|
|
1625
|
+
width: 150px;
|
|
1626
|
+
min-width: 150px;
|
|
1432
1627
|
z-index: 2;
|
|
1628
|
+
box-sizing: border-box;
|
|
1433
1629
|
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
1434
1630
|
}
|
|
1435
1631
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__category-col {
|
|
@@ -1441,24 +1637,37 @@
|
|
|
1441
1637
|
z-index: 2;
|
|
1442
1638
|
}
|
|
1443
1639
|
.Layer__bank-transactions__date-col {
|
|
1444
|
-
min-width:
|
|
1445
|
-
|
|
1640
|
+
min-width: 130px;
|
|
1641
|
+
width: 130px;
|
|
1642
|
+
max-width: 130px;
|
|
1446
1643
|
box-sizing: border-box;
|
|
1447
1644
|
}
|
|
1448
1645
|
.Layer__bank-transactions__tx-col {
|
|
1449
|
-
min-width:
|
|
1450
|
-
|
|
1646
|
+
min-width: 125px;
|
|
1647
|
+
width: 180px;
|
|
1648
|
+
max-width: 280px;
|
|
1451
1649
|
box-sizing: border-box;
|
|
1452
1650
|
}
|
|
1651
|
+
.Layer__bank-transactions__tx-text {
|
|
1652
|
+
width: 100%;
|
|
1653
|
+
}
|
|
1453
1654
|
.Layer__bank-transactions__account-col {
|
|
1454
|
-
min-width:
|
|
1455
|
-
|
|
1655
|
+
min-width: 125px;
|
|
1656
|
+
width: 180px;
|
|
1657
|
+
max-width: 180px;
|
|
1456
1658
|
box-sizing: border-box;
|
|
1457
1659
|
}
|
|
1660
|
+
@container (min-width: 1400px) {
|
|
1661
|
+
.Layer__bank-transactions__date-col {
|
|
1662
|
+
min-width: 160px;
|
|
1663
|
+
width: 160px;
|
|
1664
|
+
max-width: 160px;
|
|
1665
|
+
}
|
|
1666
|
+
}
|
|
1458
1667
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col,
|
|
1459
1668
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__tx-col {
|
|
1460
1669
|
text-overflow: ellipsis;
|
|
1461
|
-
max-width:
|
|
1670
|
+
max-width: 280px;
|
|
1462
1671
|
}
|
|
1463
1672
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col .Layer__table-cell-content .Layer__bank-transactions__account-text,
|
|
1464
1673
|
.Layer__bank-transaction-row:not(.Layer__bank-transaction-row--expanded) .Layer__bank-transactions__account-col .Layer__table-cell-content .Layer__bank-transactions__tx-text,
|
|
@@ -1469,6 +1678,7 @@
|
|
|
1469
1678
|
overflow: hidden;
|
|
1470
1679
|
text-overflow: ellipsis;
|
|
1471
1680
|
white-space: nowrap;
|
|
1681
|
+
box-sizing: border-box;
|
|
1472
1682
|
}
|
|
1473
1683
|
.Layer__bank-transaction-row.Layer__bank-transaction-row--expanded td {
|
|
1474
1684
|
vertical-align: top;
|
|
@@ -1480,6 +1690,8 @@
|
|
|
1480
1690
|
display: flex;
|
|
1481
1691
|
justify-content: flex-end;
|
|
1482
1692
|
padding: var(--spacing-md);
|
|
1693
|
+
position: sticky;
|
|
1694
|
+
left: 0;
|
|
1483
1695
|
}
|
|
1484
1696
|
@container (min-width: 1400px) {
|
|
1485
1697
|
.Layer__bank-transactions__pagination {
|
|
@@ -1488,7 +1700,7 @@
|
|
|
1488
1700
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
1489
1701
|
}
|
|
1490
1702
|
}
|
|
1491
|
-
@container (max-width:
|
|
1703
|
+
@container (max-width: 1108px) and (min-width: 701px) {
|
|
1492
1704
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
1493
1705
|
border-left: 1px solid var(--border-color);
|
|
1494
1706
|
}
|
|
@@ -1503,6 +1715,13 @@
|
|
|
1503
1715
|
z-index: 0;
|
|
1504
1716
|
}
|
|
1505
1717
|
}
|
|
1718
|
+
@container (max-width: 1400px) {
|
|
1719
|
+
.Layer__bank-transactions__header {
|
|
1720
|
+
padding-left: var(--spacing-md);
|
|
1721
|
+
padding-right: var(--spacing-md);
|
|
1722
|
+
padding-top: var(--spacing-md);
|
|
1723
|
+
}
|
|
1724
|
+
}
|
|
1506
1725
|
@container (max-width: 700px) {
|
|
1507
1726
|
.Layer__bank-transactions__header {
|
|
1508
1727
|
box-shadow: 0px -1px 0px 0px rgba(23, 51, 45, 0.16) inset;
|
|
@@ -1615,6 +1834,9 @@
|
|
|
1615
1834
|
box-sizing: border-box;
|
|
1616
1835
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
1617
1836
|
}
|
|
1837
|
+
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
1838
|
+
display: none;
|
|
1839
|
+
}
|
|
1618
1840
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
1619
1841
|
text-align: right;
|
|
1620
1842
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
@@ -1623,6 +1845,10 @@
|
|
|
1623
1845
|
text-align: right;
|
|
1624
1846
|
width: 90px;
|
|
1625
1847
|
}
|
|
1848
|
+
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
1849
|
+
width: 0;
|
|
1850
|
+
padding: 0;
|
|
1851
|
+
}
|
|
1626
1852
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
|
|
1627
1853
|
flex: 1;
|
|
1628
1854
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
@@ -1630,6 +1856,9 @@
|
|
|
1630
1856
|
overflow: hidden;
|
|
1631
1857
|
text-overflow: ellipsis;
|
|
1632
1858
|
}
|
|
1859
|
+
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
1860
|
+
display: none;
|
|
1861
|
+
}
|
|
1633
1862
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .Layer__tooltip-trigger {
|
|
1634
1863
|
display: flex;
|
|
1635
1864
|
}
|
|
@@ -1643,6 +1872,7 @@
|
|
|
1643
1872
|
cursor: pointer;
|
|
1644
1873
|
display: flex;
|
|
1645
1874
|
align-items: stretch;
|
|
1875
|
+
overflow: hidden;
|
|
1646
1876
|
}
|
|
1647
1877
|
.Layer__expanded-bank-transaction-row__match-row .Layer__tooltip-trigger {
|
|
1648
1878
|
padding-top: 0;
|
|
@@ -1760,30 +1990,255 @@
|
|
|
1760
1990
|
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
1761
1991
|
border-width: 0;
|
|
1762
1992
|
}
|
|
1993
|
+
.Layer__expanded-bank-transaction-row__match-row--selected .amount-next-to-date {
|
|
1994
|
+
color: var(--color-base-800);
|
|
1995
|
+
}
|
|
1763
1996
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover {
|
|
1764
1997
|
border: 1px solid --var-color-base-800;
|
|
1765
1998
|
}
|
|
1766
1999
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
1767
2000
|
border-width: 0;
|
|
1768
2001
|
}
|
|
2002
|
+
.Layer__expanded-bank-transaction-row__match-table__date {
|
|
2003
|
+
display: flex;
|
|
2004
|
+
justify-content: space-between;
|
|
2005
|
+
width: 100% !important;
|
|
2006
|
+
}
|
|
2007
|
+
.Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
2008
|
+
display: block !important;
|
|
2009
|
+
}
|
|
2010
|
+
.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
2011
|
+
display: none !important;
|
|
2012
|
+
}
|
|
2013
|
+
.Layer__expanded-bank-transaction-row__match-table__desc {
|
|
2014
|
+
justify-content: space-between;
|
|
2015
|
+
gap: var(--spacing-sm);
|
|
2016
|
+
}
|
|
2017
|
+
.Layer__expanded-bank-transaction-row__match-table__desc > span:first-child {
|
|
2018
|
+
width: calc(100% - 120px);
|
|
2019
|
+
}
|
|
2020
|
+
.Layer__expanded-bank-transaction-row__match-table__desc > span:nth-child(2) {
|
|
2021
|
+
flex: 0;
|
|
2022
|
+
}
|
|
2023
|
+
.Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
2024
|
+
display: block !important;
|
|
2025
|
+
}
|
|
2026
|
+
.Layer__expanded-bank-transaction-row__match-table__status {
|
|
2027
|
+
display: none !important;
|
|
2028
|
+
}
|
|
1769
2029
|
}
|
|
1770
2030
|
@container (max-width: 600px) {
|
|
1771
2031
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|
|
1772
2032
|
display: flex;
|
|
1773
2033
|
flex-direction: column;
|
|
1774
|
-
|
|
1775
|
-
|
|
2034
|
+
flex: 1;
|
|
2035
|
+
width: 100%;
|
|
2036
|
+
gap: var(--spacing-sm);
|
|
1776
2037
|
}
|
|
1777
2038
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
border-bottom: 1px solid var(--color-base-300);
|
|
1781
|
-
gap: var(--spacing-2xs);
|
|
1782
|
-
margin-bottom: 0;
|
|
2039
|
+
gap: var(--spacing-sm);
|
|
2040
|
+
width: 100%;
|
|
1783
2041
|
}
|
|
1784
2042
|
.Layer__expanded-bank-transaction-row__table-cell--split-entry input {
|
|
1785
2043
|
width: 100%;
|
|
1786
2044
|
}
|
|
2045
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
2046
|
+
flex: 1;
|
|
2047
|
+
max-width: 42%;
|
|
2048
|
+
position: relative;
|
|
2049
|
+
}
|
|
2050
|
+
.Layer__expanded-bank-transaction-row__total-and-btns {
|
|
2051
|
+
flex-direction: row;
|
|
2052
|
+
justify-content: space-between;
|
|
2053
|
+
align-items: center;
|
|
2054
|
+
box-sizing: border-box;
|
|
2055
|
+
}
|
|
2056
|
+
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip {
|
|
2057
|
+
flex: 1;
|
|
2058
|
+
width: 100%;
|
|
2059
|
+
max-width: 42%;
|
|
2060
|
+
position: relative;
|
|
2061
|
+
}
|
|
2062
|
+
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input {
|
|
2063
|
+
max-width: 100%;
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
@container (max-width: 500px) {
|
|
2067
|
+
.Layer__expanded-bank-transaction-row__content-toggle .Layer__toggle-option input + span {
|
|
2068
|
+
font-size: var(--text-xs);
|
|
2069
|
+
}
|
|
2070
|
+
.Layer__bank-transaction-list-item__expanded-row input,
|
|
2071
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__category-menu {
|
|
2072
|
+
font-size: var(--text-xs);
|
|
2073
|
+
}
|
|
2074
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control {
|
|
2075
|
+
min-height: 32px;
|
|
2076
|
+
}
|
|
2077
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__select__indicator {
|
|
2078
|
+
padding: var(--spacing-3xs);
|
|
2079
|
+
}
|
|
2080
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn {
|
|
2081
|
+
width: 32px;
|
|
2082
|
+
height: 32px;
|
|
2083
|
+
min-height: 32px;
|
|
2084
|
+
}
|
|
2085
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__table-cell--split-entry__merge-btn svg {
|
|
2086
|
+
width: 14px;
|
|
2087
|
+
height: 14px;
|
|
2088
|
+
}
|
|
2089
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn,
|
|
2090
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn {
|
|
2091
|
+
min-height: 32px;
|
|
2092
|
+
}
|
|
2093
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn-text,
|
|
2094
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn-text {
|
|
2095
|
+
font-size: var(--text-xs);
|
|
2096
|
+
}
|
|
2097
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__file-upload .Layer__btn-icon,
|
|
2098
|
+
.Layer__bank-transaction-list-item__expanded-row .Layer__expanded-bank-transaction-row__total-and-btns .Layer__btn-icon {
|
|
2099
|
+
width: 12px;
|
|
2100
|
+
height: 12px;
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
.Layer__bank-transactions__notifications {
|
|
2104
|
+
position: absolute;
|
|
2105
|
+
display: flex;
|
|
2106
|
+
flex-direction: column;
|
|
2107
|
+
bottom: var(--spacing-2xs);
|
|
2108
|
+
left: calc(100% - 340px - var(--spacing-2xs));
|
|
2109
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
2110
|
+
z-index: 1;
|
|
2111
|
+
min-width: 300px;
|
|
2112
|
+
}
|
|
2113
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification {
|
|
2114
|
+
transition: all var(--transition-speed) ease-in-out;
|
|
2115
|
+
overflow: hidden;
|
|
2116
|
+
padding: 12px;
|
|
2117
|
+
margin: 0;
|
|
2118
|
+
margin-top: -12px;
|
|
2119
|
+
height: 56px;
|
|
2120
|
+
cursor: pointer;
|
|
2121
|
+
}
|
|
2122
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification:hover .Layer__bank-transactions__notification-content {
|
|
2123
|
+
box-shadow: 0px 0px 3px 0px var(--base-transparent-12), 0px 0px 0px 1px var(--color-base-200);
|
|
2124
|
+
}
|
|
2125
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-content {
|
|
2126
|
+
padding: var(--spacing-sm);
|
|
2127
|
+
display: flex;
|
|
2128
|
+
align-items: center;
|
|
2129
|
+
padding: var(--spacing-xs);
|
|
2130
|
+
padding-right: var(--spacing-md);
|
|
2131
|
+
gap: var(--spacing-sm);
|
|
2132
|
+
border-radius: var(--border-radius-3xs);
|
|
2133
|
+
background: var(--color-base-0);
|
|
2134
|
+
box-shadow: 0px 0px 12px 0px var(--base-transparent-12), 0px 0px 0px 1px var(--color-base-200);
|
|
2135
|
+
}
|
|
2136
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-icon {
|
|
2137
|
+
width: var(--spacing-3xl);
|
|
2138
|
+
height: var(--spacing-3xl);
|
|
2139
|
+
display: flex;
|
|
2140
|
+
flex-direction: column;
|
|
2141
|
+
justify-content: center;
|
|
2142
|
+
align-items: center;
|
|
2143
|
+
border-radius: var(--border-radius-3xs);
|
|
2144
|
+
background: var(--color-base-0);
|
|
2145
|
+
color: var(--color-danger);
|
|
2146
|
+
box-shadow: 0px 1px 2px 0px var(--base-transparent-6), 0px 0px 0px 1px var(--color-base-300);
|
|
2147
|
+
}
|
|
2148
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-text {
|
|
2149
|
+
display: flex;
|
|
2150
|
+
flex-direction: column;
|
|
2151
|
+
}
|
|
2152
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-title {
|
|
2153
|
+
font-size: var(--text-md);
|
|
2154
|
+
color: var(--color-base-1000);
|
|
2155
|
+
}
|
|
2156
|
+
.Layer__bank-transactions__notifications .Layer__bank-transactions__notification-message {
|
|
2157
|
+
font-size: var(--text-sm);
|
|
2158
|
+
color: var(--color-base-700);
|
|
2159
|
+
}
|
|
2160
|
+
@keyframes fadeIn {
|
|
2161
|
+
from {
|
|
2162
|
+
opacity: 0;
|
|
2163
|
+
transform: scale(0.5);
|
|
2164
|
+
}
|
|
2165
|
+
to {
|
|
2166
|
+
opacity: 1;
|
|
2167
|
+
transform: scale(1);
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
@keyframes fadeOut {
|
|
2171
|
+
from {
|
|
2172
|
+
opacity: 1;
|
|
2173
|
+
transform: scale(1);
|
|
2174
|
+
padding-top: 12px;
|
|
2175
|
+
padding-bottom: 12px;
|
|
2176
|
+
height: 56px;
|
|
2177
|
+
}
|
|
2178
|
+
to {
|
|
2179
|
+
opacity: 0;
|
|
2180
|
+
transform: scale(0.8);
|
|
2181
|
+
padding-top: 6px;
|
|
2182
|
+
padding-bottom: 6px;
|
|
2183
|
+
height: 0;
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
.notification-enter {
|
|
2187
|
+
animation: fadeIn var(--transition-speed) forwards;
|
|
2188
|
+
}
|
|
2189
|
+
.notification-exit {
|
|
2190
|
+
animation: fadeOut var(--transition-speed) forwards;
|
|
2191
|
+
}
|
|
2192
|
+
.Layer__expanded-bank-transaction-row__splits-inputs + .Layer__text--error {
|
|
2193
|
+
margin: 0;
|
|
2194
|
+
padding: var(--spacing-2xs) 0;
|
|
2195
|
+
padding-bottom: var(--spacing-md);
|
|
2196
|
+
}
|
|
2197
|
+
.Layer__expanded-bank-transaction-row__match-table .Layer__text--error {
|
|
2198
|
+
margin: 0;
|
|
2199
|
+
padding: var(--spacing-2xs) 0;
|
|
2200
|
+
padding-bottom: var(--spacing-md);
|
|
2201
|
+
}
|
|
2202
|
+
.Layer__bank-transaction-table__date-col,
|
|
2203
|
+
.Layer__bank-transactions__account-col {
|
|
2204
|
+
color: var(--color-base-500);
|
|
2205
|
+
}
|
|
2206
|
+
.Layer__bank-transactions__tx-col {
|
|
2207
|
+
color: var(--color-base-1000);
|
|
2208
|
+
}
|
|
2209
|
+
.Layer__bank-transaction-row:hover .Layer__bank-transaction-table__date-col,
|
|
2210
|
+
.Layer__bank-transaction-row:hover .Layer__bank-transactions__account-col,
|
|
2211
|
+
.Layer__bank-transaction-row--expanded .Layer__bank-transaction-table__date-col,
|
|
2212
|
+
.Layer__bank-transaction-row--expanded .Layer__bank-transactions__account-col {
|
|
2213
|
+
color: var(--color-base-1000);
|
|
2214
|
+
}
|
|
2215
|
+
.Layer__expanded-bank-transaction-row__splits-inputs .Layer__input {
|
|
2216
|
+
text-align: right;
|
|
2217
|
+
}
|
|
2218
|
+
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input {
|
|
2219
|
+
max-width: 100%;
|
|
2220
|
+
text-align: right;
|
|
2221
|
+
}
|
|
2222
|
+
@container (min-width: 401px) {
|
|
2223
|
+
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip,
|
|
2224
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
|
|
2225
|
+
max-width: 200px;
|
|
2226
|
+
flex: 1;
|
|
2227
|
+
}
|
|
2228
|
+
.Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip .Layer__input,
|
|
2229
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip .Layer__input {
|
|
2230
|
+
width: 100%;
|
|
2231
|
+
}
|
|
2232
|
+
}
|
|
2233
|
+
@container (max-width: 480px) {
|
|
2234
|
+
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input:disabled {
|
|
2235
|
+
background-color: transparent;
|
|
2236
|
+
border-color: transparent;
|
|
2237
|
+
box-shadow: none;
|
|
2238
|
+
}
|
|
2239
|
+
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input-left-text {
|
|
2240
|
+
border-right-color: transparent;
|
|
2241
|
+
}
|
|
1787
2242
|
}
|
|
1788
2243
|
.Layer__chart-of-accounts {
|
|
1789
2244
|
background-color: var(--background-color);
|
|
@@ -1976,6 +2431,100 @@
|
|
|
1976
2431
|
.Layer__chevron__up--counterclockwise {
|
|
1977
2432
|
transform: rotate(-180deg);
|
|
1978
2433
|
}
|
|
2434
|
+
.Layer__linked-accounts {
|
|
2435
|
+
min-height: 151px;
|
|
2436
|
+
box-sizing: border-box;
|
|
2437
|
+
}
|
|
2438
|
+
.Layer__linked-accounts .Layer__data-state {
|
|
2439
|
+
padding: var(--spacing-md);
|
|
2440
|
+
padding-top: 0;
|
|
2441
|
+
}
|
|
2442
|
+
.Layer__linked-accounts__header {
|
|
2443
|
+
padding: var(--spacing-md);
|
|
2444
|
+
position: sticky;
|
|
2445
|
+
left: 0;
|
|
2446
|
+
}
|
|
2447
|
+
.Layer__linked-accounts__list {
|
|
2448
|
+
padding: var(--spacing-md);
|
|
2449
|
+
display: flex;
|
|
2450
|
+
align-items: center;
|
|
2451
|
+
gap: var(--spacing-md);
|
|
2452
|
+
}
|
|
2453
|
+
.Layer__linked-accounts__header + .Layer__linked-accounts__list {
|
|
2454
|
+
padding-top: 0;
|
|
2455
|
+
}
|
|
2456
|
+
@container (min-width: 1400px) {
|
|
2457
|
+
.Layer__linked-accounts__loader-container {
|
|
2458
|
+
min-height: 103px;
|
|
2459
|
+
}
|
|
2460
|
+
.Layer__linked-accounts__header {
|
|
2461
|
+
padding: var(--spacing-lg);
|
|
2462
|
+
}
|
|
2463
|
+
.Layer__linked-accounts__list {
|
|
2464
|
+
padding: var(--spacing-lg);
|
|
2465
|
+
}
|
|
2466
|
+
}
|
|
2467
|
+
.Layer__linked-account-thumb {
|
|
2468
|
+
display: flex;
|
|
2469
|
+
flex-direction: column;
|
|
2470
|
+
gap: var(--spacing-4xs);
|
|
2471
|
+
padding: var(--spacing-3xs);
|
|
2472
|
+
border-radius: var(--border-radius-sm);
|
|
2473
|
+
background: var(--color-base-0);
|
|
2474
|
+
box-shadow: 0px 2px 4px 0px var(--base-transparent-6), 0px 0px 0px 1px var(--base-transparent-4);
|
|
2475
|
+
box-sizing: border-box;
|
|
2476
|
+
}
|
|
2477
|
+
.Layer__linked-account-thumb .topbar {
|
|
2478
|
+
height: 41px;
|
|
2479
|
+
min-width: 272px;
|
|
2480
|
+
display: flex;
|
|
2481
|
+
align-items: center;
|
|
2482
|
+
background: var(--color-base-900);
|
|
2483
|
+
color: var(--color-base-0);
|
|
2484
|
+
border-radius: var(--border-radius-xs);
|
|
2485
|
+
padding: var(--spacing-xs) var(--spacing-md);
|
|
2486
|
+
box-sizing: border-box;
|
|
2487
|
+
}
|
|
2488
|
+
.Layer__linked-account-thumb .topbar .account-name {
|
|
2489
|
+
flex: 1;
|
|
2490
|
+
}
|
|
2491
|
+
.Layer__linked-account-thumb .topbar .account-number {
|
|
2492
|
+
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
2493
|
+
border-radius: var(--border-radius-5xl);
|
|
2494
|
+
background: var(--base-transparent-8);
|
|
2495
|
+
}
|
|
2496
|
+
.Layer__linked-account-thumb .bottombar {
|
|
2497
|
+
box-sizing: border-box;
|
|
2498
|
+
display: flex;
|
|
2499
|
+
height: 28px;
|
|
2500
|
+
}
|
|
2501
|
+
.Layer__linked-account-thumb .bottombar .account-amount {
|
|
2502
|
+
padding: var(--spacing-3xs) var(--spacing-md);
|
|
2503
|
+
}
|
|
2504
|
+
.Layer__linked-accounts .Layer__linked-account-thumb:nth-child(5n) .topbar {
|
|
2505
|
+
background: var(--color-base-900);
|
|
2506
|
+
color: var(--color-base-0);
|
|
2507
|
+
}
|
|
2508
|
+
.Layer__linked-accounts .Layer__linked-account-thumb:nth-child(5n+1) .topbar {
|
|
2509
|
+
background: var(--color-base-900);
|
|
2510
|
+
color: var(--color-base-0);
|
|
2511
|
+
}
|
|
2512
|
+
.Layer__linked-accounts .Layer__linked-account-thumb:nth-child(5n+2) .topbar {
|
|
2513
|
+
background: var(--color-base-400);
|
|
2514
|
+
color: var(--color-base-900);
|
|
2515
|
+
}
|
|
2516
|
+
.Layer__linked-accounts .Layer__linked-account-thumb:nth-child(5n+3) .topbar {
|
|
2517
|
+
background: var(--color-base-300);
|
|
2518
|
+
color: var(--color-base-900);
|
|
2519
|
+
}
|
|
2520
|
+
.Layer__linked-accounts .Layer__linked-account-thumb:nth-child(5n+4) .topbar {
|
|
2521
|
+
background: var(--color-base-500);
|
|
2522
|
+
color: var(--color-base-900);
|
|
2523
|
+
}
|
|
2524
|
+
.Layer__linked-accounts .Layer__linked-account-thumb:nth-child(5n+5) .topbar {
|
|
2525
|
+
background: var(--color-base-700);
|
|
2526
|
+
color: var(--color-base-0);
|
|
2527
|
+
}
|
|
1979
2528
|
.Layer__loader {
|
|
1980
2529
|
width: 100%;
|
|
1981
2530
|
display: flex;
|
|
@@ -2077,6 +2626,37 @@
|
|
|
2077
2626
|
.Layer__profit-and-loss {
|
|
2078
2627
|
background-color: white;
|
|
2079
2628
|
}
|
|
2629
|
+
.Layer__component-container .Layer__profit-and-loss {
|
|
2630
|
+
display: flex;
|
|
2631
|
+
align-items: stretch;
|
|
2632
|
+
}
|
|
2633
|
+
.Layer__profit-and-loss__main-panel {
|
|
2634
|
+
flex: 1;
|
|
2635
|
+
}
|
|
2636
|
+
.Layer__profit-and-loss__side-panel {
|
|
2637
|
+
box-sizing: border-box;
|
|
2638
|
+
border-left: 1px solid var(--color-base-300);
|
|
2639
|
+
max-width: 0;
|
|
2640
|
+
overflow: hidden;
|
|
2641
|
+
width: 480px;
|
|
2642
|
+
opacity: 0.05;
|
|
2643
|
+
transition: max-width 250ms ease-out, opacity 350ms ease-out;
|
|
2644
|
+
}
|
|
2645
|
+
.Layer__profit-and-loss__side-panel.open {
|
|
2646
|
+
max-width: 480px;
|
|
2647
|
+
opacity: 1;
|
|
2648
|
+
}
|
|
2649
|
+
@container (max-width: 1100px) {
|
|
2650
|
+
.Layer__profit-and-loss__side-panel {
|
|
2651
|
+
position: absolute;
|
|
2652
|
+
right: -500px;
|
|
2653
|
+
top: 0;
|
|
2654
|
+
height: 100%;
|
|
2655
|
+
}
|
|
2656
|
+
.Layer__profit-and-loss__side-panel.open {
|
|
2657
|
+
right: 0;
|
|
2658
|
+
}
|
|
2659
|
+
}
|
|
2080
2660
|
.Layer__profit-and-loss__title {
|
|
2081
2661
|
font-size: 1.5rem;
|
|
2082
2662
|
font-weight: 600;
|
|
@@ -2087,8 +2667,14 @@
|
|
|
2087
2667
|
.Layer__profit-and-loss-table {
|
|
2088
2668
|
display: grid;
|
|
2089
2669
|
grid-template-columns: 1fr auto;
|
|
2090
|
-
font-size: 1rem;
|
|
2091
2670
|
overflow: hidden;
|
|
2671
|
+
background-color: var(--color-base-100);
|
|
2672
|
+
}
|
|
2673
|
+
.Layer__profit-and-loss-table__loader-container {
|
|
2674
|
+
padding: var(--spacing-2xl);
|
|
2675
|
+
}
|
|
2676
|
+
.Layer__profit-and-loss-table__loader-container {
|
|
2677
|
+
min-height: 950px;
|
|
2092
2678
|
}
|
|
2093
2679
|
.Layer__profit-and-loss-table__outflows {
|
|
2094
2680
|
margin-top: 1rem;
|
|
@@ -2098,6 +2684,14 @@
|
|
|
2098
2684
|
background-color: var(--background-color);
|
|
2099
2685
|
font-size: 1em;
|
|
2100
2686
|
}
|
|
2687
|
+
.Layer__profit-and-loss-row.Layer__profit-and-loss-row__value--depth-0,
|
|
2688
|
+
.Layer__profit-and-loss-row.Layer__profit-and-loss-row__label--depth-0 {
|
|
2689
|
+
background-color: var(--color-base-0);
|
|
2690
|
+
}
|
|
2691
|
+
.Layer__profit-and-loss-row:not(.Layer__profit-and-loss-row__value--depth-0),
|
|
2692
|
+
.Layer__profit-and-loss-row:not(.Layer__profit-and-loss-row__label--depth-0) {
|
|
2693
|
+
box-shadow: 0px -1px 0px 0px var(--color-base-300) inset;
|
|
2694
|
+
}
|
|
2101
2695
|
.Layer__profit-and-loss-row__children {
|
|
2102
2696
|
display: grid;
|
|
2103
2697
|
grid-column: span 2;
|
|
@@ -2121,13 +2715,19 @@
|
|
|
2121
2715
|
align-items: center;
|
|
2122
2716
|
}
|
|
2123
2717
|
.Layer__profit-and-loss-row__label svg {
|
|
2124
|
-
|
|
2718
|
+
color: var(--color-base-600);
|
|
2125
2719
|
width: 1.25rem;
|
|
2126
2720
|
height: 1.25rem;
|
|
2127
2721
|
margin-right: 0.25rem;
|
|
2128
2722
|
transition: transform var(--transition-speed);
|
|
2129
2723
|
transform: rotate(-90deg);
|
|
2130
2724
|
}
|
|
2725
|
+
.Layer__profit-and-loss-row__label.Layer__profit-and-loss-row__label--display-children-true:hover,
|
|
2726
|
+
.Layer__profit-and-loss-row__label.Layer__profit-and-loss-row__label--display-children-true:hover + .Layer__profit-and-loss-row__value,
|
|
2727
|
+
.Layer__profit-and-loss-row__value.Layer__profit-and-loss-row__value--display-children-true:hover,
|
|
2728
|
+
.Layer__profit-and-loss-row__value.Layer__profit-and-loss-row__value--display-children-true:hover + .Layer__profit-and-loss-row__label {
|
|
2729
|
+
background: var(--color-base-50);
|
|
2730
|
+
}
|
|
2131
2731
|
.Layer__profit-and-loss-row__label--expanded svg {
|
|
2132
2732
|
transform: rotate(0deg);
|
|
2133
2733
|
}
|
|
@@ -2151,18 +2751,32 @@
|
|
|
2151
2751
|
}
|
|
2152
2752
|
.Layer__profit-and-loss-row__label--display-children-false svg {
|
|
2153
2753
|
visibility: hidden;
|
|
2754
|
+
display: none;
|
|
2154
2755
|
}
|
|
2155
|
-
.Layer__profit-and-loss-
|
|
2156
|
-
|
|
2756
|
+
.Layer__profit-and-loss-row__value--variant-summation.Layer__profit-and-loss-row__value + .Layer__profit-and-loss-row__label,
|
|
2757
|
+
.Layer__profit-and-loss-row__value--variant-summation.Layer__profit-and-loss-row__value + .Layer__profit-and-loss-row__label + .Layer__profit-and-loss-row__value {
|
|
2758
|
+
border-top: 1px solid var(--color-base-300);
|
|
2157
2759
|
}
|
|
2158
|
-
.Layer__profit-and-loss-row__label--
|
|
2159
|
-
|
|
2760
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0,
|
|
2761
|
+
.Layer__profit-and-loss-row__value--variant-summation.Layer__profit-and-loss-row__value--depth-0 {
|
|
2762
|
+
margin-bottom: var(--spacing-2xs);
|
|
2160
2763
|
}
|
|
2161
|
-
.Layer__profit-and-loss-row__label--variant-summation
|
|
2162
|
-
|
|
2764
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0:last-child,
|
|
2765
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0:nth-last-child(-n+2),
|
|
2766
|
+
.Layer__profit-and-loss-row__value--variant-summation.Layer__profit-and-loss-row__value--depth-0:last-child,
|
|
2767
|
+
.Layer__profit-and-loss-row__value--variant-summation.Layer__profit-and-loss-row__value--depth-0:nth-last-child(-n+2) {
|
|
2768
|
+
margin-bottom: 0;
|
|
2163
2769
|
}
|
|
2164
|
-
.Layer__profit-and-loss-
|
|
2165
|
-
|
|
2770
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0 .Layer__text,
|
|
2771
|
+
.Layer__profit-and-loss-row__value--variant-summation.Layer__profit-and-loss-row__value--depth-0 .Layer__text {
|
|
2772
|
+
color: var(--color-base-1000);
|
|
2773
|
+
}
|
|
2774
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0 {
|
|
2775
|
+
padding-left: 22px;
|
|
2776
|
+
}
|
|
2777
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0 .Layer__text,
|
|
2778
|
+
.Layer__profit-and-loss-row__label--variant-summation.Layer__profit-and-loss-row__label--depth-0 .Layer__text.Layer__text--md {
|
|
2779
|
+
font-size: var(--text-lg);
|
|
2166
2780
|
}
|
|
2167
2781
|
.Layer__profit-and-loss-row__value--amount-positive .Layer__text::before {
|
|
2168
2782
|
content: "$";
|
|
@@ -2182,7 +2796,7 @@
|
|
|
2182
2796
|
}
|
|
2183
2797
|
.Layer__profit-and-loss-row__label--depth-1 {
|
|
2184
2798
|
padding-right: var(--spacing-md);
|
|
2185
|
-
padding-left: var(--spacing-5xl);
|
|
2799
|
+
padding-left: calc(var(--spacing-5xl) + var(--spacing-md));
|
|
2186
2800
|
padding-top: var(--spacing-sm);
|
|
2187
2801
|
padding-bottom: var(--spacing-sm);
|
|
2188
2802
|
}
|
|
@@ -2296,15 +2910,34 @@
|
|
|
2296
2910
|
display: flex;
|
|
2297
2911
|
flex: 1;
|
|
2298
2912
|
flex-direction: column;
|
|
2913
|
+
gap: var(--spacing-4xs);
|
|
2299
2914
|
justify-content: center;
|
|
2300
2915
|
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
2301
2916
|
border-radius: var(--border-radius-xs);
|
|
2302
2917
|
padding: var(--spacing-md);
|
|
2918
|
+
min-height: 72px;
|
|
2919
|
+
box-sizing: border-box;
|
|
2920
|
+
}
|
|
2921
|
+
.Layer__profit-and-loss-summaries__summary.Layer__actionable {
|
|
2922
|
+
cursor: pointer;
|
|
2923
|
+
}
|
|
2924
|
+
.Layer__profit-and-loss-summaries__summary.Layer__actionable:hover {
|
|
2925
|
+
box-shadow: 0px 0px 0px 1px var(--color-base-500);
|
|
2926
|
+
}
|
|
2927
|
+
.Layer__profit-and-loss-summaries__summary.active {
|
|
2928
|
+
box-shadow: 0px 0px 0px 1px var(--color-base-900);
|
|
2929
|
+
}
|
|
2930
|
+
.Layer__profit-and-loss-summaries__loader {
|
|
2931
|
+
height: 17px;
|
|
2932
|
+
display: flex;
|
|
2933
|
+
align-items: center;
|
|
2934
|
+
}
|
|
2935
|
+
.Layer__profit-and-loss-summaries__loader .Layer__skeleton-loader {
|
|
2936
|
+
height: 14px;
|
|
2303
2937
|
}
|
|
2304
2938
|
.Layer__profit-and-loss-summaries__title {
|
|
2305
2939
|
color: var(--text-color-primary);
|
|
2306
2940
|
font-size: var(--text-sm);
|
|
2307
|
-
margin-bottom: 2px;
|
|
2308
2941
|
}
|
|
2309
2942
|
.Layer__profit-and-loss-summaries__month {
|
|
2310
2943
|
font-size: 1.125rem;
|
|
@@ -2336,7 +2969,30 @@
|
|
|
2336
2969
|
.Layer__profit-and-loss-chart__bar--expenses {
|
|
2337
2970
|
fill: var(--bar-color-expenses);
|
|
2338
2971
|
}
|
|
2339
|
-
|
|
2972
|
+
.Layer__profit-and-loss-row__label--depth-0.Layer__profit-and-loss-row__label--display-children-false {
|
|
2973
|
+
padding-left: 22px;
|
|
2974
|
+
}
|
|
2975
|
+
@container (min-width: 1024px) {
|
|
2976
|
+
.Layer__profit-and-loss-row__label--depth-0 {
|
|
2977
|
+
padding-left: var(--spacing-xl);
|
|
2978
|
+
}
|
|
2979
|
+
.Layer__profit-and-loss-row__label--depth-0.Layer__profit-and-loss-row__label--display-children-false {
|
|
2980
|
+
padding-left: calc(var(--spacing-xl) + 6px);
|
|
2981
|
+
}
|
|
2982
|
+
.Layer__component-container .Layer__profit-and-loss-row__label--depth-0.Layer__profit-and-loss-row__label--variant-summation {
|
|
2983
|
+
padding-left: calc(var(--spacing-xl) + 6px);
|
|
2984
|
+
}
|
|
2985
|
+
.Layer__profit-and-loss-row__value {
|
|
2986
|
+
padding-right: var(--spacing-xl);
|
|
2987
|
+
}
|
|
2988
|
+
.Layer__profit-and-loss__chart_with_summaries__summary-col {
|
|
2989
|
+
padding-right: var(--spacing-xs);
|
|
2990
|
+
}
|
|
2991
|
+
.Layer__profit-and-loss__chart_with_summaries__chart-col {
|
|
2992
|
+
padding-left: var(--spacing-xs);
|
|
2993
|
+
}
|
|
2994
|
+
}
|
|
2995
|
+
@container (max-width: 1023px) and (min-width: 760px) {
|
|
2340
2996
|
.Layer__profit-and-loss-summaries,
|
|
2341
2997
|
.Layer__profit-and-loss-summaries.flex-col {
|
|
2342
2998
|
flex-direction: row;
|
|
@@ -2382,6 +3038,193 @@
|
|
|
2382
3038
|
min-width: 150px;
|
|
2383
3039
|
}
|
|
2384
3040
|
}
|
|
3041
|
+
.Layer__profit-and-loss-detailed-charts > header {
|
|
3042
|
+
display: flex;
|
|
3043
|
+
justify-content: space-between;
|
|
3044
|
+
align-items: flex-start;
|
|
3045
|
+
padding: var(--spacing-xl);
|
|
3046
|
+
padding-bottom: var(--spacing-lg);
|
|
3047
|
+
box-shadow: 0px -1px 0px 0px var(--color-base-300) inset;
|
|
3048
|
+
}
|
|
3049
|
+
.Layer__profit-and-loss-detailed-charts > header button.Layer__btn.Layer__btn--icon-only {
|
|
3050
|
+
width: 32px;
|
|
3051
|
+
height: 32px;
|
|
3052
|
+
min-height: 32px;
|
|
3053
|
+
padding: 0;
|
|
3054
|
+
}
|
|
3055
|
+
.Layer__profit-and-loss-detailed-charts__head {
|
|
3056
|
+
display: flex;
|
|
3057
|
+
flex-direction: column;
|
|
3058
|
+
gap: var(--spacing-2xs);
|
|
3059
|
+
}
|
|
3060
|
+
.Layer__profit-and-loss-detailed-charts__head .title {
|
|
3061
|
+
color: var(--color-base-800);
|
|
3062
|
+
}
|
|
3063
|
+
.Layer__profit-and-loss-detailed-charts__head .date {
|
|
3064
|
+
color: var(--color-base-500);
|
|
3065
|
+
}
|
|
3066
|
+
.Layer__profit-and-loss-detailed-charts__head > .Layer__text {
|
|
3067
|
+
margin: 0;
|
|
3068
|
+
}
|
|
3069
|
+
.Layer__profit-and-loss-detailed-charts {
|
|
3070
|
+
width: 480px;
|
|
3071
|
+
background: var(--color-base-0);
|
|
3072
|
+
}
|
|
3073
|
+
.Layer__profit-and-loss-detailed-charts .chart-container {
|
|
3074
|
+
width: 480px;
|
|
3075
|
+
height: 280px;
|
|
3076
|
+
padding-top: var(--spacing-2xl);
|
|
3077
|
+
padding-bottom: var(--spacing-lg);
|
|
3078
|
+
padding-left: var(--spacing-md);
|
|
3079
|
+
padding-right: var(--spacing-md);
|
|
3080
|
+
}
|
|
3081
|
+
.Layer__profit-and-loss-detailed-charts .recharts-responsive-container {
|
|
3082
|
+
box-shadow: none;
|
|
3083
|
+
}
|
|
3084
|
+
.Layer__profit-and-loss-detailed-charts .recharts-responsive-container path:focus,
|
|
3085
|
+
.Layer__profit-and-loss-detailed-charts .recharts-responsive-container g:focus {
|
|
3086
|
+
outline: none;
|
|
3087
|
+
}
|
|
3088
|
+
.Layer__profit-and-loss-detailed-charts .pie-center-label__title,
|
|
3089
|
+
.Layer__profit-and-loss-detailed-charts .pie-center-label__share {
|
|
3090
|
+
fill: var(--color-base-600);
|
|
3091
|
+
font-size: 12px;
|
|
3092
|
+
}
|
|
3093
|
+
.Layer__profit-and-loss-detailed-charts .pie-center-label__value {
|
|
3094
|
+
fill: var(--color-base-900);
|
|
3095
|
+
font-size: 14px;
|
|
3096
|
+
}
|
|
3097
|
+
.Layer__profit-and-loss-detailed-charts .filters {
|
|
3098
|
+
display: flex;
|
|
3099
|
+
margin: 0 var(--spacing-md);
|
|
3100
|
+
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
3101
|
+
gap: var(--spacing-xs);
|
|
3102
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
3103
|
+
}
|
|
3104
|
+
.Layer__profit-and-loss-detailed-charts .type-select {
|
|
3105
|
+
border-color: transparent;
|
|
3106
|
+
font-family: var(--font-family);
|
|
3107
|
+
font-variation-settings: "wght" var(--font-weight-normal);
|
|
3108
|
+
font-variant-numeric: lining-nums proportional-nums;
|
|
3109
|
+
font-feature-settings:
|
|
3110
|
+
"cv10" on,
|
|
3111
|
+
"cv05" on,
|
|
3112
|
+
"cv08" on,
|
|
3113
|
+
"ss03" on;
|
|
3114
|
+
}
|
|
3115
|
+
.Layer__profit-and-loss-detailed-charts .type-select .Layer__select__control {
|
|
3116
|
+
border-color: transparent;
|
|
3117
|
+
font-family: var(--font-family);
|
|
3118
|
+
font-variation-settings: "wght" var(--font-weight-normal);
|
|
3119
|
+
font-variant-numeric: lining-nums proportional-nums;
|
|
3120
|
+
font-feature-settings:
|
|
3121
|
+
"cv10" on,
|
|
3122
|
+
"cv05" on,
|
|
3123
|
+
"cv08" on,
|
|
3124
|
+
"ss03" on;
|
|
3125
|
+
}
|
|
3126
|
+
.Layer__profit-and-loss-detailed-charts .type-select .Layer__select__placeholder {
|
|
3127
|
+
font-size: 12px;
|
|
3128
|
+
font-family: var(--font-family);
|
|
3129
|
+
font-variation-settings: "wght" var(--font-weight-normal);
|
|
3130
|
+
font-variant-numeric: lining-nums proportional-nums;
|
|
3131
|
+
font-feature-settings:
|
|
3132
|
+
"cv10" on,
|
|
3133
|
+
"cv05" on,
|
|
3134
|
+
"cv08" on,
|
|
3135
|
+
"ss03" on;
|
|
3136
|
+
}
|
|
3137
|
+
.Layer__profit-and-loss-detailed-charts .type-select .Layer__select__indicator-separator {
|
|
3138
|
+
display: none;
|
|
3139
|
+
}
|
|
3140
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu {
|
|
3141
|
+
width: min-content;
|
|
3142
|
+
max-width: 300px;
|
|
3143
|
+
}
|
|
3144
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option {
|
|
3145
|
+
width: 100%;
|
|
3146
|
+
font-size: 12px;
|
|
3147
|
+
white-space: nowrap;
|
|
3148
|
+
overflow: hidden;
|
|
3149
|
+
text-overflow: ellipsis;
|
|
3150
|
+
}
|
|
3151
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option.Layer__select__option--is-focused,
|
|
3152
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option.Layer__select__option--is-selected,
|
|
3153
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:hover,
|
|
3154
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus,
|
|
3155
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:active,
|
|
3156
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus-visible,
|
|
3157
|
+
.Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus-within {
|
|
3158
|
+
color: var(--text-color-primary);
|
|
3159
|
+
background: var(--color-base-100);
|
|
3160
|
+
}
|
|
3161
|
+
.Layer__profit-and-loss-detailed-charts .details-container {
|
|
3162
|
+
padding: var(--spacing-md);
|
|
3163
|
+
padding-top: var(--spacing-sm);
|
|
3164
|
+
}
|
|
3165
|
+
.Layer__profit-and-loss-detailed-charts .details-container table {
|
|
3166
|
+
width: 100%;
|
|
3167
|
+
border-collapse: collapse;
|
|
3168
|
+
}
|
|
3169
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th,
|
|
3170
|
+
.Layer__profit-and-loss-detailed-charts .details-container table td {
|
|
3171
|
+
text-align: left;
|
|
3172
|
+
font-size: 12px;
|
|
3173
|
+
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
3174
|
+
transition: color 150ms ease-out;
|
|
3175
|
+
}
|
|
3176
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th:last-child,
|
|
3177
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th.value-col,
|
|
3178
|
+
.Layer__profit-and-loss-detailed-charts .details-container table td:last-child,
|
|
3179
|
+
.Layer__profit-and-loss-detailed-charts .details-container table td.value-col {
|
|
3180
|
+
text-align: right;
|
|
3181
|
+
}
|
|
3182
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th {
|
|
3183
|
+
cursor: pointer;
|
|
3184
|
+
color: var(--color-base-500);
|
|
3185
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
3186
|
+
transition: color 150ms ease-out;
|
|
3187
|
+
}
|
|
3188
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th:hover {
|
|
3189
|
+
color: var(--color-base-800);
|
|
3190
|
+
}
|
|
3191
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th.sort--asc,
|
|
3192
|
+
.Layer__profit-and-loss-detailed-charts .details-container table th.sort--desc {
|
|
3193
|
+
color: var(--color-base-1000);
|
|
3194
|
+
}
|
|
3195
|
+
.Layer__profit-and-loss-detailed-charts .details-container .Layer__sort-arrows {
|
|
3196
|
+
position: relative;
|
|
3197
|
+
top: 1px;
|
|
3198
|
+
}
|
|
3199
|
+
.Layer__profit-and-loss-detailed-charts .details-container .share-cell-content {
|
|
3200
|
+
display: flex;
|
|
3201
|
+
align-items: center;
|
|
3202
|
+
justify-content: flex-end;
|
|
3203
|
+
gap: var(--spacing-2xs);
|
|
3204
|
+
}
|
|
3205
|
+
.Layer__profit-and-loss-detailed-charts .details-container .share-cell-content .share-icon {
|
|
3206
|
+
width: 12px;
|
|
3207
|
+
height: 12px;
|
|
3208
|
+
border-radius: 2px;
|
|
3209
|
+
}
|
|
3210
|
+
.Layer__profit-and-loss-detailed-table__row .category-col,
|
|
3211
|
+
.Layer__profit-and-loss-detailed-table__row .value-col {
|
|
3212
|
+
color: var(--color-base-900);
|
|
3213
|
+
}
|
|
3214
|
+
.Layer__profit-and-loss-detailed-table__row .type-col,
|
|
3215
|
+
.Layer__profit-and-loss-detailed-table__row .share-col {
|
|
3216
|
+
color: var(--color-base-1000);
|
|
3217
|
+
}
|
|
3218
|
+
.Layer__profit-and-loss-detailed-table__row.inactive .type-col,
|
|
3219
|
+
.Layer__profit-and-loss-detailed-table__row.inactive .share-col {
|
|
3220
|
+
color: var(--color-base-500);
|
|
3221
|
+
}
|
|
3222
|
+
.Layer__profit-and-loss-detailed-charts__pie {
|
|
3223
|
+
transition: fill 1000ms ease-out;
|
|
3224
|
+
}
|
|
3225
|
+
.Layer__profit-and-loss-detailed-charts__pie.inactive {
|
|
3226
|
+
fill: var(--color-base-300);
|
|
3227
|
+
}
|
|
2385
3228
|
.Layer__radio-button-group {
|
|
2386
3229
|
display: flex;
|
|
2387
3230
|
font-size: 1rem;
|
|
@@ -2440,6 +3283,7 @@
|
|
|
2440
3283
|
font-size: var(--text-sm);
|
|
2441
3284
|
}
|
|
2442
3285
|
.Layer__tooltip-trigger {
|
|
3286
|
+
display: flex;
|
|
2443
3287
|
flex: 1;
|
|
2444
3288
|
padding-top: 2px;
|
|
2445
3289
|
max-width: 100%;
|