@layerfi/components 0.1.107-alpha.1 → 0.1.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +6621 -5585
- package/dist/esm/index.mjs +6055 -5018
- package/dist/index.css +180 -252
- package/dist/index.d.ts +4508 -563
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -189,6 +189,8 @@
|
|
|
189
189
|
--button-bg-default: var(--color-base-1000);
|
|
190
190
|
--button-bg-disabled: var(--color-base-200);
|
|
191
191
|
--button-bg-active: var(--color-base-800);
|
|
192
|
+
--button-bg-ghost-hovered: var(--color-base-100);
|
|
193
|
+
--button-bg-ghost-pressed: var(--color-base-200);
|
|
192
194
|
--button-fg-default: var(--color-base-0);
|
|
193
195
|
--button-fg-disabled: var(--color-base-500);
|
|
194
196
|
--button-fg-ghost: var(--color-base-800);
|
|
@@ -2985,7 +2987,7 @@
|
|
|
2985
2987
|
box-sizing: border-box;
|
|
2986
2988
|
display: flex;
|
|
2987
2989
|
align-items: center;
|
|
2988
|
-
height: 2.25rem;
|
|
2990
|
+
min-height: 2.25rem;
|
|
2989
2991
|
padding: 0 var(--spacing-md);
|
|
2990
2992
|
}
|
|
2991
2993
|
.Layer__details-list-item__label {
|
|
@@ -4456,9 +4458,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4456
4458
|
.Layer__UI__Button[data-focus-visible] {
|
|
4457
4459
|
outline: 1px auto -webkit-focus-ring-color;
|
|
4458
4460
|
}
|
|
4459
|
-
.Layer__UI__Button[data-hovered]:not([data-pressed], [data-focus-visible]) {
|
|
4460
|
-
outline: 1px solid var(--outline-default);
|
|
4461
|
-
}
|
|
4462
4461
|
.Layer__UI__Button[data-disabled] {
|
|
4463
4462
|
cursor: not-allowed;
|
|
4464
4463
|
}
|
|
@@ -4472,9 +4471,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4472
4471
|
background-color: transparent;
|
|
4473
4472
|
color: var(--button-fg-disabled);
|
|
4474
4473
|
}
|
|
4474
|
+
.Layer__UI__Button[data-variant=ghost][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4475
|
+
background-color: var(--button-bg-ghost-hovered);
|
|
4476
|
+
}
|
|
4475
4477
|
.Layer__UI__Button[data-variant=ghost][data-pressed]:not([data-focus-visible]) {
|
|
4476
|
-
|
|
4477
|
-
outline: 2px solid var(--outline-default);
|
|
4478
|
+
background-color: var(--button-bg-ghost-pressed);
|
|
4478
4479
|
}
|
|
4479
4480
|
.Layer__UI__Button[data-variant=outlined] {
|
|
4480
4481
|
border: 1px solid var(--button-border-color-ghost);
|
|
@@ -4486,6 +4487,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4486
4487
|
background-color: transparent;
|
|
4487
4488
|
color: var(--button-fg-disabled);
|
|
4488
4489
|
}
|
|
4490
|
+
.Layer__UI__Button[data-variant=outlined][data-hovered]:not([data-pressed], [data-focus-visible]) {
|
|
4491
|
+
outline: 1px solid var(--outline-default);
|
|
4492
|
+
}
|
|
4489
4493
|
.Layer__UI__Button[data-variant=outlined][data-pressed]:not([data-focus-visible]) {
|
|
4490
4494
|
border-color: var(--button-border-color-ghost-active);
|
|
4491
4495
|
outline: 2px solid var(--outline-default);
|
|
@@ -4499,7 +4503,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4499
4503
|
background-color: var(--button-bg-disabled);
|
|
4500
4504
|
color: var(--button-fg-disabled);
|
|
4501
4505
|
}
|
|
4502
|
-
.Layer__UI__Button[data-variant=solid][data-hovered]:not([data-pressed]) {
|
|
4506
|
+
.Layer__UI__Button[data-variant=solid][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4507
|
+
outline: 1px solid var(--outline-default);
|
|
4503
4508
|
background-color: var(--button-bg-active);
|
|
4504
4509
|
}
|
|
4505
4510
|
.Layer__UI__Button[data-variant=solid][data-pressed]:not([data-focus-visible]) {
|
|
@@ -4507,18 +4512,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4507
4512
|
background-color: var(--button-bg-active);
|
|
4508
4513
|
}
|
|
4509
4514
|
.Layer__UI__Button[data-variant=text] {
|
|
4510
|
-
--size:
|
|
4515
|
+
--size: inherit;
|
|
4511
4516
|
padding-inline: 0;
|
|
4512
4517
|
border: none;
|
|
4513
4518
|
background-color: transparent;
|
|
4514
4519
|
}
|
|
4515
4520
|
.Layer__UI__Button[data-variant=text][data-hovered]:not([data-disabled], [data-pressed]) {
|
|
4516
|
-
outline: none;
|
|
4517
4521
|
text-decoration: underline;
|
|
4518
4522
|
}
|
|
4519
4523
|
.Layer__UI__Button[data-variant=text][data-pressed]:not([data-focus-visible]) {
|
|
4520
4524
|
text-decoration: none;
|
|
4521
4525
|
}
|
|
4526
|
+
.Layer__UI__Button[data-variant=branded] {
|
|
4527
|
+
background-color: var(--bg-brand-accent, var(--color-accent));
|
|
4528
|
+
color: var(--fg-brand-accent, var(--color-primary));
|
|
4529
|
+
}
|
|
4522
4530
|
.Layer__ButtonTransparentContent {
|
|
4523
4531
|
opacity: 0;
|
|
4524
4532
|
grid-row: 1/-1;
|
|
@@ -4993,18 +5001,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4993
5001
|
z-index: 100;
|
|
4994
5002
|
inset: 0;
|
|
4995
5003
|
display: grid;
|
|
5004
|
+
height: var(--visual-viewport-height);
|
|
4996
5005
|
background: rgba(0, 0, 0, 0.5);
|
|
4997
5006
|
place-items: center;
|
|
4998
5007
|
}
|
|
4999
|
-
.Layer__ModalOverlay[data-variant=drawer]
|
|
5000
|
-
|
|
5001
|
-
}
|
|
5002
|
-
.Layer__ModalOverlay[data-variant=drawer][data-entering] {
|
|
5008
|
+
.Layer__ModalOverlay[data-variant=drawer][data-entering],
|
|
5009
|
+
.Layer__ModalOverlay[data-variant=mobile-drawer][data-entering] {
|
|
5003
5010
|
animation: drawer-darken 300ms;
|
|
5004
5011
|
}
|
|
5005
|
-
.Layer__ModalOverlay[data-variant=drawer][data-exiting]
|
|
5012
|
+
.Layer__ModalOverlay[data-variant=drawer][data-exiting],
|
|
5013
|
+
.Layer__ModalOverlay[data-variant=mobile-drawer][data-exiting] {
|
|
5006
5014
|
animation: drawer-darken 300ms reverse ease-in;
|
|
5007
5015
|
}
|
|
5016
|
+
.Layer__ModalOverlay[data-variant=drawer] {
|
|
5017
|
+
place-items: end;
|
|
5018
|
+
}
|
|
5019
|
+
.Layer__ModalOverlay[data-variant=mobile-drawer] {
|
|
5020
|
+
place-items: end center;
|
|
5021
|
+
}
|
|
5008
5022
|
.Layer__Modal {
|
|
5009
5023
|
block-size: min(42rem, 90%);
|
|
5010
5024
|
inline-size: min(36rem, 90%);
|
|
@@ -5024,6 +5038,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5024
5038
|
.Layer__Modal[data-variant=drawer][data-exiting] {
|
|
5025
5039
|
animation: drawer-slide 300ms reverse ease-in;
|
|
5026
5040
|
}
|
|
5041
|
+
.Layer__Modal[data-variant=mobile-drawer] {
|
|
5042
|
+
position: fixed;
|
|
5043
|
+
bottom: 0;
|
|
5044
|
+
overflow: hidden;
|
|
5045
|
+
block-size: 80%;
|
|
5046
|
+
inline-size: 100%;
|
|
5047
|
+
border-radius: var(--border-radius-2xs) var(--border-radius-2xs) 0 0;
|
|
5048
|
+
}
|
|
5049
|
+
.Layer__Modal[data-variant=mobile-drawer][data-entering] {
|
|
5050
|
+
animation: mobile-drawer-slide 200ms;
|
|
5051
|
+
}
|
|
5052
|
+
.Layer__Modal[data-variant=mobile-drawer][data-exiting] {
|
|
5053
|
+
animation: mobile-drawer-slide 200ms reverse ease-in;
|
|
5054
|
+
}
|
|
5027
5055
|
.Layer__Dialog {
|
|
5028
5056
|
display: flex;
|
|
5029
5057
|
flex-direction: column;
|
|
@@ -5040,6 +5068,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5040
5068
|
padding: 0;
|
|
5041
5069
|
border-radius: 0;
|
|
5042
5070
|
}
|
|
5071
|
+
.Layer__Dialog[data-variant=mobile-drawer] {
|
|
5072
|
+
padding: 0;
|
|
5073
|
+
border-radius: var(--border-radius-2xs) var(--border-radius-2xs) 0 0;
|
|
5074
|
+
}
|
|
5043
5075
|
@keyframes drawer-slide {
|
|
5044
5076
|
from {
|
|
5045
5077
|
transform: translateX(100%);
|
|
@@ -5056,6 +5088,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5056
5088
|
background: rgba(0, 0, 0, 0.5);
|
|
5057
5089
|
}
|
|
5058
5090
|
}
|
|
5091
|
+
@keyframes mobile-drawer-slide {
|
|
5092
|
+
from {
|
|
5093
|
+
transform: translateY(100%);
|
|
5094
|
+
}
|
|
5095
|
+
to {
|
|
5096
|
+
transform: translateY(0);
|
|
5097
|
+
}
|
|
5098
|
+
}
|
|
5059
5099
|
.Layer__ModalCloseButton--position-absolute {
|
|
5060
5100
|
position: absolute;
|
|
5061
5101
|
align-self: end;
|
|
@@ -5465,7 +5505,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5465
5505
|
font-size: var(--text-md);
|
|
5466
5506
|
font-weight: var(--font-weight-normal);
|
|
5467
5507
|
color: var(--color-base-800);
|
|
5468
|
-
height: inherit;
|
|
5469
5508
|
}
|
|
5470
5509
|
.Layer__UI__Table-Cell:first-child {
|
|
5471
5510
|
padding-left: var(--spacing-md);
|
|
@@ -6930,44 +6969,40 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6930
6969
|
height: 4.75rem;
|
|
6931
6970
|
border-bottom: 1px solid var(--border-color);
|
|
6932
6971
|
}
|
|
6972
|
+
.Layer__PaginatedDataTable__Pagination {
|
|
6973
|
+
border-top: 1px solid var(--border-color);
|
|
6974
|
+
}
|
|
6933
6975
|
.Layer__UI__VirtualizedTable__container {
|
|
6934
6976
|
position: relative;
|
|
6935
6977
|
overflow: auto;
|
|
6936
|
-
padding-right: var(--spacing-sm);
|
|
6937
6978
|
}
|
|
6938
6979
|
.Layer__UI__VirtualizedTable__state-container {
|
|
6939
6980
|
display: flex;
|
|
6940
6981
|
align-items: center;
|
|
6941
6982
|
justify-content: center;
|
|
6942
6983
|
}
|
|
6943
|
-
.
|
|
6944
|
-
display:
|
|
6945
|
-
width: 100%;
|
|
6984
|
+
.Layer__UI__VirtualizedTable {
|
|
6985
|
+
display: grid;
|
|
6946
6986
|
}
|
|
6947
|
-
.
|
|
6948
|
-
|
|
6987
|
+
.Layer__UI__VirtualizedTable__header {
|
|
6988
|
+
position: sticky;
|
|
6989
|
+
z-index: 1;
|
|
6990
|
+
top: 0;
|
|
6991
|
+
display: grid;
|
|
6992
|
+
}
|
|
6993
|
+
.Layer__UI__VirtualizedTable__cell,
|
|
6994
|
+
.Layer__UI__VirtualizedTable__header-cell {
|
|
6949
6995
|
display: flex;
|
|
6950
|
-
flex:
|
|
6951
|
-
|
|
6996
|
+
flex-wrap: wrap;
|
|
6997
|
+
align-content: center;
|
|
6952
6998
|
}
|
|
6953
|
-
.
|
|
6954
|
-
|
|
6955
|
-
border: none;
|
|
6956
|
-
position: absolute;
|
|
6999
|
+
.Layer__UI__VirtualizedTable__header-cell {
|
|
7000
|
+
background-color: var(--color-base-0);
|
|
6957
7001
|
}
|
|
6958
7002
|
.Layer__UI__VirtualizedTable__row {
|
|
6959
7003
|
position: absolute;
|
|
6960
|
-
display:
|
|
7004
|
+
display: grid;
|
|
6961
7005
|
width: 100%;
|
|
6962
|
-
align-items: center;
|
|
6963
|
-
padding-right: var(--spacing-sm);
|
|
6964
|
-
box-sizing: border-box;
|
|
6965
|
-
}
|
|
6966
|
-
.Layer__UI__VirtualizedTable__cell {
|
|
6967
|
-
box-sizing: border-box;
|
|
6968
|
-
flex: 0 0 auto;
|
|
6969
|
-
align-content: center;
|
|
6970
|
-
min-width: 0;
|
|
6971
7006
|
}
|
|
6972
7007
|
.Layer__caobfb {
|
|
6973
7008
|
padding-inline: var(--spacing-md);
|
|
@@ -7797,94 +7832,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7797
7832
|
.Layer__separator[data-mbs="5xl"] {
|
|
7798
7833
|
margin-block-start: var(--spacing-5xl);
|
|
7799
7834
|
}
|
|
7800
|
-
|
|
7801
|
-
--pnl-detail-
|
|
7802
|
-
--pnl-detail-type-col-width: 12%;
|
|
7803
|
-
--pnl-detail-account-col-width: 18%;
|
|
7804
|
-
--pnl-detail-description-col-width: 28%;
|
|
7805
|
-
--pnl-detail-amount-col-width: 15%;
|
|
7806
|
-
--pnl-detail-balance-col-width: 15%;
|
|
7835
|
+
.Layer__ProfitAndLossDetailReport {
|
|
7836
|
+
--pnl-detail-table-cols: minmax(7rem, 12%) minmax(7rem, 12%) minmax(10rem, 18%) minmax(12rem, 38%) minmax(7.5rem, 10%) minmax(7.5rem, 10%);
|
|
7807
7837
|
}
|
|
7808
|
-
.Layer__UI__Table__ProfitAndLossDetailReport {
|
|
7838
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport {
|
|
7809
7839
|
table-layout: fixed;
|
|
7810
|
-
width: 100%;
|
|
7811
|
-
}
|
|
7812
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Date {
|
|
7813
|
-
width: var(--pnl-detail-date-col-width);
|
|
7814
|
-
min-width: 7rem;
|
|
7815
|
-
color: var(--color-base-600);
|
|
7816
|
-
}
|
|
7817
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Type {
|
|
7818
|
-
width: var(--pnl-detail-type-col-width);
|
|
7819
7840
|
}
|
|
7820
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .
|
|
7821
|
-
|
|
7822
|
-
|
|
7841
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__row,
|
|
7842
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__header > tr {
|
|
7843
|
+
display: grid;
|
|
7844
|
+
grid-template-columns: var(--pnl-detail-table-cols);
|
|
7823
7845
|
}
|
|
7824
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--
|
|
7825
|
-
|
|
7826
|
-
|
|
7846
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Date,
|
|
7847
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Date {
|
|
7848
|
+
color: var(--color-base-600);
|
|
7827
7849
|
}
|
|
7828
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Amount
|
|
7829
|
-
|
|
7830
|
-
min-width: 7.5rem;
|
|
7831
|
-
text-align: right;
|
|
7850
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Amount,
|
|
7851
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Amount {
|
|
7832
7852
|
justify-content: flex-end;
|
|
7833
7853
|
}
|
|
7834
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance
|
|
7835
|
-
|
|
7836
|
-
min-width: 7.5rem;
|
|
7837
|
-
text-align: right;
|
|
7854
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance,
|
|
7855
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Balance {
|
|
7838
7856
|
justify-content: flex-end;
|
|
7839
7857
|
}
|
|
7840
|
-
.
|
|
7841
|
-
width: var(--pnl-detail-date-col-width);
|
|
7842
|
-
min-width: 7rem;
|
|
7843
|
-
}
|
|
7844
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Type {
|
|
7845
|
-
width: var(--pnl-detail-type-col-width);
|
|
7846
|
-
}
|
|
7847
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Type button {
|
|
7848
|
-
font-size: inherit;
|
|
7849
|
-
font-family: inherit;
|
|
7850
|
-
font-weight: inherit;
|
|
7851
|
-
font-feature-settings: inherit;
|
|
7852
|
-
}
|
|
7853
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Account {
|
|
7854
|
-
width: var(--pnl-detail-account-col-width);
|
|
7855
|
-
min-width: 10rem;
|
|
7856
|
-
color: var(--color-base-600);
|
|
7857
|
-
}
|
|
7858
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Description {
|
|
7859
|
-
width: var(--pnl-detail-description-col-width);
|
|
7860
|
-
min-width: 12rem;
|
|
7861
|
-
}
|
|
7862
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Amount {
|
|
7863
|
-
width: var(--pnl-detail-amount-col-width);
|
|
7864
|
-
min-width: 7.5rem;
|
|
7865
|
-
text-align: right;
|
|
7866
|
-
}
|
|
7867
|
-
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Balance {
|
|
7868
|
-
width: var(--pnl-detail-balance-col-width);
|
|
7869
|
-
min-width: 7.5rem;
|
|
7870
|
-
text-align: right;
|
|
7871
|
-
}
|
|
7872
|
-
.Layer__profit-and-loss-detail-report__total-row {
|
|
7858
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-row {
|
|
7873
7859
|
display: grid;
|
|
7874
|
-
grid-template-columns: var(--pnl-detail-
|
|
7875
|
-
padding
|
|
7876
|
-
padding-bottom: var(--spacing-sm);
|
|
7877
|
-
padding-right: var(--spacing-md);
|
|
7860
|
+
grid-template-columns: var(--pnl-detail-table-cols);
|
|
7861
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
7878
7862
|
border-top: 1px solid var(--color-base-300);
|
|
7879
7863
|
}
|
|
7880
|
-
.Layer__profit-and-loss-detail-report__total-label {
|
|
7864
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-label {
|
|
7881
7865
|
grid-column: 1;
|
|
7882
|
-
padding-left: var(--spacing-md);
|
|
7883
7866
|
}
|
|
7884
|
-
.Layer__profit-and-loss-detail-report__total-amount {
|
|
7867
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-amount {
|
|
7885
7868
|
grid-column: 5;
|
|
7886
|
-
justify-content:
|
|
7887
|
-
padding-right: var(--spacing-sm);
|
|
7869
|
+
justify-content: flex-end;
|
|
7888
7870
|
}
|
|
7889
7871
|
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
7890
7872
|
position: absolute;
|
|
@@ -9258,20 +9240,31 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9258
9240
|
color: var(--color-base-300);
|
|
9259
9241
|
}
|
|
9260
9242
|
.Layer__expanded-bank-transaction-row__match-table {
|
|
9261
|
-
display:
|
|
9262
|
-
|
|
9263
|
-
gap:
|
|
9243
|
+
display: grid;
|
|
9244
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px max-content;
|
|
9245
|
+
gap: 0;
|
|
9264
9246
|
margin-bottom: var(--spacing-sm);
|
|
9265
9247
|
}
|
|
9248
|
+
.Layer__expanded-bank-transaction-row__match-table:has(.Layer__expanded-bank-transaction-row__match-table__status) {
|
|
9249
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px max-content min-content;
|
|
9250
|
+
}
|
|
9251
|
+
.Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)) {
|
|
9252
|
+
grid-template-columns: 120px 1fr 100px;
|
|
9253
|
+
}
|
|
9254
|
+
.Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)):has(.Layer__expanded-bank-transaction-row__match-table__status) {
|
|
9255
|
+
grid-template-columns: 120px minmax(0, 1fr) 100px min-content;
|
|
9256
|
+
}
|
|
9266
9257
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
9267
|
-
display:
|
|
9268
|
-
width: 100%;
|
|
9258
|
+
display: contents;
|
|
9269
9259
|
background: transparent;
|
|
9270
9260
|
}
|
|
9271
9261
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
9272
9262
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9273
9263
|
font-size: var(--text-sm);
|
|
9274
9264
|
color: var(--color-base-500);
|
|
9265
|
+
overflow: hidden;
|
|
9266
|
+
text-overflow: ellipsis;
|
|
9267
|
+
white-space: nowrap;
|
|
9275
9268
|
}
|
|
9276
9269
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date {
|
|
9277
9270
|
box-sizing: border-box;
|
|
@@ -9282,11 +9275,15 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9282
9275
|
display: none;
|
|
9283
9276
|
}
|
|
9284
9277
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9278
|
+
width: 100px;
|
|
9285
9279
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9286
|
-
|
|
9280
|
+
}
|
|
9281
|
+
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__link {
|
|
9282
|
+
overflow: visible;
|
|
9283
|
+
white-space: nowrap;
|
|
9287
9284
|
}
|
|
9288
9285
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status {
|
|
9289
|
-
width:
|
|
9286
|
+
width: 100px;
|
|
9290
9287
|
text-align: right;
|
|
9291
9288
|
}
|
|
9292
9289
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
@@ -9313,7 +9310,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9313
9310
|
max-width: 100%;
|
|
9314
9311
|
}
|
|
9315
9312
|
.Layer__expanded-bank-transaction-row__match-row {
|
|
9316
|
-
display:
|
|
9313
|
+
display: contents;
|
|
9317
9314
|
align-items: stretch;
|
|
9318
9315
|
overflow: hidden;
|
|
9319
9316
|
cursor: pointer;
|
|
@@ -9329,19 +9326,21 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9329
9326
|
border-bottom: 1px solid var(--color-base-300);
|
|
9330
9327
|
font-size: var(--text-md);
|
|
9331
9328
|
color: var(--color-base-500);
|
|
9329
|
+
overflow: hidden;
|
|
9332
9330
|
}
|
|
9333
9331
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
9334
9332
|
border-top-left-radius: var(--border-radius-2xs);
|
|
9335
9333
|
border-bottom-left-radius: var(--border-radius-2xs);
|
|
9336
9334
|
border-left: 1px solid var(--color-base-300);
|
|
9337
9335
|
}
|
|
9338
|
-
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3)
|
|
9336
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3):last-of-type,
|
|
9337
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(4) {
|
|
9339
9338
|
border-top-right-radius: var(--border-radius-2xs);
|
|
9340
9339
|
border-bottom-right-radius: var(--border-radius-2xs);
|
|
9341
9340
|
border-right: 1px solid var(--color-base-300);
|
|
9342
9341
|
}
|
|
9343
|
-
.Layer__expanded-bank-transaction-row__match-row > div:
|
|
9344
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:
|
|
9342
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(5),
|
|
9343
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(5) {
|
|
9345
9344
|
border-color: transparent;
|
|
9346
9345
|
background-color: transparent;
|
|
9347
9346
|
}
|
|
@@ -9359,7 +9358,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9359
9358
|
border-bottom-left-radius: var(--border-radius-2xs);
|
|
9360
9359
|
border-left: 1px solid var(--color-base-300);
|
|
9361
9360
|
}
|
|
9362
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3)
|
|
9361
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3):last-of-type,
|
|
9362
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(4) {
|
|
9363
9363
|
border-top-right-radius: var(--border-radius-2xs);
|
|
9364
9364
|
border-bottom-right-radius: var(--border-radius-2xs);
|
|
9365
9365
|
border-right: 1px solid var(--color-base-300);
|
|
@@ -9376,13 +9376,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9376
9376
|
.Layer__expanded-bank-transaction-row__match-row--selected > div:first-child {
|
|
9377
9377
|
border-left: 1px solid var(--color-base-800);
|
|
9378
9378
|
}
|
|
9379
|
-
.Layer__expanded-bank-transaction-row__match-row--selected > div:nth-child(3)
|
|
9379
|
+
.Layer__expanded-bank-transaction-row__match-row--selected > div:nth-child(3):last-of-type,
|
|
9380
|
+
.Layer__expanded-bank-transaction-row__match-row--selected > div:nth-child(4) {
|
|
9380
9381
|
border-right: 1px solid var(--color-base-800);
|
|
9381
9382
|
}
|
|
9382
|
-
.Layer__expanded-bank-transaction-row__match-row--selected > div:last-child {
|
|
9383
|
-
border-color: transparent;
|
|
9384
|
-
background-color: transparent;
|
|
9385
|
-
}
|
|
9386
9383
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
9387
9384
|
border-top: 1px solid var(--color-base-500);
|
|
9388
9385
|
border-bottom: 1px solid var(--color-base-500);
|
|
@@ -9392,13 +9389,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9392
9389
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:first-child {
|
|
9393
9390
|
border-left: 1px solid var(--color-base-500);
|
|
9394
9391
|
}
|
|
9395
|
-
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:nth-child(3)
|
|
9392
|
+
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:nth-child(3):last-of-type,
|
|
9393
|
+
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:nth-child(4) {
|
|
9396
9394
|
border-right: 1px solid var(--color-base-500);
|
|
9397
9395
|
}
|
|
9398
|
-
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div:last-child {
|
|
9399
|
-
border-color: transparent;
|
|
9400
|
-
background-color: transparent;
|
|
9401
|
-
}
|
|
9402
9396
|
.Layer__bank-transaction-mobile-list-item__description {
|
|
9403
9397
|
padding: var(--spacing-md) 0;
|
|
9404
9398
|
border-top: 1px solid var(--border-color);
|
|
@@ -9422,7 +9416,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9422
9416
|
gap: var(--spacing-sm);
|
|
9423
9417
|
align-items: center;
|
|
9424
9418
|
width: 100%;
|
|
9425
|
-
padding: var(--spacing-xs)
|
|
9419
|
+
padding: var(--spacing-xs);
|
|
9426
9420
|
border-bottom: 1px solid var(--color-base-50);
|
|
9427
9421
|
}
|
|
9428
9422
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
@@ -9441,8 +9435,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9441
9435
|
}
|
|
9442
9436
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__details {
|
|
9443
9437
|
display: flex;
|
|
9444
|
-
justify-content:
|
|
9438
|
+
justify-content: space-between;
|
|
9445
9439
|
color: var(--color-base-500);
|
|
9440
|
+
width: 100%;
|
|
9446
9441
|
}
|
|
9447
9442
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
9448
9443
|
display: flex;
|
|
@@ -9450,6 +9445,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9450
9445
|
width: 24px;
|
|
9451
9446
|
min-width: 24px;
|
|
9452
9447
|
}
|
|
9448
|
+
.Layer__bank-transaction-mobile-list-item__match-item.Layer__bank-transaction-mobile-list-item__match-item--selected {
|
|
9449
|
+
background: var(--color-base-100);
|
|
9450
|
+
}
|
|
9453
9451
|
.Layer__bank-transaction-mobile-list-item__match-item.Layer__bank-transaction-mobile-list-item__match-item--selected .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
9454
9452
|
color: var(--color-base-1000);
|
|
9455
9453
|
}
|
|
@@ -9480,10 +9478,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9480
9478
|
}
|
|
9481
9479
|
.Layer__expanded-bank-transaction-row__match-row > div,
|
|
9482
9480
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child,
|
|
9483
|
-
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3),
|
|
9481
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3):last-of-type,
|
|
9482
|
+
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(4),
|
|
9484
9483
|
.Layer__expanded-bank-transaction-row__match-row:hover > div,
|
|
9485
9484
|
.Layer__expanded-bank-transaction-row__match-row:hover > div:first-child,
|
|
9486
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3)
|
|
9485
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3):last-of-type,
|
|
9486
|
+
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(4) {
|
|
9487
9487
|
border-width: 0;
|
|
9488
9488
|
}
|
|
9489
9489
|
.Layer__expanded-bank-transaction-row__match-row:hover {
|
|
@@ -9736,11 +9736,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9736
9736
|
}
|
|
9737
9737
|
}
|
|
9738
9738
|
@container (max-width: 480px) {
|
|
9739
|
-
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input:disabled {
|
|
9740
|
-
box-shadow: none;
|
|
9741
|
-
background-color: transparent;
|
|
9742
|
-
border-color: transparent;
|
|
9743
|
-
}
|
|
9744
9739
|
.Layer__expanded-bank-transaction-row__total-and-btns > .Layer__input-tooltip > .Layer__input-left-text {
|
|
9745
9740
|
border-right-color: transparent;
|
|
9746
9741
|
}
|
|
@@ -9753,27 +9748,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9753
9748
|
padding-bottom: 0;
|
|
9754
9749
|
}
|
|
9755
9750
|
.Layer__bank-transactions__mobile-list {
|
|
9756
|
-
padding: 0;
|
|
9757
9751
|
display: flex;
|
|
9758
9752
|
flex-direction: column;
|
|
9759
|
-
list-style: none;
|
|
9760
9753
|
overflow: hidden;
|
|
9754
|
+
padding: 0;
|
|
9761
9755
|
margin: auto;
|
|
9756
|
+
list-style: none;
|
|
9762
9757
|
}
|
|
9763
9758
|
.Layer__bank-transaction-mobile-list-item {
|
|
9759
|
+
box-sizing: border-box;
|
|
9764
9760
|
padding: 0;
|
|
9761
|
+
border-radius: var(--border-radius-sm);
|
|
9762
|
+
box-shadow: 0 2px 2px 0 var(--color-base-200), 0 4px 4px 0 var(--color-base-100);
|
|
9765
9763
|
margin: var(--spacing-2xs) var(--spacing-md);
|
|
9766
9764
|
background: var(--color-base-0);
|
|
9767
|
-
|
|
9768
|
-
|
|
9765
|
+
cursor: pointer;
|
|
9766
|
+
user-select: none;
|
|
9769
9767
|
opacity: 0;
|
|
9770
9768
|
transform: scale(0.96);
|
|
9771
9769
|
transition: all 180ms ease-in-out;
|
|
9772
|
-
cursor: pointer;
|
|
9773
9770
|
-webkit-tap-highlight-color: transparent;
|
|
9774
9771
|
-webkit-touch-callout: none;
|
|
9775
|
-
user-select: none;
|
|
9776
|
-
box-sizing: border-box;
|
|
9777
9772
|
}
|
|
9778
9773
|
.Layer__bank-transaction-mobile-list-item.show {
|
|
9779
9774
|
opacity: 1;
|
|
@@ -9795,8 +9790,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9795
9790
|
height: 0 !important;
|
|
9796
9791
|
}
|
|
9797
9792
|
.Layer__bank-transaction-mobile-list-item .Layer__bank-transaction-mobile-list-item__expanded-row {
|
|
9798
|
-
height: 0;
|
|
9799
9793
|
overflow: hidden;
|
|
9794
|
+
height: 0;
|
|
9800
9795
|
transition: all 180ms ease-out;
|
|
9801
9796
|
}
|
|
9802
9797
|
.Layer__bank-transaction-mobile-list-item .Layer__text--error {
|
|
@@ -9805,30 +9800,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9805
9800
|
text-align: center;
|
|
9806
9801
|
}
|
|
9807
9802
|
.Layer__bank-transaction-mobile-list-item__heading {
|
|
9803
|
+
box-sizing: border-box;
|
|
9808
9804
|
display: block;
|
|
9809
9805
|
width: 100%;
|
|
9810
|
-
box-sizing: border-box;
|
|
9811
9806
|
}
|
|
9812
9807
|
.Layer__bank-transaction-mobile-list-item__heading__content {
|
|
9808
|
+
box-sizing: border-box;
|
|
9813
9809
|
display: flex;
|
|
9814
|
-
|
|
9810
|
+
gap: var(--spacing-xs);
|
|
9815
9811
|
align-items: flex-start;
|
|
9816
9812
|
justify-content: space-between;
|
|
9817
|
-
|
|
9813
|
+
width: 100%;
|
|
9818
9814
|
padding: var(--spacing-sm);
|
|
9819
|
-
box-sizing: border-box;
|
|
9820
9815
|
}
|
|
9821
9816
|
.Layer__bank-transaction-mobile-list-item__heading__main {
|
|
9822
9817
|
display: flex;
|
|
9823
9818
|
flex-direction: column;
|
|
9824
|
-
max-width: 100%;
|
|
9825
9819
|
gap: var(--spacing-4xs);
|
|
9820
|
+
max-width: 100%;
|
|
9826
9821
|
}
|
|
9827
9822
|
.Layer__bank-transaction-mobile-list-item__heading__account-name {
|
|
9828
|
-
color: var(--color-base-500);
|
|
9829
9823
|
display: flex;
|
|
9830
|
-
align-items: center;
|
|
9831
9824
|
gap: var(--spacing-3xs);
|
|
9825
|
+
align-items: center;
|
|
9826
|
+
color: var(--color-base-500);
|
|
9832
9827
|
}
|
|
9833
9828
|
.Layer__bank-transaction-mobile-list-item__heading__account-name svg {
|
|
9834
9829
|
padding-top: 1px;
|
|
@@ -9840,30 +9835,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9840
9835
|
.Layer__bank-transaction-mobile-list-item__heading__amount {
|
|
9841
9836
|
display: flex;
|
|
9842
9837
|
flex-direction: column;
|
|
9843
|
-
align-items: flex-end;
|
|
9844
9838
|
gap: var(--spacing-3xs);
|
|
9839
|
+
align-items: flex-end;
|
|
9845
9840
|
font-size: 14px;
|
|
9846
9841
|
}
|
|
9847
9842
|
.Layer__bank-transaction-mobile-list-item__heading__date {
|
|
9848
|
-
color: var(--color-base-500);
|
|
9849
9843
|
font-size: 12px;
|
|
9844
|
+
color: var(--color-base-500);
|
|
9850
9845
|
}
|
|
9851
9846
|
.Layer__bank-transaction-mobile-list-item__amount-credit {
|
|
9852
9847
|
color: var(--color-info-success);
|
|
9853
9848
|
}
|
|
9854
9849
|
.Layer__bank-transaction-mobile-list-item__value {
|
|
9850
|
+
box-sizing: border-box;
|
|
9855
9851
|
display: flex;
|
|
9852
|
+
gap: var(--spacing-3xs);
|
|
9856
9853
|
align-items: center;
|
|
9857
9854
|
justify-content: flex-end;
|
|
9858
|
-
|
|
9855
|
+
overflow: hidden;
|
|
9856
|
+
height: 0;
|
|
9859
9857
|
padding: 0 var(--spacing-sm);
|
|
9860
|
-
background-color: var(--base-transparent-2);
|
|
9861
9858
|
border-bottom-left-radius: var(--border-radius-sm);
|
|
9862
9859
|
border-bottom-right-radius: var(--border-radius-sm);
|
|
9860
|
+
background-color: var(--base-transparent-2);
|
|
9863
9861
|
transition: all 180ms ease-in-out;
|
|
9864
|
-
height: 0;
|
|
9865
|
-
overflow: hidden;
|
|
9866
|
-
box-sizing: border-box;
|
|
9867
9862
|
opacity: 0;
|
|
9868
9863
|
}
|
|
9869
9864
|
.Layer__bank-transaction-mobile-list-item__value.open {
|
|
@@ -9873,25 +9868,25 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9873
9868
|
}
|
|
9874
9869
|
.Layer__bank-transaction-mobile-list-item__value > .Layer__text {
|
|
9875
9870
|
display: flex;
|
|
9876
|
-
align-items: center;
|
|
9877
9871
|
gap: 12px;
|
|
9872
|
+
align-items: center;
|
|
9878
9873
|
}
|
|
9879
9874
|
.Layer__bank-transaction-mobile-list-item__toggle-row {
|
|
9880
9875
|
display: flex;
|
|
9876
|
+
gap: var(--spacing-3xs);
|
|
9881
9877
|
align-items: center;
|
|
9882
9878
|
justify-content: space-between;
|
|
9883
|
-
gap: var(--spacing-3xs);
|
|
9884
9879
|
padding: var(--spacing-4xs) var(--spacing-sm);
|
|
9885
9880
|
}
|
|
9886
9881
|
.Layer__bank-transaction-mobile-list-item__form-container {
|
|
9887
|
-
padding: var(--spacing-sm);
|
|
9888
9882
|
display: flex;
|
|
9889
9883
|
flex-direction: column;
|
|
9890
9884
|
align-items: center;
|
|
9885
|
+
padding: var(--spacing-sm);
|
|
9891
9886
|
}
|
|
9892
9887
|
.Layer__bank-transaction-mobile-list-item__personal-form {
|
|
9893
|
-
padding: var(--spacing-md) 0 var(--spacing-xs) 0;
|
|
9894
9888
|
width: 100%;
|
|
9889
|
+
padding: var(--spacing-md) 0 var(--spacing-xs) 0;
|
|
9895
9890
|
}
|
|
9896
9891
|
.Layer__bank-transaction-mobile-list-item__business-form {
|
|
9897
9892
|
width: 100%;
|
|
@@ -9907,8 +9902,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9907
9902
|
align-items: center;
|
|
9908
9903
|
justify-content: space-between;
|
|
9909
9904
|
width: 100%;
|
|
9910
|
-
color: var(--color-base-500);
|
|
9911
9905
|
padding-top: var(--spacing-xs);
|
|
9906
|
+
color: var(--color-base-500);
|
|
9912
9907
|
}
|
|
9913
9908
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell--split-entry__right-col {
|
|
9914
9909
|
width: 100%;
|
|
@@ -9917,12 +9912,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9917
9912
|
padding: var(--spacing-sm) 0;
|
|
9918
9913
|
}
|
|
9919
9914
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__splits-inputs .Layer__bank-transactions__table-cell--split-entry {
|
|
9915
|
+
box-sizing: border-box;
|
|
9920
9916
|
display: flex;
|
|
9921
9917
|
flex: 1;
|
|
9922
|
-
width: 100%;
|
|
9923
|
-
box-sizing: border-box;
|
|
9924
|
-
align-items: center;
|
|
9925
9918
|
gap: var(--spacing-xs);
|
|
9919
|
+
align-items: center;
|
|
9920
|
+
width: 100%;
|
|
9926
9921
|
padding-bottom: var(--spacing-xs);
|
|
9927
9922
|
}
|
|
9928
9923
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__split-amount-input {
|
|
@@ -9932,12 +9927,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9932
9927
|
width: 156px;
|
|
9933
9928
|
}
|
|
9934
9929
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell--split-entry__merge-btn {
|
|
9935
|
-
width: 36px;
|
|
9936
9930
|
height: 36px;
|
|
9931
|
+
width: 36px;
|
|
9937
9932
|
}
|
|
9938
9933
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__select__control {
|
|
9939
|
-
min-width: 150px;
|
|
9940
9934
|
width: 100%;
|
|
9935
|
+
min-width: 150px;
|
|
9941
9936
|
font-size: 12px;
|
|
9942
9937
|
}
|
|
9943
9938
|
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__add-new-split {
|
|
@@ -9952,14 +9947,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9952
9947
|
.Layer__bank-transaction-mobile-list-item__switch-form-btns > .Layer__text-btn {
|
|
9953
9948
|
color: var(--color-base-1000);
|
|
9954
9949
|
}
|
|
9955
|
-
.Layer__bank-transaction-mobile-list-item__categories_list-title {
|
|
9956
|
-
padding-top: var(--spacing-2xs);
|
|
9957
|
-
padding-bottom: var(--spacing-lg);
|
|
9958
|
-
padding-left: var(--spacing-md);
|
|
9959
|
-
font-size: 18px;
|
|
9960
|
-
}
|
|
9961
9950
|
.Layer__bank-transaction-mobile-list-item__categories_list-container {
|
|
9962
|
-
|
|
9951
|
+
height: 100%;
|
|
9952
|
+
padding-inline: var(--spacing-sm);
|
|
9953
|
+
padding-top: var(--spacing-sm);
|
|
9954
|
+
}
|
|
9955
|
+
.Layer__bank-transaction-mobile-list-item__categories_list {
|
|
9956
|
+
overflow-y: auto;
|
|
9963
9957
|
}
|
|
9964
9958
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
9965
9959
|
position: relative;
|
|
@@ -10615,70 +10609,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10615
10609
|
.Layer__data-state--inline .Layer__data-state__icon {
|
|
10616
10610
|
margin-bottom: 0;
|
|
10617
10611
|
}
|
|
10618
|
-
.Layer__drawer-background {
|
|
10619
|
-
position: fixed;
|
|
10620
|
-
display: none;
|
|
10621
|
-
top: 0;
|
|
10622
|
-
left: 0;
|
|
10623
|
-
right: 0;
|
|
10624
|
-
bottom: 0;
|
|
10625
|
-
opacity: 0;
|
|
10626
|
-
z-index: 1000;
|
|
10627
|
-
transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
10628
|
-
}
|
|
10629
|
-
.Layer__drawer-background.open.closing {
|
|
10630
|
-
opacity: 0;
|
|
10631
|
-
}
|
|
10632
|
-
.Layer__drawer-background.open {
|
|
10633
|
-
display: block;
|
|
10634
|
-
opacity: 0.4;
|
|
10635
|
-
background: #242424;
|
|
10636
|
-
}
|
|
10637
|
-
.Layer__drawer {
|
|
10638
|
-
position: fixed;
|
|
10639
|
-
display: flex;
|
|
10640
|
-
bottom: -100%;
|
|
10641
|
-
left: 0;
|
|
10642
|
-
right: 0;
|
|
10643
|
-
z-index: 9999;
|
|
10644
|
-
background: var(--color-base-0);
|
|
10645
|
-
width: 100%;
|
|
10646
|
-
max-height: 80%;
|
|
10647
|
-
overflow-y: auto;
|
|
10648
|
-
padding: 0 14px;
|
|
10649
|
-
border-radius: var(--spacing-md) var(--spacing-md) 0px 0px;
|
|
10650
|
-
transition: bottom 0.2s ease-in-out;
|
|
10651
|
-
border: 28px solid var(--color-base-0);
|
|
10652
|
-
border-left: 14px solid var(--color-base-0);
|
|
10653
|
-
border-right: 14px solid var(--color-base-0);
|
|
10654
|
-
box-sizing: border-box;
|
|
10655
|
-
}
|
|
10656
|
-
.Layer__drawer::after {
|
|
10657
|
-
position: absolute;
|
|
10658
|
-
content: "";
|
|
10659
|
-
width: 37px;
|
|
10660
|
-
height: 5px;
|
|
10661
|
-
background-color: var(--color-base-50);
|
|
10662
|
-
left: 50%;
|
|
10663
|
-
transform: translateX(-50%);
|
|
10664
|
-
top: 0px;
|
|
10665
|
-
border-radius: 80px;
|
|
10666
|
-
}
|
|
10667
|
-
.Layer__drawer.open:not(.closing) {
|
|
10668
|
-
bottom: 0;
|
|
10669
|
-
}
|
|
10670
|
-
@media (min-width: 414px) {
|
|
10671
|
-
.Layer__drawer {
|
|
10672
|
-
max-height: calc(82% - 32px);
|
|
10673
|
-
max-width: 414px;
|
|
10674
|
-
margin-left: auto;
|
|
10675
|
-
margin-right: auto;
|
|
10676
|
-
border-radius: var(--spacing-md);
|
|
10677
|
-
}
|
|
10678
|
-
.Layer__drawer.open:not(.closing) {
|
|
10679
|
-
bottom: 32px;
|
|
10680
|
-
}
|
|
10681
|
-
}
|
|
10682
10612
|
.Layer__chevron {
|
|
10683
10613
|
stroke: var(--color-base-900);
|
|
10684
10614
|
transition: transform 0.33s;
|
|
@@ -11147,7 +11077,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11147
11077
|
margin-left: 0;
|
|
11148
11078
|
}
|
|
11149
11079
|
.Layer__pagination-container {
|
|
11150
|
-
|
|
11080
|
+
justify-content: end;
|
|
11151
11081
|
padding: var(--spacing-md);
|
|
11152
11082
|
}
|
|
11153
11083
|
@container (min-width: 1400px) {
|
|
@@ -11155,22 +11085,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11155
11085
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
11156
11086
|
}
|
|
11157
11087
|
}
|
|
11088
|
+
.Layer__pagination-nav {
|
|
11089
|
+
display: contents;
|
|
11090
|
+
}
|
|
11158
11091
|
.Layer__pagination {
|
|
11159
11092
|
display: inline-flex;
|
|
11160
11093
|
gap: var(--spacing-4xs);
|
|
11161
11094
|
align-items: center;
|
|
11095
|
+
align-self: flex-end;
|
|
11162
11096
|
height: 2.25rem;
|
|
11097
|
+
padding-inline: var(--spacing-4xs);
|
|
11163
11098
|
border-radius: var(--border-radius-2xs);
|
|
11164
11099
|
border: 1px solid var(--color-base-300);
|
|
11165
11100
|
background: var(--color-base-50);
|
|
11166
11101
|
list-style-type: none;
|
|
11167
|
-
padding-inline-start: var(--spacing-4xs);
|
|
11168
|
-
padding-inline-end: var(--spacing-4xs);
|
|
11169
|
-
}
|
|
11170
|
-
.Layer__pagination .Layer__pagination__selected-item .Layer__UI__Button {
|
|
11171
|
-
box-shadow: inset 0 0 0 1px var(--base-transparent-6);
|
|
11172
|
-
background-color: var(--bg-brand-accent, var(--color-accent));
|
|
11173
|
-
color: var(--fg-brand-accent, var(--color-primary));
|
|
11174
11102
|
}
|
|
11175
11103
|
.Layer__panel {
|
|
11176
11104
|
display: flex;
|