@layerfi/components 0.1.108-alpha → 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 +2664 -2477
- package/dist/esm/index.mjs +2350 -2163
- package/dist/index.css +81 -114
- package/dist/index.d.ts +249 -29
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -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
|
}
|
|
@@ -7162,14 +7165,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7162
7165
|
place-items: center;
|
|
7163
7166
|
min-block-size: 20rem;
|
|
7164
7167
|
}
|
|
7165
|
-
.Layer__tasks
|
|
7168
|
+
.Layer__tasks {
|
|
7166
7169
|
display: flex;
|
|
7167
7170
|
flex-direction: column;
|
|
7168
|
-
overflow
|
|
7169
|
-
height:
|
|
7170
|
-
border-radius: 8px;
|
|
7171
|
-
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
7172
|
-
background-color: var(--color-base-0);
|
|
7171
|
+
overflow: hidden auto;
|
|
7172
|
+
max-height: calc(100vh - 2 * var(--spacing-lg));
|
|
7173
7173
|
}
|
|
7174
7174
|
.Layer__tasks-pending {
|
|
7175
7175
|
box-sizing: border-box;
|
|
@@ -7226,17 +7226,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7226
7226
|
container-type: inline-size;
|
|
7227
7227
|
}
|
|
7228
7228
|
.Layer__tasks__content {
|
|
7229
|
-
|
|
7229
|
+
min-height: 0;
|
|
7230
7230
|
opacity: 1;
|
|
7231
|
-
transition:
|
|
7232
|
-
}
|
|
7233
|
-
.Layer__tasks__content.Layer__tasks__content--collapsed {
|
|
7234
|
-
opacity: 0.3;
|
|
7235
|
-
max-height: 0;
|
|
7231
|
+
transition: opacity 0.2s ease-out;
|
|
7236
7232
|
}
|
|
7237
7233
|
.Layer__tasks-list {
|
|
7238
|
-
|
|
7239
|
-
background-color: var(--color-base-0);
|
|
7234
|
+
border-top: 1px solid var(--border-color);
|
|
7240
7235
|
}
|
|
7241
7236
|
.Layer__tasks-list .Layer__tasks-list-item-wrapper {
|
|
7242
7237
|
padding: var(--spacing-2xs);
|
|
@@ -7324,7 +7319,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7324
7319
|
}
|
|
7325
7320
|
.Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item__body--expanded {
|
|
7326
7321
|
height: auto;
|
|
7327
|
-
padding-bottom: var(--spacing-sm);
|
|
7328
7322
|
opacity: 1;
|
|
7329
7323
|
}
|
|
7330
7324
|
.Layer__tasks-list .Layer__tasks-empty-state {
|
|
@@ -7342,6 +7336,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7342
7336
|
gap: var(--spacing-xs);
|
|
7343
7337
|
align-items: center;
|
|
7344
7338
|
justify-content: flex-end;
|
|
7339
|
+
padding-bottom: var(--spacing-sm);
|
|
7345
7340
|
}
|
|
7346
7341
|
.Layer__tasks-icon {
|
|
7347
7342
|
display: flex;
|
|
@@ -7492,6 +7487,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7492
7487
|
grid-template-columns: repeat(3, 1fr);
|
|
7493
7488
|
gap: var(--spacing-xs);
|
|
7494
7489
|
padding: var(--spacing-md);
|
|
7490
|
+
padding-top: 10px;
|
|
7495
7491
|
container-type: inline-size;
|
|
7496
7492
|
}
|
|
7497
7493
|
@container (min-width: 680px) {
|
|
@@ -7510,24 +7506,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7510
7506
|
}
|
|
7511
7507
|
}
|
|
7512
7508
|
.Layer__tasks-month-selector__month {
|
|
7513
|
-
min-height: 32px;
|
|
7514
|
-
flex: 1;
|
|
7515
7509
|
display: flex;
|
|
7510
|
+
flex: 1;
|
|
7516
7511
|
align-items: center;
|
|
7517
7512
|
justify-content: space-between;
|
|
7518
|
-
|
|
7519
|
-
border-radius: var(--border-radius-xs);
|
|
7513
|
+
min-height: 32px;
|
|
7520
7514
|
padding: 0 var(--spacing-sm);
|
|
7521
|
-
|
|
7515
|
+
border-radius: var(--border-radius-xs);
|
|
7522
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;
|
|
7523
7519
|
container-type: inline-size;
|
|
7524
7520
|
}
|
|
7525
7521
|
.Layer__tasks-month-selector__month[data-active] {
|
|
7526
7522
|
box-shadow: 0 0 0 1px var(--color-base-800), 0 0 0 3px var(--color-base-300);
|
|
7527
7523
|
}
|
|
7528
7524
|
.Layer__tasks-month-selector__month[data-disabled] {
|
|
7529
|
-
color: var(--color-base-500);
|
|
7530
7525
|
cursor: not-allowed;
|
|
7526
|
+
color: var(--color-base-500);
|
|
7531
7527
|
}
|
|
7532
7528
|
.Layer__tasks-month-selector__month:hover {
|
|
7533
7529
|
box-shadow: 0 0 0 1px var(--color-base-500), 0 0 0 3px var(--color-base-300);
|
|
@@ -7889,6 +7885,42 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7889
7885
|
grid-column: 5;
|
|
7890
7886
|
justify-content: flex-end;
|
|
7891
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
|
+
}
|
|
7892
7924
|
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
7893
7925
|
position: absolute;
|
|
7894
7926
|
bottom: -20px;
|
|
@@ -7938,53 +7970,38 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7938
7970
|
background: var(--color-info-error-bg);
|
|
7939
7971
|
}
|
|
7940
7972
|
.Layer__tabs__container {
|
|
7941
|
-
scrollbar-width: thin;
|
|
7942
|
-
scrollbar-color: var(--color-base-200) var(--color-base-50);
|
|
7943
|
-
max-width: 100%;
|
|
7944
7973
|
overflow: auto hidden;
|
|
7945
|
-
|
|
7946
|
-
.Layer__tabs__container::-webkit-scrollbar {
|
|
7947
|
-
width: 2px;
|
|
7948
|
-
height: 2px;
|
|
7949
|
-
}
|
|
7950
|
-
.Layer__tabs__container::-webkit-scrollbar-track {
|
|
7951
|
-
background: var(--color-base-50);
|
|
7952
|
-
}
|
|
7953
|
-
.Layer__tabs__container::-webkit-scrollbar-thumb {
|
|
7954
|
-
background: var(--color-base-200);
|
|
7955
|
-
border-radius: 2px;
|
|
7956
|
-
}
|
|
7957
|
-
.Layer__tabs__container::-webkit-scrollbar-thumb:hover {
|
|
7958
|
-
background: var(--color-base-300);
|
|
7974
|
+
min-height: 50px;
|
|
7959
7975
|
}
|
|
7960
7976
|
.Layer__tabs {
|
|
7977
|
+
box-sizing: border-box;
|
|
7978
|
+
position: relative;
|
|
7961
7979
|
display: flex;
|
|
7962
|
-
|
|
7980
|
+
gap: var(--spacing-xs);
|
|
7963
7981
|
align-items: center;
|
|
7964
|
-
box-sizing: border-box;
|
|
7965
|
-
padding: 0 var(--spacing-sm);
|
|
7966
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);
|
|
7967
7987
|
cursor: pointer;
|
|
7968
|
-
|
|
7988
|
+
user-select: none;
|
|
7969
7989
|
isolation: isolate;
|
|
7970
|
-
gap: var(--spacing-xs);
|
|
7971
7990
|
-webkit-tap-highlight-color: transparent;
|
|
7972
7991
|
-webkit-touch-callout: none;
|
|
7973
|
-
user-select: none;
|
|
7974
|
-
border-bottom: 2px solid var(--color-base-100);
|
|
7975
7992
|
}
|
|
7976
7993
|
.Layer__tabs .Layer__tabs-option-content {
|
|
7977
7994
|
display: flex;
|
|
7978
|
-
align-items: center;
|
|
7979
7995
|
gap: var(--spacing-xs);
|
|
7996
|
+
align-items: center;
|
|
7980
7997
|
}
|
|
7981
7998
|
.Layer__tabs-option__icon {
|
|
7982
7999
|
line-height: 11px;
|
|
7983
8000
|
}
|
|
7984
8001
|
.Layer__tabs-option {
|
|
7985
8002
|
position: relative;
|
|
7986
|
-
cursor: pointer;
|
|
7987
8003
|
z-index: 2;
|
|
8004
|
+
cursor: pointer;
|
|
7988
8005
|
}
|
|
7989
8006
|
.Layer__tabs-option input {
|
|
7990
8007
|
position: absolute;
|
|
@@ -7993,34 +8010,23 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7993
8010
|
}
|
|
7994
8011
|
.Layer__tabs-option input + span {
|
|
7995
8012
|
box-sizing: border-box;
|
|
7996
|
-
|
|
7997
|
-
|
|
8013
|
+
position: relative;
|
|
8014
|
+
justify-content: center;
|
|
7998
8015
|
height: 36px;
|
|
7999
|
-
|
|
8000
|
-
|
|
8016
|
+
min-width: 40px;
|
|
8017
|
+
padding: var(--spacing-xs);
|
|
8018
|
+
border-bottom: 2px solid transparent;
|
|
8019
|
+
cursor: pointer;
|
|
8001
8020
|
font-size: var(--btn-font-size);
|
|
8021
|
+
font-family: var(--font-family);
|
|
8002
8022
|
font-weight: var(--font-weight-bold);
|
|
8023
|
+
color: var(--text-color-secondary);
|
|
8003
8024
|
font-variation-settings: "wght" 460;
|
|
8004
|
-
cursor: pointer;
|
|
8005
8025
|
transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
|
|
8006
|
-
justify-content: center;
|
|
8007
|
-
border-bottom: 2px solid transparent;
|
|
8008
|
-
position: relative;
|
|
8009
8026
|
}
|
|
8010
8027
|
.Layer__tabs-option input + span:hover {
|
|
8011
8028
|
color: var(--text-color-primary);
|
|
8012
8029
|
}
|
|
8013
|
-
.Layer__tabs-option input + span::after {
|
|
8014
|
-
content: "";
|
|
8015
|
-
position: absolute;
|
|
8016
|
-
bottom: -6px;
|
|
8017
|
-
left: 0;
|
|
8018
|
-
width: 100%;
|
|
8019
|
-
height: 2px;
|
|
8020
|
-
opacity: 0;
|
|
8021
|
-
background-color: var(--color-base-300);
|
|
8022
|
-
transition: opacity 120ms ease-out;
|
|
8023
|
-
}
|
|
8024
8030
|
.Layer__tabs-option input:checked + span {
|
|
8025
8031
|
color: var(--text-color-primary);
|
|
8026
8032
|
}
|
|
@@ -8028,29 +8034,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8028
8034
|
cursor: not-allowed;
|
|
8029
8035
|
color: var(--text-color-secondary);
|
|
8030
8036
|
}
|
|
8031
|
-
.Layer__tabs-option:hover input + span::after {
|
|
8032
|
-
opacity: 1;
|
|
8033
|
-
}
|
|
8034
8037
|
.Layer__tabs-option:hover input:disabled + span,
|
|
8035
8038
|
.Layer__tabs-option:hover input:checked + span {
|
|
8036
8039
|
background-color: transparent;
|
|
8037
8040
|
}
|
|
8038
|
-
.Layer__tabs-option:hover input:disabled + span::after,
|
|
8039
|
-
.Layer__tabs-option:hover input:checked + span::after {
|
|
8040
|
-
display: none;
|
|
8041
|
-
}
|
|
8042
8041
|
.Layer__tabs.Layer__tabs--small .Layer__tabs-option input + span {
|
|
8043
8042
|
height: 32px;
|
|
8044
8043
|
border-radius: 6px;
|
|
8045
8044
|
}
|
|
8046
8045
|
.Layer__tabs__thumb {
|
|
8046
|
+
box-sizing: border-box;
|
|
8047
8047
|
position: absolute;
|
|
8048
|
-
width: 100px;
|
|
8049
|
-
left: 0;
|
|
8050
|
-
bottom: -2px;
|
|
8051
8048
|
z-index: 3;
|
|
8052
|
-
|
|
8049
|
+
bottom: -2px;
|
|
8050
|
+
left: 0;
|
|
8053
8051
|
height: 2px;
|
|
8052
|
+
width: 100px;
|
|
8054
8053
|
border-radius: 2px;
|
|
8055
8054
|
background: var(--color-base-900);
|
|
8056
8055
|
}
|
|
@@ -9280,10 +9279,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9280
9279
|
background: transparent;
|
|
9281
9280
|
}
|
|
9282
9281
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
|
|
9282
|
+
overflow: hidden;
|
|
9283
9283
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9284
9284
|
font-size: var(--text-sm);
|
|
9285
9285
|
color: var(--color-base-500);
|
|
9286
|
-
overflow: hidden;
|
|
9287
9286
|
text-overflow: ellipsis;
|
|
9288
9287
|
white-space: nowrap;
|
|
9289
9288
|
}
|
|
@@ -9292,9 +9291,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9292
9291
|
width: 120px;
|
|
9293
9292
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9294
9293
|
}
|
|
9295
|
-
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
9296
|
-
display: none;
|
|
9297
|
-
}
|
|
9298
9294
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9299
9295
|
width: 100px;
|
|
9300
9296
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
@@ -9308,8 +9304,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9308
9304
|
text-align: right;
|
|
9309
9305
|
}
|
|
9310
9306
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
|
|
9311
|
-
|
|
9312
|
-
padding: 0;
|
|
9307
|
+
display: none;
|
|
9313
9308
|
}
|
|
9314
9309
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
|
|
9315
9310
|
flex: 1;
|
|
@@ -9318,9 +9313,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9318
9313
|
white-space: nowrap;
|
|
9319
9314
|
text-overflow: ellipsis;
|
|
9320
9315
|
}
|
|
9321
|
-
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
9322
|
-
display: none;
|
|
9323
|
-
}
|
|
9324
9316
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .Layer__tooltip-trigger {
|
|
9325
9317
|
display: flex;
|
|
9326
9318
|
}
|
|
@@ -9342,12 +9334,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9342
9334
|
.Layer__expanded-bank-transaction-row__match-row > div {
|
|
9343
9335
|
display: flex;
|
|
9344
9336
|
align-items: center;
|
|
9337
|
+
overflow: hidden;
|
|
9345
9338
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
9346
9339
|
border-top: 1px solid var(--color-base-300);
|
|
9347
9340
|
border-bottom: 1px solid var(--color-base-300);
|
|
9348
9341
|
font-size: var(--text-md);
|
|
9349
9342
|
color: var(--color-base-500);
|
|
9350
|
-
overflow: hidden;
|
|
9351
9343
|
}
|
|
9352
9344
|
.Layer__expanded-bank-transaction-row__match-row > div:first-child {
|
|
9353
9345
|
border-top-left-radius: var(--border-radius-2xs);
|
|
@@ -9457,8 +9449,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9457
9449
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__details {
|
|
9458
9450
|
display: flex;
|
|
9459
9451
|
justify-content: space-between;
|
|
9460
|
-
color: var(--color-base-500);
|
|
9461
9452
|
width: 100%;
|
|
9453
|
+
color: var(--color-base-500);
|
|
9462
9454
|
}
|
|
9463
9455
|
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
9464
9456
|
display: flex;
|
|
@@ -9488,7 +9480,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9488
9480
|
display: flex;
|
|
9489
9481
|
gap: var(--spacing-sm);
|
|
9490
9482
|
}
|
|
9491
|
-
@container (max-width:
|
|
9483
|
+
@container (max-width: 714px) {
|
|
9492
9484
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
9493
9485
|
display: none;
|
|
9494
9486
|
}
|
|
@@ -9497,16 +9489,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9497
9489
|
border-radius: var(--border-radius-2xs);
|
|
9498
9490
|
border: 1px solid var(--color-base-300);
|
|
9499
9491
|
}
|
|
9500
|
-
.Layer__expanded-bank-transaction-row__match-row > div,
|
|
9501
|
-
.Layer__expanded-bank-transaction-row__match-row > div:first-child,
|
|
9502
|
-
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(3):last-of-type,
|
|
9503
|
-
.Layer__expanded-bank-transaction-row__match-row > div:nth-child(4),
|
|
9504
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div,
|
|
9505
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:first-child,
|
|
9506
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3):last-of-type,
|
|
9507
|
-
.Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(4) {
|
|
9508
|
-
border-width: 0;
|
|
9509
|
-
}
|
|
9510
9492
|
.Layer__expanded-bank-transaction-row__match-row:hover {
|
|
9511
9493
|
border: 1px solid var(--color-base-500);
|
|
9512
9494
|
background: var(--color-base-0);
|
|
@@ -9517,26 +9499,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9517
9499
|
background: var(--color-base-0);
|
|
9518
9500
|
color: var(--color-base-700);
|
|
9519
9501
|
}
|
|
9520
|
-
.Layer__expanded-bank-transaction-row__match-row--selected > div {
|
|
9521
|
-
border-width: 0;
|
|
9522
|
-
}
|
|
9523
|
-
.Layer__expanded-bank-transaction-row__match-row--selected .amount-next-to-date {
|
|
9524
|
-
color: var(--color-base-800);
|
|
9525
|
-
}
|
|
9526
9502
|
.Layer__expanded-bank-transaction-row__match-row--selected:hover {
|
|
9527
9503
|
border: 1px solid --var-color-base-800;
|
|
9528
9504
|
}
|
|
9529
|
-
.Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
|
|
9530
|
-
border-width: 0;
|
|
9531
|
-
}
|
|
9532
9505
|
.Layer__expanded-bank-transaction-row__match-table__date {
|
|
9533
9506
|
display: flex;
|
|
9534
9507
|
justify-content: space-between;
|
|
9535
9508
|
width: 100% !important;
|
|
9536
9509
|
}
|
|
9537
|
-
.Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
|
|
9538
|
-
display: block !important;
|
|
9539
|
-
}
|
|
9540
9510
|
.Layer__expanded-bank-transaction-row__match-table__amount {
|
|
9541
9511
|
display: none !important;
|
|
9542
9512
|
}
|
|
@@ -9553,9 +9523,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9553
9523
|
.Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
|
|
9554
9524
|
display: block !important;
|
|
9555
9525
|
}
|
|
9556
|
-
.Layer__expanded-bank-transaction-row__match-table__status {
|
|
9557
|
-
display: none !important;
|
|
9558
|
-
}
|
|
9559
9526
|
}
|
|
9560
9527
|
@container (max-width: 600px) {
|
|
9561
9528
|
.Layer__expanded-bank-transaction-row__splits-inputs {
|