@layerfi/components 0.1.107 → 0.1.108-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +3844 -2887
- package/dist/esm/index.mjs +3308 -2351
- package/dist/index.css +132 -144
- package/dist/index.d.ts +936 -191
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4742,14 +4742,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4742
4742
|
.Layer__UI__DateSegment:not([data-interactive]) {
|
|
4743
4743
|
background-color: transparent;
|
|
4744
4744
|
}
|
|
4745
|
-
.
|
|
4746
|
-
outline: none;
|
|
4747
|
-
}
|
|
4748
|
-
.Layer__dropdown-menu__popover[data-entering] {
|
|
4745
|
+
.Layer__UI__DropdownMenu__Popover[data-entering] {
|
|
4749
4746
|
animation: popover-slide 120ms;
|
|
4750
4747
|
}
|
|
4751
|
-
.
|
|
4752
|
-
|
|
4748
|
+
.Layer__UI__DropdownMenu__Popover[data-exiting] {
|
|
4749
|
+
animation: popover-slide reverse 120ms;
|
|
4753
4750
|
}
|
|
4754
4751
|
@keyframes popover-slide {
|
|
4755
4752
|
from {
|
|
@@ -4761,43 +4758,46 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4761
4758
|
opacity: 1;
|
|
4762
4759
|
}
|
|
4763
4760
|
}
|
|
4764
|
-
.
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4761
|
+
.Layer__UI__DropdownMenu__Dialog {
|
|
4762
|
+
display: grid;
|
|
4763
|
+
gap: var(--spacing-xs);
|
|
4764
|
+
overflow: hidden;
|
|
4765
|
+
padding: var(--spacing-sm);
|
|
4768
4766
|
border-radius: var(--border-radius-xs);
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
0px 4px 12px 0px rgba(17, 17, 17, 0.01),
|
|
4772
|
-
0px 2px 4px 0px rgba(25, 25, 25, 0.06);
|
|
4767
|
+
border: 1px solid var(--border-color);
|
|
4768
|
+
background: var(--color-base-0);
|
|
4773
4769
|
}
|
|
4774
|
-
.
|
|
4770
|
+
.Layer__UI__DropdownMenu__Dialog[data-variant=compact] {
|
|
4771
|
+
padding: 0;
|
|
4772
|
+
}
|
|
4773
|
+
.Layer__UI__DropdownMenu__MenuItem {
|
|
4775
4774
|
display: flex;
|
|
4776
|
-
align-items: center;
|
|
4777
4775
|
gap: var(--spacing-xs);
|
|
4776
|
+
align-items: center;
|
|
4778
4777
|
padding: var(--spacing-xs);
|
|
4779
4778
|
border-radius: var(--border-radius-3xs);
|
|
4780
|
-
|
|
4781
|
-
margin: var(--spacing-3xs) var(--spacing-xs);
|
|
4779
|
+
border: 1px solid var(--border-color);
|
|
4782
4780
|
cursor: pointer;
|
|
4783
4781
|
transition: background-color 0.1s ease-in-out;
|
|
4784
4782
|
}
|
|
4785
|
-
.
|
|
4786
|
-
.
|
|
4783
|
+
.Layer__UI__DropdownMenu__MenuItem:hover,
|
|
4784
|
+
.Layer__UI__DropdownMenu__MenuItem:focus-visible {
|
|
4787
4785
|
background-color: var(--color-base-50);
|
|
4788
4786
|
}
|
|
4789
|
-
.
|
|
4790
|
-
|
|
4787
|
+
.Layer__UI__DropdownMenu__MenuItem[data-variant=compact] {
|
|
4788
|
+
gap: 0;
|
|
4789
|
+
border-radius: 0;
|
|
4790
|
+
border: none;
|
|
4791
4791
|
}
|
|
4792
|
-
.
|
|
4793
|
-
|
|
4794
|
-
width: 100%;
|
|
4795
|
-
margin: var(--spacing-xs) 0;
|
|
4796
|
-
background-color: var(--color-base-200);
|
|
4792
|
+
.Layer__UI__DropdownMenu__MenuItem[data-variant=compact]:not(:last-child) {
|
|
4793
|
+
border-bottom: 1px solid var(--border-color);
|
|
4797
4794
|
}
|
|
4798
|
-
.
|
|
4799
|
-
|
|
4800
|
-
|
|
4795
|
+
.Layer__UI__DropdownMenu__Menu {
|
|
4796
|
+
display: grid;
|
|
4797
|
+
gap: var(--spacing-3xs);
|
|
4798
|
+
}
|
|
4799
|
+
.Layer__UI__DropdownMenu__Menu[data-variant=compact] {
|
|
4800
|
+
gap: 0;
|
|
4801
4801
|
}
|
|
4802
4802
|
.Layer__UI__FieldError {
|
|
4803
4803
|
padding-block-start: var(--spacing-3xs);
|
|
@@ -5029,6 +5029,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5029
5029
|
.Layer__Modal[data-size=lg] {
|
|
5030
5030
|
inline-size: min(42rem, 90%);
|
|
5031
5031
|
}
|
|
5032
|
+
.Layer__Modal[data-size=xl] {
|
|
5033
|
+
inline-size: min(70rem, 100%);
|
|
5034
|
+
}
|
|
5032
5035
|
.Layer__Modal[data-variant=drawer] {
|
|
5033
5036
|
block-size: 100%;
|
|
5034
5037
|
}
|
|
@@ -6933,6 +6936,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6933
6936
|
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Submit {
|
|
6934
6937
|
display: grid;
|
|
6935
6938
|
}
|
|
6939
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__Field__InvoiceNo,
|
|
6940
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__Field__CompletedAt,
|
|
6941
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__Field__PaymentMethod {
|
|
6942
|
+
grid-template-columns: 8rem auto;
|
|
6943
|
+
min-width: 16rem;
|
|
6944
|
+
}
|
|
6945
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__Field__Amount {
|
|
6946
|
+
grid-template-columns: auto 8rem;
|
|
6947
|
+
}
|
|
6948
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__FormError {
|
|
6949
|
+
height: 4rem;
|
|
6950
|
+
padding-inline: var(--spacing-md);
|
|
6951
|
+
border-bottom: 1px solid var(--border-color);
|
|
6952
|
+
}
|
|
6953
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__Field__InvoiceNo {
|
|
6954
|
+
display: grid;
|
|
6955
|
+
}
|
|
6956
|
+
.Layer__InvoiceRefundForm .Layer__InvoiceRefundForm__Section {
|
|
6957
|
+
padding: var(--spacing-md);
|
|
6958
|
+
border-bottom: 1px solid var(--border-color);
|
|
6959
|
+
}
|
|
6936
6960
|
.Layer__InvoiceSummaryStats__Container {
|
|
6937
6961
|
box-sizing: border-box;
|
|
6938
6962
|
width: clamp(48rem, 100%, 1406px);
|
|
@@ -7141,14 +7165,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7141
7165
|
place-items: center;
|
|
7142
7166
|
min-block-size: 20rem;
|
|
7143
7167
|
}
|
|
7144
|
-
.Layer__tasks
|
|
7168
|
+
.Layer__tasks {
|
|
7145
7169
|
display: flex;
|
|
7146
7170
|
flex-direction: column;
|
|
7147
|
-
overflow
|
|
7148
|
-
height:
|
|
7149
|
-
border-radius: 8px;
|
|
7150
|
-
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
7151
|
-
background-color: var(--color-base-0);
|
|
7171
|
+
overflow: hidden auto;
|
|
7172
|
+
max-height: calc(100vh - 2 * var(--spacing-lg));
|
|
7152
7173
|
}
|
|
7153
7174
|
.Layer__tasks-pending {
|
|
7154
7175
|
box-sizing: border-box;
|
|
@@ -7205,17 +7226,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7205
7226
|
container-type: inline-size;
|
|
7206
7227
|
}
|
|
7207
7228
|
.Layer__tasks__content {
|
|
7208
|
-
|
|
7229
|
+
min-height: 0;
|
|
7209
7230
|
opacity: 1;
|
|
7210
|
-
transition:
|
|
7211
|
-
}
|
|
7212
|
-
.Layer__tasks__content.Layer__tasks__content--collapsed {
|
|
7213
|
-
opacity: 0.3;
|
|
7214
|
-
max-height: 0;
|
|
7231
|
+
transition: opacity 0.2s ease-out;
|
|
7215
7232
|
}
|
|
7216
7233
|
.Layer__tasks-list {
|
|
7217
|
-
|
|
7218
|
-
background-color: var(--color-base-0);
|
|
7234
|
+
border-top: 1px solid var(--border-color);
|
|
7219
7235
|
}
|
|
7220
7236
|
.Layer__tasks-list .Layer__tasks-list-item-wrapper {
|
|
7221
7237
|
padding: var(--spacing-2xs);
|
|
@@ -7303,7 +7319,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7303
7319
|
}
|
|
7304
7320
|
.Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item__body--expanded {
|
|
7305
7321
|
height: auto;
|
|
7306
|
-
padding-bottom: var(--spacing-sm);
|
|
7307
7322
|
opacity: 1;
|
|
7308
7323
|
}
|
|
7309
7324
|
.Layer__tasks-list .Layer__tasks-empty-state {
|
|
@@ -7321,6 +7336,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7321
7336
|
gap: var(--spacing-xs);
|
|
7322
7337
|
align-items: center;
|
|
7323
7338
|
justify-content: flex-end;
|
|
7339
|
+
padding-bottom: var(--spacing-sm);
|
|
7324
7340
|
}
|
|
7325
7341
|
.Layer__tasks-icon {
|
|
7326
7342
|
display: flex;
|
|
@@ -7471,6 +7487,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7471
7487
|
grid-template-columns: repeat(3, 1fr);
|
|
7472
7488
|
gap: var(--spacing-xs);
|
|
7473
7489
|
padding: var(--spacing-md);
|
|
7490
|
+
padding-top: 10px;
|
|
7474
7491
|
container-type: inline-size;
|
|
7475
7492
|
}
|
|
7476
7493
|
@container (min-width: 680px) {
|
|
@@ -7489,24 +7506,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7489
7506
|
}
|
|
7490
7507
|
}
|
|
7491
7508
|
.Layer__tasks-month-selector__month {
|
|
7492
|
-
min-height: 32px;
|
|
7493
|
-
flex: 1;
|
|
7494
7509
|
display: flex;
|
|
7510
|
+
flex: 1;
|
|
7495
7511
|
align-items: center;
|
|
7496
7512
|
justify-content: space-between;
|
|
7497
|
-
|
|
7498
|
-
border-radius: var(--border-radius-xs);
|
|
7513
|
+
min-height: 32px;
|
|
7499
7514
|
padding: 0 var(--spacing-sm);
|
|
7500
|
-
|
|
7515
|
+
border-radius: var(--border-radius-xs);
|
|
7501
7516
|
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
7517
|
+
background: var(--color-base-0);
|
|
7518
|
+
cursor: pointer;
|
|
7502
7519
|
container-type: inline-size;
|
|
7503
7520
|
}
|
|
7504
7521
|
.Layer__tasks-month-selector__month[data-active] {
|
|
7505
7522
|
box-shadow: 0 0 0 1px var(--color-base-800), 0 0 0 3px var(--color-base-300);
|
|
7506
7523
|
}
|
|
7507
7524
|
.Layer__tasks-month-selector__month[data-disabled] {
|
|
7508
|
-
color: var(--color-base-500);
|
|
7509
7525
|
cursor: not-allowed;
|
|
7526
|
+
color: var(--color-base-500);
|
|
7510
7527
|
}
|
|
7511
7528
|
.Layer__tasks-month-selector__month:hover {
|
|
7512
7529
|
box-shadow: 0 0 0 1px var(--color-base-500), 0 0 0 3px var(--color-base-300);
|
|
@@ -7868,6 +7885,42 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7868
7885
|
grid-column: 5;
|
|
7869
7886
|
justify-content: flex-end;
|
|
7870
7887
|
}
|
|
7888
|
+
@media (max-width: 768px) {
|
|
7889
|
+
.Layer__ProfitAndLossDetailReport {
|
|
7890
|
+
--pnl-detail-table-cols: minmax(4rem, 25%) minmax(8rem, 55%) minmax(4rem, 20%);
|
|
7891
|
+
}
|
|
7892
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__row,
|
|
7893
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__header > tr {
|
|
7894
|
+
grid-template-columns: var(--pnl-detail-table-cols);
|
|
7895
|
+
}
|
|
7896
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Type,
|
|
7897
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Account,
|
|
7898
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance,
|
|
7899
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Type,
|
|
7900
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Account,
|
|
7901
|
+
.Layer__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Balance {
|
|
7902
|
+
display: none;
|
|
7903
|
+
}
|
|
7904
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-row {
|
|
7905
|
+
grid-template-columns: var(--pnl-detail-table-cols);
|
|
7906
|
+
}
|
|
7907
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-label {
|
|
7908
|
+
grid-column: 1/3;
|
|
7909
|
+
}
|
|
7910
|
+
.Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-amount {
|
|
7911
|
+
grid-column: 3;
|
|
7912
|
+
}
|
|
7913
|
+
}
|
|
7914
|
+
.Layer__ProfitAndLossReport__Modal--drawer .Layer__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__container {
|
|
7915
|
+
max-height: calc(var(--visual-viewport-height) - (4.75rem + 42px));
|
|
7916
|
+
}
|
|
7917
|
+
.Layer__ProfitAndLossReport__Modal--mobile .Layer__BaseDetailView {
|
|
7918
|
+
display: flex;
|
|
7919
|
+
flex-direction: column;
|
|
7920
|
+
}
|
|
7921
|
+
.Layer__ProfitAndLossReport__Modal--mobile .Layer__ProfitAndLossDetailReport {
|
|
7922
|
+
min-height: 0;
|
|
7923
|
+
}
|
|
7871
7924
|
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
7872
7925
|
position: absolute;
|
|
7873
7926
|
bottom: -20px;
|
|
@@ -7917,53 +7970,38 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7917
7970
|
background: var(--color-info-error-bg);
|
|
7918
7971
|
}
|
|
7919
7972
|
.Layer__tabs__container {
|
|
7920
|
-
scrollbar-width: thin;
|
|
7921
|
-
scrollbar-color: var(--color-base-200) var(--color-base-50);
|
|
7922
|
-
max-width: 100%;
|
|
7923
7973
|
overflow: auto hidden;
|
|
7924
|
-
|
|
7925
|
-
.Layer__tabs__container::-webkit-scrollbar {
|
|
7926
|
-
width: 2px;
|
|
7927
|
-
height: 2px;
|
|
7928
|
-
}
|
|
7929
|
-
.Layer__tabs__container::-webkit-scrollbar-track {
|
|
7930
|
-
background: var(--color-base-50);
|
|
7931
|
-
}
|
|
7932
|
-
.Layer__tabs__container::-webkit-scrollbar-thumb {
|
|
7933
|
-
background: var(--color-base-200);
|
|
7934
|
-
border-radius: 2px;
|
|
7935
|
-
}
|
|
7936
|
-
.Layer__tabs__container::-webkit-scrollbar-thumb:hover {
|
|
7937
|
-
background: var(--color-base-300);
|
|
7974
|
+
min-height: 50px;
|
|
7938
7975
|
}
|
|
7939
7976
|
.Layer__tabs {
|
|
7977
|
+
box-sizing: border-box;
|
|
7978
|
+
position: relative;
|
|
7940
7979
|
display: flex;
|
|
7941
|
-
|
|
7980
|
+
gap: var(--spacing-xs);
|
|
7942
7981
|
align-items: center;
|
|
7943
|
-
box-sizing: border-box;
|
|
7944
|
-
padding: 0 var(--spacing-sm);
|
|
7945
7982
|
height: 42px;
|
|
7983
|
+
width: fit-content;
|
|
7984
|
+
min-width: 100%;
|
|
7985
|
+
padding: 0 var(--spacing-sm);
|
|
7986
|
+
border-bottom: 2px solid var(--color-base-100);
|
|
7946
7987
|
cursor: pointer;
|
|
7947
|
-
|
|
7988
|
+
user-select: none;
|
|
7948
7989
|
isolation: isolate;
|
|
7949
|
-
gap: var(--spacing-xs);
|
|
7950
7990
|
-webkit-tap-highlight-color: transparent;
|
|
7951
7991
|
-webkit-touch-callout: none;
|
|
7952
|
-
user-select: none;
|
|
7953
|
-
border-bottom: 2px solid var(--color-base-100);
|
|
7954
7992
|
}
|
|
7955
7993
|
.Layer__tabs .Layer__tabs-option-content {
|
|
7956
7994
|
display: flex;
|
|
7957
|
-
align-items: center;
|
|
7958
7995
|
gap: var(--spacing-xs);
|
|
7996
|
+
align-items: center;
|
|
7959
7997
|
}
|
|
7960
7998
|
.Layer__tabs-option__icon {
|
|
7961
7999
|
line-height: 11px;
|
|
7962
8000
|
}
|
|
7963
8001
|
.Layer__tabs-option {
|
|
7964
8002
|
position: relative;
|
|
7965
|
-
cursor: pointer;
|
|
7966
8003
|
z-index: 2;
|
|
8004
|
+
cursor: pointer;
|
|
7967
8005
|
}
|
|
7968
8006
|
.Layer__tabs-option input {
|
|
7969
8007
|
position: absolute;
|
|
@@ -7972,34 +8010,23 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7972
8010
|
}
|
|
7973
8011
|
.Layer__tabs-option input + span {
|
|
7974
8012
|
box-sizing: border-box;
|
|
7975
|
-
|
|
7976
|
-
|
|
8013
|
+
position: relative;
|
|
8014
|
+
justify-content: center;
|
|
7977
8015
|
height: 36px;
|
|
7978
|
-
|
|
7979
|
-
|
|
8016
|
+
min-width: 40px;
|
|
8017
|
+
padding: var(--spacing-xs);
|
|
8018
|
+
border-bottom: 2px solid transparent;
|
|
8019
|
+
cursor: pointer;
|
|
7980
8020
|
font-size: var(--btn-font-size);
|
|
8021
|
+
font-family: var(--font-family);
|
|
7981
8022
|
font-weight: var(--font-weight-bold);
|
|
8023
|
+
color: var(--text-color-secondary);
|
|
7982
8024
|
font-variation-settings: "wght" 460;
|
|
7983
|
-
cursor: pointer;
|
|
7984
8025
|
transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
|
|
7985
|
-
justify-content: center;
|
|
7986
|
-
border-bottom: 2px solid transparent;
|
|
7987
|
-
position: relative;
|
|
7988
8026
|
}
|
|
7989
8027
|
.Layer__tabs-option input + span:hover {
|
|
7990
8028
|
color: var(--text-color-primary);
|
|
7991
8029
|
}
|
|
7992
|
-
.Layer__tabs-option input + span::after {
|
|
7993
|
-
content: "";
|
|
7994
|
-
position: absolute;
|
|
7995
|
-
bottom: -6px;
|
|
7996
|
-
left: 0;
|
|
7997
|
-
width: 100%;
|
|
7998
|
-
height: 2px;
|
|
7999
|
-
opacity: 0;
|
|
8000
|
-
background-color: var(--color-base-300);
|
|
8001
|
-
transition: opacity 120ms ease-out;
|
|
8002
|
-
}
|
|
8003
8030
|
.Layer__tabs-option input:checked + span {
|
|
8004
8031
|
color: var(--text-color-primary);
|
|
8005
8032
|
}
|
|
@@ -8007,29 +8034,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8007
8034
|
cursor: not-allowed;
|
|
8008
8035
|
color: var(--text-color-secondary);
|
|
8009
8036
|
}
|
|
8010
|
-
.Layer__tabs-option:hover input + span::after {
|
|
8011
|
-
opacity: 1;
|
|
8012
|
-
}
|
|
8013
8037
|
.Layer__tabs-option:hover input:disabled + span,
|
|
8014
8038
|
.Layer__tabs-option:hover input:checked + span {
|
|
8015
8039
|
background-color: transparent;
|
|
8016
8040
|
}
|
|
8017
|
-
.Layer__tabs-option:hover input:disabled + span::after,
|
|
8018
|
-
.Layer__tabs-option:hover input:checked + span::after {
|
|
8019
|
-
display: none;
|
|
8020
|
-
}
|
|
8021
8041
|
.Layer__tabs.Layer__tabs--small .Layer__tabs-option input + span {
|
|
8022
8042
|
height: 32px;
|
|
8023
8043
|
border-radius: 6px;
|
|
8024
8044
|
}
|
|
8025
8045
|
.Layer__tabs__thumb {
|
|
8046
|
+
box-sizing: border-box;
|
|
8026
8047
|
position: absolute;
|
|
8027
|
-
width: 100px;
|
|
8028
|
-
left: 0;
|
|
8029
|
-
bottom: -2px;
|
|
8030
8048
|
z-index: 3;
|
|
8031
|
-
|
|
8049
|
+
bottom: -2px;
|
|
8050
|
+
left: 0;
|
|
8032
8051
|
height: 2px;
|
|
8052
|
+
width: 100px;
|
|
8033
8053
|
border-radius: 2px;
|
|
8034
8054
|
background: var(--color-base-900);
|
|
8035
8055
|
}
|
|
@@ -9259,10 +9279,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9259
9279
|
background: transparent;
|
|
9260
9280
|
}
|
|
9261
9281
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
9282
|
+
overflow: hidden;
|
|
9262
9283
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9263
9284
|
font-size: var(--text-sm);
|
|
9264
9285
|
color: var(--color-base-500);
|
|
9265
|
-
overflow: hidden;
|
|
9266
9286
|
text-overflow: ellipsis;
|
|
9267
9287
|
white-space: nowrap;
|
|
9268
9288
|
}
|
|
@@ -9271,9 +9291,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9271
9291
|
width: 120px;
|
|
9272
9292
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9273
9293
|
}
|
|
9274
|
-
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
9275
|
-
display: none;
|
|
9276
|
-
}
|
|
9277
9294
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9278
9295
|
width: 100px;
|
|
9279
9296
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
@@ -9287,8 +9304,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9287
9304
|
text-align: right;
|
|
9288
9305
|
}
|
|
9289
9306
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
9290
|
-
|
|
9291
|
-
padding: 0;
|
|
9307
|
+
display: none;
|
|
9292
9308
|
}
|
|
9293
9309
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
|
|
9294
9310
|
flex: 1;
|
|
@@ -9297,9 +9313,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9297
9313
|
white-space: nowrap;
|
|
9298
9314
|
text-overflow: ellipsis;
|
|
9299
9315
|
}
|
|
9300
|
-
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
9301
|
-
display: none;
|
|
9302
|
-
}
|
|
9303
9316
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .Layer__tooltip-trigger {
|
|
9304
9317
|
display: flex;
|
|
9305
9318
|
}
|
|
@@ -9321,12 +9334,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9321
9334
|
.Layer__expanded-bank-transaction-row__match-row > div {
|
|
9322
9335
|
display: flex;
|
|
9323
9336
|
align-items: center;
|
|
9337
|
+
overflow: hidden;
|
|
9324
9338
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9325
9339
|
border-top: 1px solid var(--color-base-300);
|
|
9326
9340
|
border-bottom: 1px solid var(--color-base-300);
|
|
9327
9341
|
font-size: var(--text-md);
|
|
9328
9342
|
color: var(--color-base-500);
|
|
9329
|
-
overflow: hidden;
|
|
9330
9343
|
}
|
|
9331
9344
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
9332
9345
|
border-top-left-radius: var(--border-radius-2xs);
|
|
@@ -9436,8 +9449,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9436
9449
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__details {
|
|
9437
9450
|
display: flex;
|
|
9438
9451
|
justify-content: space-between;
|
|
9439
|
-
color: var(--color-base-500);
|
|
9440
9452
|
width: 100%;
|
|
9453
|
+
color: var(--color-base-500);
|
|
9441
9454
|
}
|
|
9442
9455
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
9443
9456
|
display: flex;
|
|
@@ -9467,7 +9480,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9467
9480
|
display: flex;
|
|
9468
9481
|
gap: var(--spacing-sm);
|
|
9469
9482
|
}
|
|
9470
|
-
@container (max-width:
|
|
9483
|
+
@container (max-width: 714px) {
|
|
9471
9484
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
9472
9485
|
display: none;
|
|
9473
9486
|
}
|
|
@@ -9476,16 +9489,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9476
9489
|
border-radius: var(--border-radius-2xs);
|
|
9477
9490
|
border: 1px solid var(--color-base-300);
|
|
9478
9491
|
}
|
|
9479
|
-
.Layer__expanded-bank-transaction-row__match-row > div,
|
|
9480
|
-
.Layer__expanded-bank-transaction-row__match-row > div:first-child,
|
|
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),
|
|
9483
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div,
|
|
9484
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:first-child,
|
|
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
|
-
border-width: 0;
|
|
9488
|
-
}
|
|
9489
9492
|
.Layer__expanded-bank-transaction-row__match-row:hover {
|
|
9490
9493
|
border: 1px solid var(--color-base-500);
|
|
9491
9494
|
background: var(--color-base-0);
|
|
@@ -9496,26 +9499,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9496
9499
|
background: var(--color-base-0);
|
|
9497
9500
|
color: var(--color-base-700);
|
|
9498
9501
|
}
|
|
9499
|
-
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
9500
|
-
border-width: 0;
|
|
9501
|
-
}
|
|
9502
|
-
.Layer__expanded-bank-transaction-row__match-row--selected .amount-next-to-date {
|
|
9503
|
-
color: var(--color-base-800);
|
|
9504
|
-
}
|
|
9505
9502
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover {
|
|
9506
9503
|
border: 1px solid --var-color-base-800;
|
|
9507
9504
|
}
|
|
9508
|
-
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
9509
|
-
border-width: 0;
|
|
9510
|
-
}
|
|
9511
9505
|
.Layer__expanded-bank-transaction-row__match-table__date {
|
|
9512
9506
|
display: flex;
|
|
9513
9507
|
justify-content: space-between;
|
|
9514
9508
|
width: 100% !important;
|
|
9515
9509
|
}
|
|
9516
|
-
.Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
9517
|
-
display: block !important;
|
|
9518
|
-
}
|
|
9519
9510
|
.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9520
9511
|
display: none !important;
|
|
9521
9512
|
}
|
|
@@ -9532,9 +9523,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9532
9523
|
.Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
9533
9524
|
display: block !important;
|
|
9534
9525
|
}
|
|
9535
|
-
.Layer__expanded-bank-transaction-row__match-table__status {
|
|
9536
|
-
display: none !important;
|
|
9537
|
-
}
|
|
9538
9526
|
}
|
|
9539
9527
|
@container (max-width: 600px) {
|
|
9540
9528
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|