@layerfi/components 0.1.31 → 0.1.33
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/README.md +122 -21
- package/dist/esm/index.js +7911 -7418
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +308 -60
- package/dist/index.js +10856 -10371
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +527 -183
- package/dist/styles/index.css.map +3 -3
- package/package.json +1 -1
- package/.idea/codeStyles/Project.xml +0 -61
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/layer-react.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
package/dist/styles/index.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
@import "https://rsms.me/inter/inter.css";
|
|
3
|
+
@import "react-datepicker/dist/react-datepicker.css";
|
|
3
4
|
|
|
4
5
|
/* src/styles/index.scss */
|
|
5
6
|
.Layer__component,
|
|
@@ -343,7 +344,9 @@
|
|
|
343
344
|
border-radius: 4px;
|
|
344
345
|
box-sizing: border-box;
|
|
345
346
|
transition: all 150ms ease-out;
|
|
346
|
-
padding:
|
|
347
|
+
padding: 0;
|
|
348
|
+
width: 36px;
|
|
349
|
+
height: 36px;
|
|
347
350
|
}
|
|
348
351
|
.Layer__btn.Layer__btn--full-width {
|
|
349
352
|
width: 100%;
|
|
@@ -635,16 +638,14 @@
|
|
|
635
638
|
border-top-left-radius: 0;
|
|
636
639
|
border-bottom-left-radius: 0;
|
|
637
640
|
}
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
box-shadow: none;
|
|
647
|
-
}
|
|
641
|
+
.Layer__date-month-picker__wrapper.Layer__date-month-picker__wrapper--current-date-option .Layer__date-month-picker {
|
|
642
|
+
border-top-right-radius: 0;
|
|
643
|
+
border-bottom-right-radius: 0;
|
|
644
|
+
}
|
|
645
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__current-button {
|
|
646
|
+
border: 1px solid var(--input-border-color);
|
|
647
|
+
border-left: none;
|
|
648
|
+
box-shadow: none;
|
|
648
649
|
}
|
|
649
650
|
.Layer__date-month-picker {
|
|
650
651
|
width: 210px;
|
|
@@ -707,34 +708,37 @@
|
|
|
707
708
|
background: linear-gradient(-90deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
|
|
708
709
|
z-index: 2;
|
|
709
710
|
}
|
|
710
|
-
@container (max-width:
|
|
711
|
-
.Layer__date-month-picker__wrapper .Layer__date-month-picker {
|
|
711
|
+
@container (max-width: 759px) {
|
|
712
|
+
.Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker {
|
|
712
713
|
border: none;
|
|
713
714
|
background: none;
|
|
714
715
|
width: 175px;
|
|
715
716
|
}
|
|
716
|
-
.Layer__date-month-picker__wrapper .Layer__date-month-picker__button {
|
|
717
|
+
.Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__button {
|
|
717
718
|
margin: 0 0.125rem;
|
|
718
719
|
box-shadow: 0px 1px 2px 0px var(--base-transparent-6, rgba(16, 24, 40, 0.06)), 0px 0px 0px 1px var(--color-base-300);
|
|
719
720
|
border-radius: 4px;
|
|
720
721
|
}
|
|
721
|
-
.Layer__date-month-picker__wrapper .Layer__date-month-picker__effect-blur {
|
|
722
|
+
.Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__effect-blur {
|
|
722
723
|
right: 0;
|
|
723
724
|
max-width: 70px;
|
|
724
725
|
background: linear-gradient(-90deg, #f7f8fa 75%, rgba(255, 255, 255, 0) 100%);
|
|
725
726
|
}
|
|
726
|
-
.Layer__date-month-picker__wrapper .Layer__date-month-picker__button--disabled {
|
|
727
|
+
.Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__button--disabled {
|
|
727
728
|
background-color: var(--color-base-200);
|
|
728
729
|
}
|
|
729
|
-
.Layer__date-month-picker__wrapper .Layer__date-month-picker__labels-container {
|
|
730
|
+
.Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__labels-container {
|
|
730
731
|
width: 550px;
|
|
731
732
|
}
|
|
732
|
-
.Layer__date-month-picker__wrapper .Layer__date-month-picker__label {
|
|
733
|
+
.Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__label {
|
|
733
734
|
padding-left: 0;
|
|
734
735
|
padding-right: 75px;
|
|
735
736
|
justify-content: flex-end;
|
|
736
737
|
font-size: 12px;
|
|
737
738
|
}
|
|
739
|
+
.Layer__date-month-picker--responsive .Layer__date-month-picker__current-button {
|
|
740
|
+
display: none;
|
|
741
|
+
}
|
|
738
742
|
}
|
|
739
743
|
.Layer__hover-menu {
|
|
740
744
|
position: relative;
|
|
@@ -821,7 +825,6 @@
|
|
|
821
825
|
border-radius: var(--border-radius-sm);
|
|
822
826
|
border: 1px solid var(--border-color);
|
|
823
827
|
background-color: var(--bg-color);
|
|
824
|
-
overflow: auto;
|
|
825
828
|
container-type: inline-size;
|
|
826
829
|
}
|
|
827
830
|
.Layer__component-container::-webkit-scrollbar {
|
|
@@ -928,6 +931,9 @@
|
|
|
928
931
|
.react-datepicker__tab-loop {
|
|
929
932
|
z-index: 99;
|
|
930
933
|
}
|
|
934
|
+
.Layer__datepicker input {
|
|
935
|
+
text-align: center;
|
|
936
|
+
}
|
|
931
937
|
.Layer__datepicker__time input {
|
|
932
938
|
max-width: 100px;
|
|
933
939
|
}
|
|
@@ -935,8 +941,18 @@
|
|
|
935
941
|
outline-color: var(--color-base-800);
|
|
936
942
|
}
|
|
937
943
|
.Layer__datepicker__popper {
|
|
944
|
+
z-index: 99;
|
|
938
945
|
border-radius: 8px;
|
|
939
946
|
}
|
|
947
|
+
.Layer__datepicker__popper .react-datepicker__day--in-range,
|
|
948
|
+
.Layer__datepicker__popper .react-datepicker__day--in-selecting-range {
|
|
949
|
+
background-color: var(--color-base-200);
|
|
950
|
+
color: var(--color-base-800);
|
|
951
|
+
}
|
|
952
|
+
.Layer__datepicker__popper .react-datepicker__day--range-end {
|
|
953
|
+
background-color: var(--color-base-800);
|
|
954
|
+
color: var(--color-base-100);
|
|
955
|
+
}
|
|
940
956
|
.Layer__datepicker__popper .react-datepicker__triangle {
|
|
941
957
|
display: none;
|
|
942
958
|
}
|
|
@@ -1060,10 +1076,39 @@
|
|
|
1060
1076
|
font-size: 14px;
|
|
1061
1077
|
border-bottom: 1px solid var(--color-base-200);
|
|
1062
1078
|
}
|
|
1079
|
+
.react-datepicker__children-container {
|
|
1080
|
+
width: 100%;
|
|
1081
|
+
margin: 0;
|
|
1082
|
+
padding: 0;
|
|
1083
|
+
}
|
|
1084
|
+
.Layer__datepicker__popper__custom-footer {
|
|
1085
|
+
display: flex;
|
|
1086
|
+
flex-direction: column;
|
|
1087
|
+
justify-content: flex-start;
|
|
1088
|
+
align-items: flex-start;
|
|
1089
|
+
padding: var(--spacing-md) var(--spacing-xs);
|
|
1090
|
+
border-top: 1px solid var(--color-base-200);
|
|
1091
|
+
}
|
|
1092
|
+
.Layer__datepicker__popper__custom-footer .Layer__text-btn {
|
|
1093
|
+
padding: var(--spacing-xs) var(--spacing-xs);
|
|
1094
|
+
color: var(--color-base-800);
|
|
1095
|
+
font-weight: 460;
|
|
1096
|
+
text-decoration: none;
|
|
1097
|
+
}
|
|
1063
1098
|
.Layer__details-list {
|
|
1064
1099
|
display: flex;
|
|
1065
1100
|
flex-direction: column;
|
|
1066
1101
|
}
|
|
1102
|
+
.Layer__details-list__actions > .Layer__details-list__close-btn {
|
|
1103
|
+
width: 36px;
|
|
1104
|
+
height: 36px;
|
|
1105
|
+
padding: 0;
|
|
1106
|
+
}
|
|
1107
|
+
@container (max-width: 1024px) {
|
|
1108
|
+
.Layer__details-list__actions > .Layer__details-list__close-btn {
|
|
1109
|
+
display: none;
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1067
1112
|
.Layer__details-list .Layer__component-header {
|
|
1068
1113
|
padding-bottom: 0;
|
|
1069
1114
|
}
|
|
@@ -1826,6 +1871,12 @@
|
|
|
1826
1871
|
transform: scaleX(0.98);
|
|
1827
1872
|
opacity: 0;
|
|
1828
1873
|
}
|
|
1874
|
+
.Layer__table__empty-row {
|
|
1875
|
+
background: var(--color-base-100);
|
|
1876
|
+
height: var(--spacing-2xs);
|
|
1877
|
+
border-top: 1px solid var(--color-base-200);
|
|
1878
|
+
border-bottom: 1px solid var(--color-base-200);
|
|
1879
|
+
}
|
|
1829
1880
|
.Layer__tabs {
|
|
1830
1881
|
display: flex;
|
|
1831
1882
|
width: max-content;
|
|
@@ -2071,6 +2122,15 @@
|
|
|
2071
2122
|
gap: var(--spacing-md);
|
|
2072
2123
|
container-type: inline-size;
|
|
2073
2124
|
}
|
|
2125
|
+
.Layer__view-main .Layer__toggle {
|
|
2126
|
+
border-radius: 6px;
|
|
2127
|
+
}
|
|
2128
|
+
.Layer__view-main .Layer__toggle .Layer__toggle-option input + span {
|
|
2129
|
+
border-radius: 6px;
|
|
2130
|
+
}
|
|
2131
|
+
.Layer__view-main .Layer__toggle__thumb {
|
|
2132
|
+
border-radius: 6px;
|
|
2133
|
+
}
|
|
2074
2134
|
.Layer__view-header {
|
|
2075
2135
|
display: flex;
|
|
2076
2136
|
width: 100%;
|
|
@@ -2099,6 +2159,43 @@
|
|
|
2099
2159
|
align-self: flex-start;
|
|
2100
2160
|
}
|
|
2101
2161
|
}
|
|
2162
|
+
.Layer__panel_view-main {
|
|
2163
|
+
display: flex;
|
|
2164
|
+
flex-direction: column;
|
|
2165
|
+
gap: var(--spacing-md);
|
|
2166
|
+
container-type: inline-size;
|
|
2167
|
+
}
|
|
2168
|
+
.Layer__panel_view-header {
|
|
2169
|
+
display: flex;
|
|
2170
|
+
width: 100%;
|
|
2171
|
+
border-bottom: 1px solid var(--color-base-200);
|
|
2172
|
+
container-type: inline-size;
|
|
2173
|
+
position: relative;
|
|
2174
|
+
z-index: 1;
|
|
2175
|
+
}
|
|
2176
|
+
.Layer__panel_view-header__content {
|
|
2177
|
+
padding: var(--spacing-lg);
|
|
2178
|
+
display: flex;
|
|
2179
|
+
align-items: center;
|
|
2180
|
+
justify-content: space-between;
|
|
2181
|
+
width: 100%;
|
|
2182
|
+
max-width: 1406px;
|
|
2183
|
+
}
|
|
2184
|
+
.Layer__panel_view-header__controls {
|
|
2185
|
+
display: flex;
|
|
2186
|
+
align-items: center;
|
|
2187
|
+
gap: var(--spacing-sm);
|
|
2188
|
+
}
|
|
2189
|
+
@container (max-width: 760px) {
|
|
2190
|
+
.Layer__panel_view-header__content {
|
|
2191
|
+
flex-direction: column;
|
|
2192
|
+
align-items: flex-start;
|
|
2193
|
+
gap: var(--spacing-sm);
|
|
2194
|
+
}
|
|
2195
|
+
.Layer__panel_view-header__content .Layer__heading {
|
|
2196
|
+
align-self: flex-start;
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2102
2199
|
.Layer__ledger-account__index {
|
|
2103
2200
|
background-color: var(--color-base-0);
|
|
2104
2201
|
width: 100%;
|
|
@@ -2120,22 +2217,19 @@
|
|
|
2120
2217
|
}
|
|
2121
2218
|
.Layer__ledger-account__header {
|
|
2122
2219
|
display: flex;
|
|
2123
|
-
flex-direction:
|
|
2220
|
+
flex-direction: row;
|
|
2124
2221
|
padding: var(--spacing-xl);
|
|
2125
2222
|
padding-bottom: var(--spacing-md);
|
|
2223
|
+
gap: var(--spacing-md);
|
|
2126
2224
|
align-items: flex-start;
|
|
2127
2225
|
justify-content: flex-start;
|
|
2128
2226
|
}
|
|
2129
2227
|
.Layer__ledger-account__title-container {
|
|
2130
2228
|
display: flex;
|
|
2131
|
-
|
|
2132
|
-
|
|
2229
|
+
flex-direction: column;
|
|
2230
|
+
justify-content: flex-start;
|
|
2231
|
+
align-items: flex-start;
|
|
2133
2232
|
width: 100%;
|
|
2134
|
-
padding-top: var(--spacing-md);
|
|
2135
|
-
padding-bottom: var(--spacing-3xs);
|
|
2136
|
-
}
|
|
2137
|
-
.Layer__ledger-account__title {
|
|
2138
|
-
font-size: 24px;
|
|
2139
2233
|
}
|
|
2140
2234
|
.Layer__ledger-account__balance-container {
|
|
2141
2235
|
display: flex;
|
|
@@ -2145,6 +2239,15 @@
|
|
|
2145
2239
|
.Layer__ledger-account__balance-label {
|
|
2146
2240
|
color: var(--color-base-600);
|
|
2147
2241
|
}
|
|
2242
|
+
.Layer__ledger-account__entry-details__back-btn {
|
|
2243
|
+
display: flex;
|
|
2244
|
+
align-items: center;
|
|
2245
|
+
gap: var(--spacing-md);
|
|
2246
|
+
padding-bottom: var(--spacing-md);
|
|
2247
|
+
}
|
|
2248
|
+
.Layer__ledger-account__entry-details__title-container > .Layer__text {
|
|
2249
|
+
font-size: 24px;
|
|
2250
|
+
}
|
|
2148
2251
|
.Layer__ledger-account__entry-details__line-items {
|
|
2149
2252
|
padding: var(--spacing-md);
|
|
2150
2253
|
}
|
|
@@ -2263,225 +2366,395 @@
|
|
|
2263
2366
|
background-color: var(--background-color);
|
|
2264
2367
|
}
|
|
2265
2368
|
.Layer__balance-sheet * {
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2369
|
+
font-family: var(--font-family);
|
|
2370
|
+
font-feature-settings:
|
|
2371
|
+
"cv10" on,
|
|
2372
|
+
"cv01" on,
|
|
2373
|
+
"cv05" on,
|
|
2374
|
+
"cv08" on,
|
|
2375
|
+
"ss03" on;
|
|
2271
2376
|
}
|
|
2272
|
-
.Layer__balance-
|
|
2273
|
-
display:
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2377
|
+
.Layer__balance-sheet tbody .Layer__table__empty-row:first-child {
|
|
2378
|
+
display: none;
|
|
2379
|
+
}
|
|
2380
|
+
.Layer__balance-sheet .Layer__balance-sheet__title {
|
|
2381
|
+
display: inline;
|
|
2382
|
+
flex: 1;
|
|
2383
|
+
font-size: var(--text-heading);
|
|
2384
|
+
margin: 0;
|
|
2385
|
+
}
|
|
2386
|
+
@container (max-width: 800px) {
|
|
2387
|
+
.Layer__balance-sheet .Layer__balance-sheet__header {
|
|
2388
|
+
flex-direction: column;
|
|
2389
|
+
gap: var(--spacing-sm);
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2392
|
+
@container (max-width: 540px) {
|
|
2393
|
+
.Layer__balance-sheet .Layer__balance-sheet__header {
|
|
2394
|
+
flex-direction: row;
|
|
2395
|
+
gap: var(--spacing-sm);
|
|
2396
|
+
flex-wrap: wrap;
|
|
2397
|
+
}
|
|
2398
|
+
.Layer__balance-sheet .Layer__balance-sheet__header .Layer__balance-sheet__actions {
|
|
2399
|
+
flex-wrap: wrap;
|
|
2400
|
+
}
|
|
2401
|
+
.Layer__balance-sheet .Layer__balance-sheet__header .Layer__balance-sheet__actions__date-picker {
|
|
2402
|
+
flex-wrap: wrap;
|
|
2403
|
+
gap: var(--spacing-xs);
|
|
2404
|
+
}
|
|
2277
2405
|
}
|
|
2278
2406
|
.Layer__balance-sheet__header {
|
|
2279
2407
|
display: flex;
|
|
2280
2408
|
flex: 1;
|
|
2281
2409
|
flex-direction: row;
|
|
2282
|
-
padding:
|
|
2410
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
2283
2411
|
}
|
|
2284
|
-
.Layer__balance-
|
|
2285
|
-
display: inline;
|
|
2412
|
+
.Layer__balance-sheet__header.Layer__balance-sheet__header--no-title .Layer__balance-sheet__actions {
|
|
2286
2413
|
flex: 1;
|
|
2287
|
-
font-size: 1.5rem;
|
|
2288
|
-
font-weight: 600;
|
|
2289
|
-
margin-bottom: 1.5rem;
|
|
2290
|
-
margin-left: 1.5rem;
|
|
2291
|
-
margin-right: 1.5rem;
|
|
2292
|
-
}
|
|
2293
|
-
.Layer__balance-sheet__date {
|
|
2294
|
-
font-size: 0.75em;
|
|
2295
2414
|
}
|
|
2296
|
-
.Layer__balance-
|
|
2297
|
-
|
|
2415
|
+
.Layer__balance-sheet__header .Layer__balance-sheet__actions {
|
|
2416
|
+
display: flex;
|
|
2417
|
+
flex-direction: row;
|
|
2418
|
+
justify-content: space-between;
|
|
2419
|
+
gap: var(--spacing-xs);
|
|
2298
2420
|
}
|
|
2299
|
-
.Layer__balance-
|
|
2300
|
-
align-self: center;
|
|
2301
|
-
border: 2px solid var(--border-color);
|
|
2302
|
-
background-color: var(--background-color);
|
|
2303
|
-
padding: 0.5rem;
|
|
2304
|
-
border-radius: var(--corner-radius);
|
|
2305
|
-
margin-left: 0.5rem;
|
|
2421
|
+
.Layer__balance-sheet__header .Layer__balance-sheet__actions .Layer__balance-sheet__actions__date-picker {
|
|
2306
2422
|
display: flex;
|
|
2307
2423
|
flex-direction: row;
|
|
2308
|
-
|
|
2309
|
-
align-items: center;
|
|
2424
|
+
gap: var(--spacing-xs);
|
|
2310
2425
|
}
|
|
2311
|
-
.Layer__balance-
|
|
2312
|
-
|
|
2426
|
+
.Layer__balance-sheet__table {
|
|
2427
|
+
width: 100%;
|
|
2428
|
+
border-collapse: collapse;
|
|
2313
2429
|
}
|
|
2314
|
-
.Layer__balance-
|
|
2315
|
-
|
|
2430
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row {
|
|
2431
|
+
font-size: 1em;
|
|
2432
|
+
height: 52px;
|
|
2316
2433
|
}
|
|
2317
|
-
.Layer__balance-sheet-
|
|
2318
|
-
|
|
2319
|
-
justify-content: center;
|
|
2320
|
-
display: flex;
|
|
2434
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row .Layer__balance-sheet-cell__value .Layer__table-cell-content {
|
|
2435
|
+
justify-content: flex-end;
|
|
2321
2436
|
}
|
|
2322
|
-
.Layer__balance-sheet-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2437
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-0:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
|
|
2438
|
+
padding-left: 16px;
|
|
2439
|
+
}
|
|
2440
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-0 .Layer__balance-sheet-cell__label .Layer__table-cell-content {
|
|
2441
|
+
font-size: var(--text-lg);
|
|
2442
|
+
font-weight: 540;
|
|
2443
|
+
color: var(--text-color-primary);
|
|
2444
|
+
}
|
|
2445
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1:not(.Layer__balance-sheet-row--display-children-true) {
|
|
2446
|
+
background-color: var(--color-base-50);
|
|
2447
|
+
}
|
|
2448
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
|
|
2449
|
+
padding-left: calc(50px - var(--spacing-sm));
|
|
2450
|
+
}
|
|
2451
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__balance-sheet-cell__label {
|
|
2452
|
+
padding-left: calc(34px - var(--spacing-sm));
|
|
2453
|
+
}
|
|
2454
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__table-cell-content {
|
|
2455
|
+
font-size: var(--text-md);
|
|
2456
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2457
|
+
color: var(--color-base-700);
|
|
2458
|
+
}
|
|
2459
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2:not(.Layer__balance-sheet-row--display-children-true) {
|
|
2460
|
+
background-color: var(--color-base-50);
|
|
2461
|
+
}
|
|
2462
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
|
|
2463
|
+
padding-left: calc(80px - var(--spacing-sm));
|
|
2464
|
+
}
|
|
2465
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__balance-sheet-cell__label {
|
|
2466
|
+
padding-left: calc(64px - var(--spacing-sm));
|
|
2467
|
+
}
|
|
2468
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__table-cell-content {
|
|
2469
|
+
font-size: var(--text-md);
|
|
2470
|
+
font-weight: 460;
|
|
2471
|
+
color: var(--text-color-secondary);
|
|
2472
|
+
}
|
|
2473
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3:not(.Layer__balance-sheet-row--display-children-true) {
|
|
2474
|
+
background-color: var(--color-base-50);
|
|
2475
|
+
}
|
|
2476
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
|
|
2477
|
+
padding-left: calc(104px - var(--spacing-sm));
|
|
2478
|
+
}
|
|
2479
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3 .Layer__balance-sheet-cell__label {
|
|
2480
|
+
padding-left: calc(88px - var(--spacing-sm));
|
|
2481
|
+
}
|
|
2482
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3 .Layer__table-cell-content {
|
|
2483
|
+
font-size: var(--text-md);
|
|
2484
|
+
font-weight: 460;
|
|
2485
|
+
color: var(--text-color-secondary);
|
|
2486
|
+
}
|
|
2487
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4:not(.Layer__balance-sheet-row--display-children-true) {
|
|
2488
|
+
background-color: var(--color-base-50);
|
|
2489
|
+
}
|
|
2490
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
|
|
2491
|
+
padding-left: calc(130px - var(--spacing-sm));
|
|
2492
|
+
}
|
|
2493
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4 .Layer__balance-sheet-cell__label {
|
|
2494
|
+
padding-left: calc(114px - var(--spacing-sm));
|
|
2495
|
+
}
|
|
2496
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4 .Layer__table-cell-content {
|
|
2497
|
+
font-size: var(--text-md);
|
|
2498
|
+
font-weight: 460;
|
|
2499
|
+
color: var(--text-color-secondary);
|
|
2500
|
+
}
|
|
2501
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-true {
|
|
2502
|
+
font-weight: bold;
|
|
2503
|
+
cursor: pointer;
|
|
2504
|
+
}
|
|
2505
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-false {
|
|
2506
|
+
font-weight: normal;
|
|
2507
|
+
}
|
|
2508
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation {
|
|
2509
|
+
background: var(--color-base-100) !important;
|
|
2510
|
+
}
|
|
2511
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation .Layer__table-cell-content {
|
|
2512
|
+
font-size: var(--text-md);
|
|
2513
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2514
|
+
color: var(--text-color-primary);
|
|
2515
|
+
}
|
|
2516
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--expanded svg {
|
|
2517
|
+
transform: rotate(0deg);
|
|
2518
|
+
}
|
|
2519
|
+
.Layer__balance-sheet__table .Layer__table-cell--last {
|
|
2520
|
+
text-align: right;
|
|
2521
|
+
}
|
|
2522
|
+
.Layer__balance-sheet__table .Layer__table-cell__content-wrapper {
|
|
2328
2523
|
display: flex;
|
|
2329
|
-
flex-direction: row;
|
|
2330
|
-
justify-content: center;
|
|
2331
2524
|
align-items: center;
|
|
2332
2525
|
}
|
|
2333
|
-
.Layer__balance-
|
|
2334
|
-
|
|
2526
|
+
.Layer__balance-sheet__table .Layer__table-cell__content-wrapper .Layer__table__expand-icon {
|
|
2527
|
+
margin: 0;
|
|
2528
|
+
transition: transform var(--transition-speed);
|
|
2529
|
+
transform: rotate(-90deg);
|
|
2335
2530
|
}
|
|
2336
|
-
.Layer__balance-sheet-
|
|
2337
|
-
|
|
2531
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__label {
|
|
2532
|
+
position: relative;
|
|
2338
2533
|
}
|
|
2339
|
-
.Layer__balance-
|
|
2534
|
+
.Layer__balance-sheet__table .Layer__table-cell__active {
|
|
2535
|
+
display: none;
|
|
2536
|
+
width: 4px;
|
|
2537
|
+
height: 100%;
|
|
2340
2538
|
position: absolute;
|
|
2341
|
-
|
|
2342
|
-
bottom: 0;
|
|
2539
|
+
background: var(--color-base-400);
|
|
2343
2540
|
left: 0;
|
|
2344
|
-
|
|
2345
|
-
height: 100%;
|
|
2346
|
-
opacity: 0;
|
|
2541
|
+
top: 0;
|
|
2347
2542
|
}
|
|
2348
|
-
.Layer__balance-sheet-row {
|
|
2349
|
-
|
|
2543
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row .Layer__table-cell__active {
|
|
2544
|
+
display: none;
|
|
2545
|
+
}
|
|
2546
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row:not(.Layer__balance-sheet-row--display-children-true) .Layer__table-cell__active {
|
|
2547
|
+
display: block;
|
|
2548
|
+
}
|
|
2549
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__label .Layer__table-cell-content {
|
|
2550
|
+
padding-left: 0;
|
|
2551
|
+
}
|
|
2552
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__value--positive .Layer__table-cell-content::before {
|
|
2553
|
+
content: "$";
|
|
2554
|
+
}
|
|
2555
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__value--negative .Layer__table-cell-content::before {
|
|
2556
|
+
content: "-$";
|
|
2557
|
+
}
|
|
2558
|
+
.Layer__statement-of-cash-flow {
|
|
2559
|
+
border: 1px solid var(--border-color);
|
|
2560
|
+
border-radius: var(--corner-radius);
|
|
2350
2561
|
background-color: var(--background-color);
|
|
2351
|
-
font-size: 1em;
|
|
2352
2562
|
}
|
|
2353
|
-
.
|
|
2354
|
-
|
|
2563
|
+
.Layer__statement-of-cash-flow .Layer__panel_view-header__controls {
|
|
2564
|
+
gap: 0;
|
|
2355
2565
|
}
|
|
2356
|
-
.
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2566
|
+
.Layer__statement-of-cash-flow * {
|
|
2567
|
+
font-family: var(--font-family);
|
|
2568
|
+
font-feature-settings:
|
|
2569
|
+
"cv10" on,
|
|
2570
|
+
"cv01" on,
|
|
2571
|
+
"cv05" on,
|
|
2572
|
+
"cv08" on,
|
|
2573
|
+
"ss03" on;
|
|
2363
2574
|
}
|
|
2364
|
-
.
|
|
2365
|
-
|
|
2575
|
+
.Layer__statement-of-cash-flow tbody .Layer__table__empty-row:first-child {
|
|
2576
|
+
display: none;
|
|
2366
2577
|
}
|
|
2367
|
-
.
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2578
|
+
.Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__title {
|
|
2579
|
+
display: inline;
|
|
2580
|
+
flex: 1;
|
|
2581
|
+
font-size: var(--text-heading);
|
|
2582
|
+
margin: 0;
|
|
2583
|
+
}
|
|
2584
|
+
@container (max-width: 800px) {
|
|
2585
|
+
.Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header {
|
|
2586
|
+
flex-direction: column;
|
|
2587
|
+
gap: var(--spacing-sm);
|
|
2588
|
+
}
|
|
2372
2589
|
}
|
|
2373
|
-
|
|
2590
|
+
@container (max-width: 540px) {
|
|
2591
|
+
.Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header {
|
|
2592
|
+
flex-direction: row;
|
|
2593
|
+
gap: var(--spacing-sm);
|
|
2594
|
+
flex-wrap: wrap;
|
|
2595
|
+
}
|
|
2596
|
+
.Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions {
|
|
2597
|
+
flex-wrap: wrap;
|
|
2598
|
+
}
|
|
2599
|
+
.Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions__date-picker {
|
|
2600
|
+
flex-wrap: wrap;
|
|
2601
|
+
gap: var(--spacing-xs);
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
@container (min-width: 1400px) {
|
|
2605
|
+
.Layer__statement-of-cash-flow .Layer__table tr td:first-child .Layer__table-cell-content,
|
|
2606
|
+
.Layer__statement-of-cash-flow .Layer__table tr td:last-child .Layer__table-cell-content,
|
|
2607
|
+
.Layer__statement-of-cash-flow .Layer__table tr th:first-child.Layer__table-header,
|
|
2608
|
+
.Layer__statement-of-cash-flow .Layer__table tr th:last-child.Layer__table-header {
|
|
2609
|
+
padding-left: 0;
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
.Layer__statement-of-cash-flow__header {
|
|
2374
2613
|
display: flex;
|
|
2375
|
-
|
|
2376
|
-
|
|
2614
|
+
flex: 1;
|
|
2615
|
+
flex-direction: row;
|
|
2616
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
2377
2617
|
}
|
|
2378
|
-
.
|
|
2379
|
-
|
|
2380
|
-
width: 1.25rem;
|
|
2381
|
-
height: 1.25rem;
|
|
2382
|
-
margin-right: 0.25rem;
|
|
2383
|
-
transition: transform var(--transition-speed);
|
|
2384
|
-
transform: rotate(-90deg);
|
|
2618
|
+
.Layer__statement-of-cash-flow__header.Layer__statement-of-cash-flow__header--no-title .Layer__statement-of-cash-flow__actions {
|
|
2619
|
+
flex: 1;
|
|
2385
2620
|
}
|
|
2386
|
-
.
|
|
2387
|
-
|
|
2621
|
+
.Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions {
|
|
2622
|
+
display: flex;
|
|
2623
|
+
flex-direction: row;
|
|
2624
|
+
justify-content: space-between;
|
|
2625
|
+
gap: var(--spacing-xs);
|
|
2388
2626
|
}
|
|
2389
|
-
.
|
|
2627
|
+
.Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions .Layer__statement-of-cash-flow__actions__date-picker {
|
|
2390
2628
|
display: flex;
|
|
2629
|
+
flex-direction: row;
|
|
2630
|
+
gap: var(--spacing-xs);
|
|
2631
|
+
}
|
|
2632
|
+
.Layer__statement-of-cash-flow__table {
|
|
2633
|
+
width: 100%;
|
|
2634
|
+
border-collapse: collapse;
|
|
2635
|
+
}
|
|
2636
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row {
|
|
2637
|
+
font-size: 1em;
|
|
2638
|
+
height: 52px;
|
|
2639
|
+
}
|
|
2640
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row .Layer__statement-of-cash-flow-cell__value .Layer__table-cell-content {
|
|
2391
2641
|
justify-content: flex-end;
|
|
2392
|
-
align-items: center;
|
|
2393
2642
|
}
|
|
2394
|
-
.
|
|
2395
|
-
|
|
2396
|
-
width: 1.25rem;
|
|
2397
|
-
height: 1.25rem;
|
|
2398
|
-
margin-right: 0.25rem;
|
|
2643
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-0:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
|
|
2644
|
+
padding-left: 16px;
|
|
2399
2645
|
}
|
|
2400
|
-
.
|
|
2401
|
-
|
|
2646
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-0 .Layer__statement-of-cash-flow-cell__label .Layer__table-cell-content {
|
|
2647
|
+
font-size: var(--text-lg);
|
|
2648
|
+
font-weight: 540;
|
|
2649
|
+
color: var(--text-color-primary);
|
|
2402
2650
|
}
|
|
2403
|
-
.
|
|
2404
|
-
|
|
2651
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-0.Layer__statement-of-cash-flow-row--variant-summation .Layer__table-cell-content {
|
|
2652
|
+
font-size: var(--text-md);
|
|
2405
2653
|
}
|
|
2406
|
-
.
|
|
2407
|
-
|
|
2654
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1:not(.Layer__statement-of-cash-flow-row--display-children-true) {
|
|
2655
|
+
background-color: var(--color-base-50);
|
|
2408
2656
|
}
|
|
2409
|
-
.
|
|
2410
|
-
|
|
2657
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
|
|
2658
|
+
padding-left: calc(50px - var(--spacing-sm));
|
|
2411
2659
|
}
|
|
2412
|
-
.
|
|
2413
|
-
padding-
|
|
2414
|
-
padding-left: 2em;
|
|
2415
|
-
font-size: 0.8em;
|
|
2660
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1 .Layer__statement-of-cash-flow-cell__label {
|
|
2661
|
+
padding-left: calc(34px - var(--spacing-sm));
|
|
2416
2662
|
}
|
|
2417
|
-
.
|
|
2418
|
-
font-size:
|
|
2663
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1 .Layer__table-cell-content {
|
|
2664
|
+
font-size: var(--text-md);
|
|
2665
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2666
|
+
color: var(--color-base-700);
|
|
2419
2667
|
}
|
|
2420
|
-
.
|
|
2421
|
-
|
|
2422
|
-
padding-left: 4em;
|
|
2423
|
-
font-size: 0.8em;
|
|
2668
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2:not(.Layer__statement-of-cash-flow-row--display-children-true) {
|
|
2669
|
+
background-color: var(--color-base-50);
|
|
2424
2670
|
}
|
|
2425
|
-
.
|
|
2426
|
-
|
|
2671
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
|
|
2672
|
+
padding-left: calc(80px - var(--spacing-sm));
|
|
2427
2673
|
}
|
|
2428
|
-
.
|
|
2429
|
-
|
|
2674
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2 .Layer__statement-of-cash-flow-cell__label {
|
|
2675
|
+
padding-left: calc(64px - var(--spacing-sm));
|
|
2430
2676
|
}
|
|
2431
|
-
.
|
|
2432
|
-
font-
|
|
2677
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2 .Layer__table-cell-content {
|
|
2678
|
+
font-size: var(--text-md);
|
|
2679
|
+
font-weight: 460;
|
|
2680
|
+
color: var(--text-color-secondary);
|
|
2433
2681
|
}
|
|
2434
|
-
.
|
|
2435
|
-
|
|
2682
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3:not(.Layer__statement-of-cash-flow-row--display-children-true) {
|
|
2683
|
+
background-color: var(--color-base-50);
|
|
2436
2684
|
}
|
|
2437
|
-
.
|
|
2438
|
-
|
|
2685
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
|
|
2686
|
+
padding-left: calc(104px - var(--spacing-sm));
|
|
2439
2687
|
}
|
|
2440
|
-
.
|
|
2441
|
-
|
|
2688
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3 .Layer__statement-of-cash-flow-cell__label {
|
|
2689
|
+
padding-left: calc(88px - var(--spacing-sm));
|
|
2442
2690
|
}
|
|
2443
|
-
.
|
|
2444
|
-
|
|
2691
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3 .Layer__table-cell-content {
|
|
2692
|
+
font-size: var(--text-md);
|
|
2693
|
+
font-weight: 460;
|
|
2694
|
+
color: var(--text-color-secondary);
|
|
2445
2695
|
}
|
|
2446
|
-
.
|
|
2447
|
-
|
|
2696
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4:not(.Layer__statement-of-cash-flow-row--display-children-true) {
|
|
2697
|
+
background-color: var(--color-base-50);
|
|
2698
|
+
}
|
|
2699
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
|
|
2700
|
+
padding-left: calc(130px - var(--spacing-sm));
|
|
2701
|
+
}
|
|
2702
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4 .Layer__statement-of-cash-flow-cell__label {
|
|
2703
|
+
padding-left: calc(114px - var(--spacing-sm));
|
|
2704
|
+
}
|
|
2705
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4 .Layer__table-cell-content {
|
|
2706
|
+
font-size: var(--text-md);
|
|
2707
|
+
font-weight: 460;
|
|
2708
|
+
color: var(--text-color-secondary);
|
|
2448
2709
|
}
|
|
2449
|
-
.
|
|
2710
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--display-children-true {
|
|
2450
2711
|
font-weight: bold;
|
|
2712
|
+
cursor: pointer;
|
|
2451
2713
|
}
|
|
2452
|
-
.
|
|
2453
|
-
|
|
2454
|
-
user-select: none;
|
|
2714
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--display-children-false {
|
|
2715
|
+
font-weight: normal;
|
|
2455
2716
|
}
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
opacity: 100%;
|
|
2459
|
-
}
|
|
2460
|
-
to {
|
|
2461
|
-
opacity: 20%;
|
|
2462
|
-
}
|
|
2717
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--variant-summation {
|
|
2718
|
+
background: var(--color-base-100);
|
|
2463
2719
|
}
|
|
2464
|
-
.
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
border-radius: var(--corner-radius);
|
|
2720
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--variant-summation .Layer__table-cell-content {
|
|
2721
|
+
font-size: var(--text-md);
|
|
2722
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2723
|
+
color: var(--text-color-primary);
|
|
2469
2724
|
}
|
|
2470
|
-
.
|
|
2471
|
-
|
|
2472
|
-
padding-left: 1rem;
|
|
2725
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--expanded svg {
|
|
2726
|
+
transform: rotate(0deg);
|
|
2473
2727
|
}
|
|
2474
|
-
.
|
|
2475
|
-
|
|
2476
|
-
|
|
2728
|
+
.Layer__statement-of-cash-flow__table .Layer__table-cell--last {
|
|
2729
|
+
text-align: right;
|
|
2730
|
+
}
|
|
2731
|
+
.Layer__statement-of-cash-flow__table .Layer__table-cell__content-wrapper {
|
|
2732
|
+
display: flex;
|
|
2733
|
+
align-items: center;
|
|
2477
2734
|
}
|
|
2478
|
-
.
|
|
2479
|
-
|
|
2480
|
-
|
|
2735
|
+
.Layer__statement-of-cash-flow__table .Layer__table-cell__content-wrapper .Layer__table__expand-icon {
|
|
2736
|
+
margin: 0;
|
|
2737
|
+
transition: transform var(--transition-speed);
|
|
2738
|
+
transform: rotate(-90deg);
|
|
2739
|
+
}
|
|
2740
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__label {
|
|
2741
|
+
position: relative;
|
|
2742
|
+
}
|
|
2743
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__label .Layer__table-cell-content {
|
|
2744
|
+
padding-left: 0;
|
|
2745
|
+
}
|
|
2746
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__value--positive .Layer__table-cell-content::before {
|
|
2747
|
+
content: "$";
|
|
2748
|
+
}
|
|
2749
|
+
.Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__value--negative .Layer__table-cell-content::before {
|
|
2750
|
+
content: "-$";
|
|
2481
2751
|
}
|
|
2482
2752
|
.Layer__bank-transactions {
|
|
2483
2753
|
max-width: var(--max-component-width);
|
|
2484
2754
|
}
|
|
2755
|
+
.Layer__bank-transactions.Layer__component {
|
|
2756
|
+
overflow: auto;
|
|
2757
|
+
}
|
|
2485
2758
|
.Layer__bank-transactions__loader-container {
|
|
2486
2759
|
padding: var(--spacing-2xl);
|
|
2487
2760
|
}
|
|
@@ -3873,6 +4146,13 @@
|
|
|
3873
4146
|
gap: var(--spacing-sm);
|
|
3874
4147
|
align-items: center;
|
|
3875
4148
|
}
|
|
4149
|
+
.Layer__chart-of-accounts__form .actions {
|
|
4150
|
+
display: none;
|
|
4151
|
+
gap: var(--spacing-sm);
|
|
4152
|
+
align-items: center;
|
|
4153
|
+
justify-content: flex-end;
|
|
4154
|
+
padding-top: var(--spacing-xl);
|
|
4155
|
+
}
|
|
3876
4156
|
.Layer__chart-of-accounts__table .Layer__table-row:not(.Layer__table-row--header) {
|
|
3877
4157
|
cursor: pointer;
|
|
3878
4158
|
}
|
|
@@ -3991,6 +4271,12 @@
|
|
|
3991
4271
|
.Layer__table-cell.Layer__coa__actions .Layer__table-cell-content {
|
|
3992
4272
|
padding-right: var(--spacing-md);
|
|
3993
4273
|
}
|
|
4274
|
+
.Layer__chart-of-accounts__sidebar__header .actions {
|
|
4275
|
+
display: none;
|
|
4276
|
+
}
|
|
4277
|
+
.Layer__chart-of-accounts__form .actions {
|
|
4278
|
+
display: flex;
|
|
4279
|
+
}
|
|
3994
4280
|
}
|
|
3995
4281
|
@container (min-width: 761px) and (max-width: 1024px) {
|
|
3996
4282
|
.Layer__chart-of-accounts .Layer__mobile--hidden {
|
|
@@ -4042,6 +4328,19 @@
|
|
|
4042
4328
|
display: flex;
|
|
4043
4329
|
align-items: stretch;
|
|
4044
4330
|
position: relative;
|
|
4331
|
+
overflow: auto;
|
|
4332
|
+
}
|
|
4333
|
+
@container (min-width: 1025px) {
|
|
4334
|
+
.Layer__component-container.Layer__journal {
|
|
4335
|
+
overflow: unset;
|
|
4336
|
+
}
|
|
4337
|
+
}
|
|
4338
|
+
.Layer__journal .Layer__journal__bottom-actions {
|
|
4339
|
+
display: none;
|
|
4340
|
+
gap: var(--spacing-sm);
|
|
4341
|
+
align-items: center;
|
|
4342
|
+
justify-content: flex-end;
|
|
4343
|
+
padding: var(--spacing-xl);
|
|
4045
4344
|
}
|
|
4046
4345
|
.Layer__journal-table .Layer__table-cell-content::before {
|
|
4047
4346
|
background: var(--color-base-400);
|
|
@@ -4246,6 +4545,21 @@
|
|
|
4246
4545
|
.Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content {
|
|
4247
4546
|
width: 100%;
|
|
4248
4547
|
}
|
|
4548
|
+
.Layer__journal .Layer__journal__sidebar__header .actions {
|
|
4549
|
+
display: none;
|
|
4550
|
+
}
|
|
4551
|
+
.Layer__journal .Layer__journal__sidebar__header .actions {
|
|
4552
|
+
display: none;
|
|
4553
|
+
}
|
|
4554
|
+
.Layer__journal .Layer__journal__bottom-actions {
|
|
4555
|
+
display: flex;
|
|
4556
|
+
}
|
|
4557
|
+
.Layer__journal .Layer__panel.Layer__panel--open {
|
|
4558
|
+
overflow: hidden;
|
|
4559
|
+
}
|
|
4560
|
+
.Layer__journal__form__input-group.Layer__journal__form__input-group__textarea {
|
|
4561
|
+
background: transparent;
|
|
4562
|
+
}
|
|
4249
4563
|
}
|
|
4250
4564
|
@container (min-width: 500px) and (max-width: 1024px) {
|
|
4251
4565
|
.Layer__journal__panel .Layer__details-list .Layer__component-header {
|
|
@@ -4994,6 +5308,8 @@
|
|
|
4994
5308
|
background: rgba(255, 255, 255, 0.5);
|
|
4995
5309
|
backdrop-filter: blur(6px);
|
|
4996
5310
|
z-index: 1;
|
|
5311
|
+
border-top-left-radius: var(--border-radius-sm);
|
|
5312
|
+
border-top-right-radius: var(--border-radius-sm);
|
|
4997
5313
|
}
|
|
4998
5314
|
.Layer__panel__sidebar {
|
|
4999
5315
|
width: 480px;
|
|
@@ -5008,6 +5324,7 @@
|
|
|
5008
5324
|
background: var(--color-base-0);
|
|
5009
5325
|
height: 100%;
|
|
5010
5326
|
border-left: 1px solid var(--color-base-300);
|
|
5327
|
+
border-top-right-radius: var(--border-radius-sm);
|
|
5011
5328
|
}
|
|
5012
5329
|
.Layer__panel__sidebar .Layer__panel__sidebar-content {
|
|
5013
5330
|
width: 480px;
|
|
@@ -5029,10 +5346,19 @@
|
|
|
5029
5346
|
max-width: 100%;
|
|
5030
5347
|
width: 100%;
|
|
5031
5348
|
border-width: 0;
|
|
5349
|
+
border-radius: var(--border-radius-sm);
|
|
5032
5350
|
opacity: 0.2;
|
|
5033
5351
|
transform: translateY(-50px) scale(0.96);
|
|
5034
5352
|
transition: transform 120ms ease-in-out, opacity 120ms ease-in-out;
|
|
5035
5353
|
}
|
|
5354
|
+
.Layer__panel__sidebar .Layer__panel__sidebar-content {
|
|
5355
|
+
position: sticky;
|
|
5356
|
+
top: 0;
|
|
5357
|
+
height: min-content;
|
|
5358
|
+
}
|
|
5359
|
+
.Layer__panel--open .Layer__panel__sidebar {
|
|
5360
|
+
overflow: unset;
|
|
5361
|
+
}
|
|
5036
5362
|
.Layer__panel.Layer__panel--open .Layer__panel__sidebar {
|
|
5037
5363
|
left: 0;
|
|
5038
5364
|
top: 0;
|
|
@@ -5089,6 +5415,7 @@
|
|
|
5089
5415
|
grid-template-columns: 1fr auto;
|
|
5090
5416
|
overflow: hidden;
|
|
5091
5417
|
background-color: var(--color-base-100);
|
|
5418
|
+
border-radius: var(--border-radius-sm);
|
|
5092
5419
|
}
|
|
5093
5420
|
.Layer__profit-and-loss-table__loader-container {
|
|
5094
5421
|
padding: var(--spacing-2xl);
|
|
@@ -5440,6 +5767,10 @@
|
|
|
5440
5767
|
.Layer__profit-and-loss__chart_with_summaries__chart-col {
|
|
5441
5768
|
padding-left: var(--spacing-xs);
|
|
5442
5769
|
}
|
|
5770
|
+
.Layer__panel--open .Layer__profit-and-loss-table {
|
|
5771
|
+
border-top-right-radius: 0;
|
|
5772
|
+
border-bottom-right-radius: 0;
|
|
5773
|
+
}
|
|
5443
5774
|
}
|
|
5444
5775
|
@container (max-width: 1023px) and (min-width: 760px) {
|
|
5445
5776
|
.Layer__profit-and-loss-summaries,
|
|
@@ -5521,6 +5852,9 @@
|
|
|
5521
5852
|
}
|
|
5522
5853
|
header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
5523
5854
|
display: none;
|
|
5855
|
+
justify-content: flex-start;
|
|
5856
|
+
gap: var(--spacing-md);
|
|
5857
|
+
align-items: center;
|
|
5524
5858
|
}
|
|
5525
5859
|
@container (max-width: 1023px) and (min-width: 768px) {
|
|
5526
5860
|
header.Layer__profit-and-loss-detailed-charts__header {
|
|
@@ -5533,7 +5867,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
5533
5867
|
.Layer__profit-and-loss-detailed-charts__head {
|
|
5534
5868
|
display: flex;
|
|
5535
5869
|
flex-direction: column;
|
|
5536
|
-
gap: var(--spacing-
|
|
5870
|
+
gap: var(--spacing-4xs);
|
|
5537
5871
|
}
|
|
5538
5872
|
.Layer__profit-and-loss-detailed-charts__head .title {
|
|
5539
5873
|
color: var(--color-base-800);
|
|
@@ -5550,6 +5884,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
5550
5884
|
.Layer__profit-and-loss-detailed-charts {
|
|
5551
5885
|
width: 100%;
|
|
5552
5886
|
background: var(--color-base-0);
|
|
5887
|
+
border-radius: var(--border-radius-sm);
|
|
5553
5888
|
}
|
|
5554
5889
|
.Layer__profit-and-loss-detailed-charts .chart-field {
|
|
5555
5890
|
width: 100%;
|
|
@@ -5958,4 +6293,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
5958
6293
|
margin-top: -12px;
|
|
5959
6294
|
}
|
|
5960
6295
|
}
|
|
6296
|
+
.Layer__reports .Layer__panel__content {
|
|
6297
|
+
border-radius: var(--border-radius-sm);
|
|
6298
|
+
}
|
|
6299
|
+
@container (min-width: 1024px) {
|
|
6300
|
+
.Layer__reports .Layer__panel__content {
|
|
6301
|
+
border-bottom-right-radius: 0;
|
|
6302
|
+
border-top-right-radius: 0;
|
|
6303
|
+
}
|
|
6304
|
+
}
|
|
5961
6305
|
/*# sourceMappingURL=index.css.map */
|