@layerfi/components 0.1.106 → 0.1.107-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 +8970 -5983
- package/dist/esm/index.mjs +8845 -5845
- package/dist/index.css +400 -79
- package/dist/index.d.ts +2562 -1797
- package/package.json +3 -2
package/dist/index.css
CHANGED
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
--text-sm: 12px;
|
|
83
83
|
--text-md: 14px;
|
|
84
84
|
--text-lg: 16px;
|
|
85
|
+
--text-xl: 20px;
|
|
85
86
|
--text-heading: 24px;
|
|
86
87
|
--text-heading-secondary: 20px;
|
|
87
88
|
--text-heading-page: var(--text-heading);
|
|
@@ -325,6 +326,7 @@
|
|
|
325
326
|
gap: var(--spacing-3xs);
|
|
326
327
|
align-items: center;
|
|
327
328
|
height: var(--size);
|
|
329
|
+
min-inline-size: fit-content;
|
|
328
330
|
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
329
331
|
border-radius: var(--border-radius-5xl);
|
|
330
332
|
background-color: var(--badge-bg-color);
|
|
@@ -1024,13 +1026,6 @@
|
|
|
1024
1026
|
align-items: center;
|
|
1025
1027
|
gap: var(--spacing-md);
|
|
1026
1028
|
}
|
|
1027
|
-
.Layer__datetime__date {
|
|
1028
|
-
color: var(--color-base-800);
|
|
1029
|
-
min-width: 75px;
|
|
1030
|
-
}
|
|
1031
|
-
.Layer__datetime__time {
|
|
1032
|
-
color: var(--color-base-600);
|
|
1033
|
-
}
|
|
1034
1029
|
.Layer__DatePickerModeSelector__container {
|
|
1035
1030
|
display: flex;
|
|
1036
1031
|
justify-content: flex-end;
|
|
@@ -1108,7 +1103,7 @@
|
|
|
1108
1103
|
#Layer__datepicker__portal .react-datepicker__input-container button {
|
|
1109
1104
|
box-sizing: border-box;
|
|
1110
1105
|
position: relative;
|
|
1111
|
-
width:
|
|
1106
|
+
width: 24ch;
|
|
1112
1107
|
padding: 8px;
|
|
1113
1108
|
border-radius: var(--input-border-radius);
|
|
1114
1109
|
border: none;
|
|
@@ -4467,9 +4462,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4467
4462
|
.Layer__UI__Button[data-disabled] {
|
|
4468
4463
|
cursor: not-allowed;
|
|
4469
4464
|
}
|
|
4470
|
-
.Layer__UI__Button[data-pending] {
|
|
4471
|
-
cursor: progress;
|
|
4472
|
-
}
|
|
4473
4465
|
.Layer__UI__Button[data-variant=ghost] {
|
|
4474
4466
|
border: none;
|
|
4475
4467
|
background-color: transparent;
|
|
@@ -4516,7 +4508,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4516
4508
|
}
|
|
4517
4509
|
.Layer__UI__Button[data-variant=text] {
|
|
4518
4510
|
--size: 1.75rem;
|
|
4519
|
-
padding-inline:
|
|
4511
|
+
padding-inline: 0;
|
|
4520
4512
|
border: none;
|
|
4521
4513
|
background-color: transparent;
|
|
4522
4514
|
}
|
|
@@ -4568,6 +4560,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4568
4560
|
.Layer__Checkbox svg {
|
|
4569
4561
|
transition: all 100ms ease-out;
|
|
4570
4562
|
}
|
|
4563
|
+
.Layer__Checkbox[data-readonly] [slot=checkbox] {
|
|
4564
|
+
background-color: var(--bg-muted);
|
|
4565
|
+
}
|
|
4571
4566
|
.Layer__Checkbox[data-hovered] [slot=checkbox],
|
|
4572
4567
|
.Layer__Checkbox[data-pressed] [slot=checkbox] {
|
|
4573
4568
|
border-color: var(--outline-active);
|
|
@@ -4593,6 +4588,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4593
4588
|
.Layer__Checkbox[data-selected][data-variant=error] [slot=checkbox] {
|
|
4594
4589
|
background-color: var(--color-info-error);
|
|
4595
4590
|
}
|
|
4591
|
+
.Layer__Checkbox[data-selected][data-readonly] [slot=checkbox] {
|
|
4592
|
+
border-color: var(--fg-subtle);
|
|
4593
|
+
background-color: var(--fg-subtle);
|
|
4594
|
+
}
|
|
4596
4595
|
.Layer__Checkbox[data-disabled] {
|
|
4597
4596
|
cursor: not-allowed;
|
|
4598
4597
|
}
|
|
@@ -4620,6 +4619,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4620
4619
|
.Layer__ComboBoxControl--disabled {
|
|
4621
4620
|
cursor: not-allowed;
|
|
4622
4621
|
}
|
|
4622
|
+
.Layer__ComboBoxControl--readonly {
|
|
4623
|
+
background-color: var(--bg-muted);
|
|
4624
|
+
}
|
|
4623
4625
|
.Layer__ComboBoxContainer > .Layer__ComboBoxControl {
|
|
4624
4626
|
block-size: var(--block-size);
|
|
4625
4627
|
min-block-size: var(--block-size);
|
|
@@ -4635,6 +4637,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4635
4637
|
.Layer__ComboBoxIndicatorsContainer {
|
|
4636
4638
|
padding-inline-end: var(--spacing-3xs);
|
|
4637
4639
|
}
|
|
4640
|
+
.Layer__ComboBoxIndicatorsContainer--readonly {
|
|
4641
|
+
visibility: hidden;
|
|
4642
|
+
}
|
|
4638
4643
|
.Layer__ComboBoxClearIndicator {
|
|
4639
4644
|
display: flex;
|
|
4640
4645
|
align-items: center;
|
|
@@ -4715,6 +4720,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4715
4720
|
.Layer__ComboBoxNoOptionsMessage {
|
|
4716
4721
|
padding-block: var(--spacing-sm);
|
|
4717
4722
|
}
|
|
4723
|
+
.Layer__UI__DateSegment {
|
|
4724
|
+
padding: 1px;
|
|
4725
|
+
border-radius: var(--border-radius-4xs);
|
|
4726
|
+
}
|
|
4727
|
+
.Layer__UI__DateSegment[data-focused] {
|
|
4728
|
+
outline: none;
|
|
4729
|
+
background-color: var(--color-base-400);
|
|
4730
|
+
}
|
|
4731
|
+
.Layer__UI__DateSegment[data-hovered] {
|
|
4732
|
+
background-color: var(--color-base-400);
|
|
4733
|
+
}
|
|
4734
|
+
.Layer__UI__DateSegment:not([data-interactive]) {
|
|
4735
|
+
background-color: transparent;
|
|
4736
|
+
}
|
|
4718
4737
|
.Layer__dropdown-menu__popover {
|
|
4719
4738
|
outline: none;
|
|
4720
4739
|
}
|
|
@@ -4777,21 +4796,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4777
4796
|
font-size: var(--text-xs);
|
|
4778
4797
|
color: var(--color-danger);
|
|
4779
4798
|
}
|
|
4780
|
-
.Layer__UI__TextField
|
|
4799
|
+
.Layer__UI__TextField,
|
|
4800
|
+
.Layer__UI__DateField {
|
|
4781
4801
|
display: grid;
|
|
4782
4802
|
grid-template-areas: "label" "input" "errorMessage";
|
|
4783
4803
|
}
|
|
4784
|
-
.Layer__UI__TextField[data-inline]
|
|
4804
|
+
.Layer__UI__TextField[data-inline],
|
|
4805
|
+
.Layer__UI__DateField[data-inline] {
|
|
4785
4806
|
grid-template-areas: "label input" ". errorMessage";
|
|
4786
4807
|
align-items: center;
|
|
4787
4808
|
}
|
|
4788
|
-
.Layer__UI__TextField[data-inline][data-textarea]
|
|
4809
|
+
.Layer__UI__TextField[data-inline][data-textarea],
|
|
4810
|
+
.Layer__UI__DateField[data-inline][data-textarea] {
|
|
4789
4811
|
align-items: start;
|
|
4790
4812
|
}
|
|
4791
|
-
.Layer__UI__TextField
|
|
4813
|
+
.Layer__UI__TextField[data-readonly] [slot=input],
|
|
4814
|
+
.Layer__UI__DateField[data-readonly] [slot=input] {
|
|
4815
|
+
background-color: var(--bg-muted);
|
|
4816
|
+
}
|
|
4817
|
+
.Layer__UI__TextField > [slot=errorMessage],
|
|
4818
|
+
.Layer__UI__DateField > [slot=errorMessage] {
|
|
4792
4819
|
grid-area: errorMessage;
|
|
4793
4820
|
}
|
|
4794
|
-
.Layer__UI__Input
|
|
4821
|
+
.Layer__UI__Input,
|
|
4822
|
+
.Layer__UI__DateInput {
|
|
4795
4823
|
min-inline-size: 0;
|
|
4796
4824
|
padding-inline: var(--spacing-xs);
|
|
4797
4825
|
outline: none;
|
|
@@ -4801,11 +4829,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4801
4829
|
font-family: var(--font-family);
|
|
4802
4830
|
vertical-align: middle;
|
|
4803
4831
|
}
|
|
4804
|
-
.Layer__UI__Input[data-inset]
|
|
4832
|
+
.Layer__UI__Input[data-inset],
|
|
4833
|
+
.Layer__UI__DateInput[data-inset] {
|
|
4805
4834
|
padding-inline: 0;
|
|
4806
4835
|
border: none;
|
|
4807
4836
|
}
|
|
4808
|
-
.Layer__UI__Input[data-placement=first]
|
|
4837
|
+
.Layer__UI__Input[data-placement=first],
|
|
4838
|
+
.Layer__UI__DateInput[data-placement=first] {
|
|
4809
4839
|
border-start-start-radius: inherit;
|
|
4810
4840
|
border-end-start-radius: inherit;
|
|
4811
4841
|
}
|
|
@@ -4834,8 +4864,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4834
4864
|
cursor: not-allowed;
|
|
4835
4865
|
}
|
|
4836
4866
|
.Layer__UI__TextArea {
|
|
4837
|
-
box-sizing:
|
|
4838
|
-
min-block-size:
|
|
4867
|
+
box-sizing: content-box;
|
|
4868
|
+
min-block-size: 5lh;
|
|
4839
4869
|
padding-block: var(--spacing-xs);
|
|
4840
4870
|
padding-inline-start: var(--spacing-xs);
|
|
4841
4871
|
padding-inline-end: var(--spacing-3xs);
|
|
@@ -4944,6 +4974,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4944
4974
|
outline: 1px solid var(--color-base-100);
|
|
4945
4975
|
outline-offset: 1px;
|
|
4946
4976
|
}
|
|
4977
|
+
.Layer__Meter [slot=bar] {
|
|
4978
|
+
overflow: hidden;
|
|
4979
|
+
height: 0.75rem;
|
|
4980
|
+
border-radius: var(--border-radius-2xs);
|
|
4981
|
+
}
|
|
4982
|
+
.Layer__Meter__svg {
|
|
4983
|
+
width: 100%;
|
|
4984
|
+
}
|
|
4985
|
+
.Layer__Meter__track {
|
|
4986
|
+
fill: var(--color-base-300);
|
|
4987
|
+
}
|
|
4988
|
+
.Layer__Meter__fill {
|
|
4989
|
+
fill: var(--color-base-800);
|
|
4990
|
+
}
|
|
4947
4991
|
.Layer__ModalOverlay {
|
|
4948
4992
|
position: fixed;
|
|
4949
4993
|
z-index: 100;
|
|
@@ -4952,28 +4996,34 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4952
4996
|
background: rgba(0, 0, 0, 0.5);
|
|
4953
4997
|
place-items: center;
|
|
4954
4998
|
}
|
|
4955
|
-
.Layer__ModalOverlay[data-
|
|
4956
|
-
|
|
4999
|
+
.Layer__ModalOverlay[data-variant=drawer] {
|
|
5000
|
+
place-items: end;
|
|
4957
5001
|
}
|
|
4958
|
-
.Layer__ModalOverlay[data-
|
|
4959
|
-
animation
|
|
5002
|
+
.Layer__ModalOverlay[data-variant=drawer][data-entering] {
|
|
5003
|
+
animation: drawer-darken 300ms;
|
|
5004
|
+
}
|
|
5005
|
+
.Layer__ModalOverlay[data-variant=drawer][data-exiting] {
|
|
5006
|
+
animation: drawer-darken 300ms reverse ease-in;
|
|
4960
5007
|
}
|
|
4961
5008
|
.Layer__Modal {
|
|
4962
5009
|
block-size: min(42rem, 90%);
|
|
4963
5010
|
inline-size: min(36rem, 90%);
|
|
4964
5011
|
}
|
|
4965
|
-
.Layer__Modal[data-entering] {
|
|
4966
|
-
animation-duration: 300ms;
|
|
4967
|
-
}
|
|
4968
|
-
.Layer__Modal[data-exiting] {
|
|
4969
|
-
animation-duration: 300ms;
|
|
4970
|
-
}
|
|
4971
5012
|
.Layer__Modal[data-flex-block] {
|
|
4972
5013
|
block-size: auto;
|
|
4973
5014
|
}
|
|
4974
5015
|
.Layer__Modal[data-size=lg] {
|
|
4975
5016
|
inline-size: min(42rem, 90%);
|
|
4976
5017
|
}
|
|
5018
|
+
.Layer__Modal[data-variant=drawer] {
|
|
5019
|
+
block-size: 100%;
|
|
5020
|
+
}
|
|
5021
|
+
.Layer__Modal[data-variant=drawer][data-entering] {
|
|
5022
|
+
animation: drawer-slide 300ms;
|
|
5023
|
+
}
|
|
5024
|
+
.Layer__Modal[data-variant=drawer][data-exiting] {
|
|
5025
|
+
animation: drawer-slide 300ms reverse ease-in;
|
|
5026
|
+
}
|
|
4977
5027
|
.Layer__Dialog {
|
|
4978
5028
|
display: flex;
|
|
4979
5029
|
flex-direction: column;
|
|
@@ -4986,6 +5036,26 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4986
5036
|
.Layer__Dialog [slot=content] {
|
|
4987
5037
|
flex: 1;
|
|
4988
5038
|
}
|
|
5039
|
+
.Layer__Dialog[data-variant=drawer] {
|
|
5040
|
+
padding: 0;
|
|
5041
|
+
border-radius: 0;
|
|
5042
|
+
}
|
|
5043
|
+
@keyframes drawer-slide {
|
|
5044
|
+
from {
|
|
5045
|
+
transform: translateX(100%);
|
|
5046
|
+
}
|
|
5047
|
+
to {
|
|
5048
|
+
transform: translateX(0);
|
|
5049
|
+
}
|
|
5050
|
+
}
|
|
5051
|
+
@keyframes drawer-darken {
|
|
5052
|
+
from {
|
|
5053
|
+
background: rgba(0, 0, 0, 0);
|
|
5054
|
+
}
|
|
5055
|
+
to {
|
|
5056
|
+
background: rgba(0, 0, 0, 0.5);
|
|
5057
|
+
}
|
|
5058
|
+
}
|
|
4989
5059
|
.Layer__ModalCloseButton--position-absolute {
|
|
4990
5060
|
position: absolute;
|
|
4991
5061
|
align-self: end;
|
|
@@ -4995,6 +5065,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4995
5065
|
grid-template-areas: "title close";
|
|
4996
5066
|
grid-template-columns: 1fr auto;
|
|
4997
5067
|
gap: var(--spacing-sm);
|
|
5068
|
+
align-items: center;
|
|
4998
5069
|
}
|
|
4999
5070
|
.Layer__ModalTitleWithClose > [slot=title] {
|
|
5000
5071
|
grid-area: title;
|
|
@@ -5368,6 +5439,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5368
5439
|
border-bottom: 1px solid var(--color-base-300);
|
|
5369
5440
|
}
|
|
5370
5441
|
.Layer__UI__Table-Column {
|
|
5442
|
+
box-sizing: border-box;
|
|
5371
5443
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
5372
5444
|
font-size: var(--text-sm);
|
|
5373
5445
|
font-weight: var(--font-weight-normal);
|
|
@@ -5393,6 +5465,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5393
5465
|
font-size: var(--text-md);
|
|
5394
5466
|
font-weight: var(--font-weight-normal);
|
|
5395
5467
|
color: var(--color-base-800);
|
|
5468
|
+
height: inherit;
|
|
5396
5469
|
}
|
|
5397
5470
|
.Layer__UI__Table-Cell:first-child {
|
|
5398
5471
|
padding-left: var(--spacing-md);
|
|
@@ -5547,7 +5620,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5547
5620
|
font-weight: var(--font-weight-bold);
|
|
5548
5621
|
}
|
|
5549
5622
|
.Layer__MoneyText {
|
|
5550
|
-
color: var(--color-base-
|
|
5623
|
+
color: var(--color-base-800);
|
|
5551
5624
|
overflow-x: hidden;
|
|
5552
5625
|
text-overflow: ellipsis;
|
|
5553
5626
|
}
|
|
@@ -5640,6 +5713,12 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5640
5713
|
.Layer__Span[data-size=lg] {
|
|
5641
5714
|
font-size: var(--text-lg);
|
|
5642
5715
|
}
|
|
5716
|
+
.Layer__Header[data-size=xl],
|
|
5717
|
+
.Layer__Label[data-size=xl],
|
|
5718
|
+
.Layer__P[data-size=xl],
|
|
5719
|
+
.Layer__Span[data-size=xl] {
|
|
5720
|
+
font-size: var(--text-xl);
|
|
5721
|
+
}
|
|
5643
5722
|
.Layer__Header[data-pb="3xs"],
|
|
5644
5723
|
.Layer__Label[data-pb="3xs"],
|
|
5645
5724
|
.Layer__P[data-pb="3xs"],
|
|
@@ -6680,35 +6759,38 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6680
6759
|
font-size: var(--text-md);
|
|
6681
6760
|
}
|
|
6682
6761
|
}
|
|
6683
|
-
.
|
|
6762
|
+
.Layer__InvoiceTable {
|
|
6763
|
+
width: clamp(48rem, 100%, 1406px);
|
|
6764
|
+
}
|
|
6765
|
+
.Layer__UI__Table__InvoiceTable {
|
|
6684
6766
|
table-layout: fixed;
|
|
6685
6767
|
}
|
|
6686
|
-
.
|
|
6768
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--SentAt {
|
|
6687
6769
|
width: 15%;
|
|
6688
|
-
min-width:
|
|
6770
|
+
min-width: 8rem;
|
|
6689
6771
|
}
|
|
6690
|
-
.
|
|
6772
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--InvoiceNo {
|
|
6691
6773
|
width: 10%;
|
|
6692
|
-
min-width:
|
|
6774
|
+
min-width: 6.75rem;
|
|
6693
6775
|
}
|
|
6694
|
-
.
|
|
6776
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Customer {
|
|
6695
6777
|
width: 35%;
|
|
6696
|
-
min-width:
|
|
6778
|
+
min-width: 11.75rem;
|
|
6697
6779
|
}
|
|
6698
|
-
.
|
|
6780
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total {
|
|
6699
6781
|
width: 15%;
|
|
6700
|
-
min-width:
|
|
6782
|
+
min-width: 7.75rem;
|
|
6701
6783
|
border-right: 1px solid var(--color-base-300);
|
|
6702
6784
|
text-align: end;
|
|
6703
6785
|
}
|
|
6704
|
-
.
|
|
6786
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Status {
|
|
6705
6787
|
width: 25%;
|
|
6706
|
-
min-width:
|
|
6788
|
+
min-width: 10rem;
|
|
6707
6789
|
}
|
|
6708
|
-
.
|
|
6790
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Cell__InvoiceTable--Total {
|
|
6709
6791
|
border-right: 1px solid var(--color-base-300);
|
|
6710
6792
|
}
|
|
6711
|
-
.
|
|
6793
|
+
.Layer__InvoiceTable__StatusFilter {
|
|
6712
6794
|
width: 11rem;
|
|
6713
6795
|
}
|
|
6714
6796
|
.Layer__InvoiceDetail__SubHeader {
|
|
@@ -6718,25 +6800,127 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6718
6800
|
border-bottom: 1px solid var(--border-color);
|
|
6719
6801
|
}
|
|
6720
6802
|
.Layer__InvoiceForm {
|
|
6721
|
-
min-width:
|
|
6803
|
+
min-width: 54rem;
|
|
6722
6804
|
}
|
|
6723
6805
|
.Layer__InvoiceForm .Layer__InvoiceForm__Field__Customer,
|
|
6724
6806
|
.Layer__InvoiceForm .Layer__InvoiceForm__Field__Email,
|
|
6725
6807
|
.Layer__InvoiceForm .Layer__InvoiceForm__Field__Address {
|
|
6726
|
-
grid-template-columns: 8rem
|
|
6808
|
+
grid-template-columns: 8rem auto;
|
|
6809
|
+
width: clamp(28rem, 100%, 44rem);
|
|
6810
|
+
}
|
|
6811
|
+
.Layer__InvoiceForm .Layer__InvoiceForm__Field__InvoiceNo,
|
|
6812
|
+
.Layer__InvoiceForm .Layer__InvoiceForm__Field__Terms,
|
|
6813
|
+
.Layer__InvoiceForm .Layer__InvoiceForm__Field__SentAt,
|
|
6814
|
+
.Layer__InvoiceForm .Layer__InvoiceForm__Field__DueAt {
|
|
6815
|
+
grid-template-columns: 8rem auto;
|
|
6816
|
+
width: clamp(16rem, 100%, 24rem);
|
|
6727
6817
|
}
|
|
6728
6818
|
.Layer__InvoiceForm .Layer__InvoiceForm__LineItem {
|
|
6729
6819
|
display: grid;
|
|
6730
|
-
grid-
|
|
6820
|
+
--grid-cols-base: minmax(10rem, 1.5fr) minmax(12rem, 2fr) minmax(5rem, 0.75fr) minmax(6rem, 0.75fr) minmax(6rem, 0.75fr) minmax(3rem, 0.25fr);
|
|
6821
|
+
grid-template-columns: var(--grid-cols-base) auto;
|
|
6731
6822
|
width: 100%;
|
|
6732
|
-
min-width: 45rem;
|
|
6733
6823
|
}
|
|
6734
|
-
.
|
|
6824
|
+
.Layer__InvoiceForm .Layer__InvoiceForm__LineItem--readonly {
|
|
6825
|
+
grid-template-columns: var(--grid-cols-base);
|
|
6826
|
+
}
|
|
6827
|
+
.Layer__InvoiceForm__Terms {
|
|
6828
|
+
display: grid;
|
|
6829
|
+
grid-template-columns: 1.5fr 1fr;
|
|
6830
|
+
max-width: 64rem;
|
|
6735
6831
|
padding: var(--spacing-lg) var(--spacing-2xl);
|
|
6736
6832
|
}
|
|
6737
6833
|
.Layer__InvoiceForm__LineItems {
|
|
6738
6834
|
padding: var(--spacing-lg) var(--spacing-2xl);
|
|
6739
|
-
background-color: var(--
|
|
6835
|
+
background-color: var(--bg-subtle);
|
|
6836
|
+
}
|
|
6837
|
+
.Layer__InvoiceForm__Metadata {
|
|
6838
|
+
border-top: 1px solid var(--color-base-300);
|
|
6839
|
+
}
|
|
6840
|
+
.Layer__InvoiceForm__TotalFields {
|
|
6841
|
+
max-width: 28rem;
|
|
6842
|
+
}
|
|
6843
|
+
.Layer__InvoiceForm__AdditionalTextFields {
|
|
6844
|
+
flex: 1;
|
|
6845
|
+
min-width: 20rem;
|
|
6846
|
+
max-width: 32rem;
|
|
6847
|
+
}
|
|
6848
|
+
.Layer__InvoiceForm__TotalRow {
|
|
6849
|
+
display: grid;
|
|
6850
|
+
grid-template-columns: auto 1fr;
|
|
6851
|
+
height: 2.5rem;
|
|
6852
|
+
}
|
|
6853
|
+
.Layer__InvoiceForm__TotalRow--withField {
|
|
6854
|
+
grid-template-columns: minmax(7.5rem, 1fr) 7.5rem minmax(6rem, 0.8fr);
|
|
6855
|
+
}
|
|
6856
|
+
.Layer__InvoiceForm__TermsComboBox {
|
|
6857
|
+
display: grid;
|
|
6858
|
+
align-items: center;
|
|
6859
|
+
}
|
|
6860
|
+
.Layer__InvoiceForm__FormError {
|
|
6861
|
+
height: 4rem;
|
|
6862
|
+
padding-left: 2.25rem;
|
|
6863
|
+
border-bottom: 1px solid var(--border-color);
|
|
6864
|
+
}
|
|
6865
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__InvoiceNo,
|
|
6866
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__PaidAt,
|
|
6867
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__PaymentMethod,
|
|
6868
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__ReferenceNo,
|
|
6869
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__Memo {
|
|
6870
|
+
grid-template-columns: 8rem auto;
|
|
6871
|
+
min-width: 16rem;
|
|
6872
|
+
}
|
|
6873
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__Amount {
|
|
6874
|
+
grid-template-columns: 8rem 8rem;
|
|
6875
|
+
justify-content: end;
|
|
6876
|
+
}
|
|
6877
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__OutstandingBalance {
|
|
6878
|
+
display: grid;
|
|
6879
|
+
grid-template-columns: 8rem 7.5rem;
|
|
6880
|
+
justify-content: end;
|
|
6881
|
+
}
|
|
6882
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__FormError {
|
|
6883
|
+
height: 4rem;
|
|
6884
|
+
padding-inline: var(--spacing-md);
|
|
6885
|
+
border-top: 1px solid var(--border-color);
|
|
6886
|
+
}
|
|
6887
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__InvoiceNo {
|
|
6888
|
+
display: grid;
|
|
6889
|
+
}
|
|
6890
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Section {
|
|
6891
|
+
padding: var(--spacing-md);
|
|
6892
|
+
border-top: 1px solid var(--border-color);
|
|
6893
|
+
}
|
|
6894
|
+
.Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Submit {
|
|
6895
|
+
display: grid;
|
|
6896
|
+
}
|
|
6897
|
+
.Layer__InvoiceSummaryStats__Container {
|
|
6898
|
+
box-sizing: border-box;
|
|
6899
|
+
width: clamp(48rem, 100%, 1406px);
|
|
6900
|
+
padding: var(--spacing-md) var(--spacing-lg);
|
|
6901
|
+
}
|
|
6902
|
+
.Layer__InvoiceSummaryStats__Payments {
|
|
6903
|
+
box-sizing: border-box;
|
|
6904
|
+
min-width: 12rem;
|
|
6905
|
+
padding: var(--spacing-md) var(--spacing-lg);
|
|
6906
|
+
border-radius: var(--border-radius-2xs);
|
|
6907
|
+
border: 1px solid var(--border-color);
|
|
6908
|
+
}
|
|
6909
|
+
.Layer__InvoiceSummaryStats__Meter__track {
|
|
6910
|
+
fill: var(--color-info-bg);
|
|
6911
|
+
}
|
|
6912
|
+
.Layer__InvoiceSummaryStats__Meter__fill {
|
|
6913
|
+
fill: var(--color-info-warning-bg);
|
|
6914
|
+
}
|
|
6915
|
+
.Layer__PaymentMethodComboBox {
|
|
6916
|
+
display: grid;
|
|
6917
|
+
grid-template-areas: "label" "input";
|
|
6918
|
+
gap: var(--spacing-3xs);
|
|
6919
|
+
}
|
|
6920
|
+
.Layer__PaymentMethodComboBox--inline {
|
|
6921
|
+
grid-template-areas: "label input";
|
|
6922
|
+
gap: 0;
|
|
6923
|
+
align-items: center;
|
|
6740
6924
|
}
|
|
6741
6925
|
.Layer__DataTableHeader__Filters {
|
|
6742
6926
|
height: 4.25rem;
|
|
@@ -6746,6 +6930,45 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6746
6930
|
height: 4.75rem;
|
|
6747
6931
|
border-bottom: 1px solid var(--border-color);
|
|
6748
6932
|
}
|
|
6933
|
+
.Layer__UI__VirtualizedTable__container {
|
|
6934
|
+
position: relative;
|
|
6935
|
+
overflow: auto;
|
|
6936
|
+
padding-right: var(--spacing-sm);
|
|
6937
|
+
}
|
|
6938
|
+
.Layer__UI__VirtualizedTable__state-container {
|
|
6939
|
+
display: flex;
|
|
6940
|
+
align-items: center;
|
|
6941
|
+
justify-content: center;
|
|
6942
|
+
}
|
|
6943
|
+
.Layer__UI__VirtualizedTable__header-row {
|
|
6944
|
+
display: flex;
|
|
6945
|
+
width: 100%;
|
|
6946
|
+
}
|
|
6947
|
+
.Layer__table-header.Layer__UI__VirtualizedTable__header-cell {
|
|
6948
|
+
box-sizing: border-box;
|
|
6949
|
+
display: flex;
|
|
6950
|
+
flex: 0 0 auto;
|
|
6951
|
+
padding: 0;
|
|
6952
|
+
}
|
|
6953
|
+
.Layer__UI__VirtualizedTable__spacer {
|
|
6954
|
+
visibility: hidden;
|
|
6955
|
+
border: none;
|
|
6956
|
+
position: absolute;
|
|
6957
|
+
}
|
|
6958
|
+
.Layer__UI__VirtualizedTable__row {
|
|
6959
|
+
position: absolute;
|
|
6960
|
+
display: flex;
|
|
6961
|
+
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
|
+
}
|
|
6749
6972
|
.Layer__caobfb {
|
|
6750
6973
|
padding-inline: var(--spacing-md);
|
|
6751
6974
|
padding-block: var(--spacing-sm);
|
|
@@ -7574,6 +7797,95 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7574
7797
|
.Layer__separator[data-mbs="5xl"] {
|
|
7575
7798
|
margin-block-start: var(--spacing-5xl);
|
|
7576
7799
|
}
|
|
7800
|
+
:root {
|
|
7801
|
+
--pnl-detail-date-col-width: 12%;
|
|
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%;
|
|
7807
|
+
}
|
|
7808
|
+
.Layer__UI__Table__ProfitAndLossDetailReport {
|
|
7809
|
+
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
|
+
}
|
|
7820
|
+
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Account {
|
|
7821
|
+
width: var(--pnl-detail-account-col-width);
|
|
7822
|
+
min-width: 10rem;
|
|
7823
|
+
}
|
|
7824
|
+
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Description {
|
|
7825
|
+
width: var(--pnl-detail-description-col-width);
|
|
7826
|
+
min-width: 12rem;
|
|
7827
|
+
}
|
|
7828
|
+
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Amount {
|
|
7829
|
+
width: var(--pnl-detail-amount-col-width);
|
|
7830
|
+
min-width: 7.5rem;
|
|
7831
|
+
text-align: right;
|
|
7832
|
+
justify-content: flex-end;
|
|
7833
|
+
}
|
|
7834
|
+
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance {
|
|
7835
|
+
width: var(--pnl-detail-balance-col-width);
|
|
7836
|
+
min-width: 7.5rem;
|
|
7837
|
+
text-align: right;
|
|
7838
|
+
justify-content: flex-end;
|
|
7839
|
+
}
|
|
7840
|
+
.Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Date {
|
|
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 {
|
|
7873
|
+
display: grid;
|
|
7874
|
+
grid-template-columns: var(--pnl-detail-date-col-width) var(--pnl-detail-type-col-width) var(--pnl-detail-account-col-width) var(--pnl-detail-description-col-width) var(--pnl-detail-amount-col-width) var(--pnl-detail-balance-col-width);
|
|
7875
|
+
padding-top: var(--spacing-sm);
|
|
7876
|
+
padding-bottom: var(--spacing-sm);
|
|
7877
|
+
padding-right: var(--spacing-md);
|
|
7878
|
+
border-top: 1px solid var(--color-base-300);
|
|
7879
|
+
}
|
|
7880
|
+
.Layer__profit-and-loss-detail-report__total-label {
|
|
7881
|
+
grid-column: 1;
|
|
7882
|
+
padding-left: var(--spacing-md);
|
|
7883
|
+
}
|
|
7884
|
+
.Layer__profit-and-loss-detail-report__total-amount {
|
|
7885
|
+
grid-column: 5;
|
|
7886
|
+
justify-content: right;
|
|
7887
|
+
padding-right: var(--spacing-sm);
|
|
7888
|
+
}
|
|
7577
7889
|
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
7578
7890
|
position: absolute;
|
|
7579
7891
|
bottom: -20px;
|
|
@@ -7855,6 +8167,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7855
8167
|
flex: 3 1 0;
|
|
7856
8168
|
min-width: 12rem;
|
|
7857
8169
|
}
|
|
8170
|
+
.Layer__upload-transactions .Layer__upload-transactions__preview_table .Layer__csv-upload__validate-csv-table__cell--external_id,
|
|
8171
|
+
.Layer__upload-transactions .Layer__upload-transactions__preview_table .Layer__csv-upload__validate-csv-table__header-cell--external_id {
|
|
8172
|
+
min-width: 7.5rem;
|
|
8173
|
+
}
|
|
8174
|
+
.Layer__upload-transactions .Layer__upload-transactions__preview_table .Layer__csv-upload__validate-csv-table__cell--reference_number,
|
|
8175
|
+
.Layer__upload-transactions .Layer__upload-transactions__preview_table .Layer__csv-upload__validate-csv-table__header-cell--reference_number {
|
|
8176
|
+
min-width: 7.5rem;
|
|
8177
|
+
}
|
|
7858
8178
|
.Layer__SearchField {
|
|
7859
8179
|
display: grid;
|
|
7860
8180
|
grid-template-areas: "icon search";
|
|
@@ -9684,7 +10004,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9684
10004
|
width: 8rem;
|
|
9685
10005
|
}
|
|
9686
10006
|
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--actions {
|
|
9687
|
-
width:
|
|
10007
|
+
width: 10rem;
|
|
9688
10008
|
}
|
|
9689
10009
|
.Layer__chart-of-accounts__table .Layer__table-cell-content .Layer__Span {
|
|
9690
10010
|
color: var(--text-secondary);
|
|
@@ -10257,18 +10577,19 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10257
10577
|
color: var(--fg-default);
|
|
10258
10578
|
}
|
|
10259
10579
|
.Layer__data-state__icon--neutral {
|
|
10260
|
-
box-shadow:
|
|
10580
|
+
box-shadow: none;
|
|
10261
10581
|
background: var(--bg-muted);
|
|
10262
10582
|
color: var(--fg-default);
|
|
10263
10583
|
}
|
|
10264
10584
|
.Layer__data-state__icon--success {
|
|
10265
|
-
box-shadow:
|
|
10585
|
+
box-shadow: none;
|
|
10266
10586
|
background: var(--color-info-success-bg);
|
|
10267
10587
|
color: var(--color-info-success-fg);
|
|
10268
10588
|
}
|
|
10269
10589
|
.Layer__data-state__icon--error {
|
|
10270
|
-
|
|
10271
|
-
|
|
10590
|
+
box-shadow: none;
|
|
10591
|
+
background: var(--color-info-error-bg);
|
|
10592
|
+
color: var(--color-info-error-fg);
|
|
10272
10593
|
}
|
|
10273
10594
|
.Layer__data-state__title {
|
|
10274
10595
|
display: block;
|
|
@@ -10711,22 +11032,22 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10711
11032
|
height: 24px;
|
|
10712
11033
|
}
|
|
10713
11034
|
.Layer__loader {
|
|
10714
|
-
|
|
11035
|
+
box-sizing: border-box;
|
|
10715
11036
|
display: flex;
|
|
11037
|
+
gap: 8px;
|
|
10716
11038
|
align-items: center;
|
|
10717
11039
|
justify-content: center;
|
|
10718
|
-
|
|
11040
|
+
width: 100%;
|
|
10719
11041
|
padding: var(--spacing-md);
|
|
10720
|
-
color: var(--text-color-primary);
|
|
10721
11042
|
font-size: var(--text-sm);
|
|
10722
|
-
|
|
11043
|
+
color: var(--text-color-primary);
|
|
10723
11044
|
}
|
|
10724
11045
|
.Layer__loader--as-badge {
|
|
10725
|
-
padding: 0;
|
|
10726
|
-
width: 21px;
|
|
10727
11046
|
height: 21px;
|
|
10728
|
-
|
|
11047
|
+
width: 21px;
|
|
11048
|
+
padding: 0;
|
|
10729
11049
|
border-radius: 50%;
|
|
11050
|
+
background-color: var(--color-base-100);
|
|
10730
11051
|
}
|
|
10731
11052
|
.Layer__loader--as-badge.Layer__loader--info {
|
|
10732
11053
|
background-color: var(--color-info-bg);
|
|
@@ -10745,24 +11066,24 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10745
11066
|
color: var(--color-info-warning-fg);
|
|
10746
11067
|
}
|
|
10747
11068
|
.Layer__loader--with-bg {
|
|
10748
|
-
background-color: var(--color-base-400);
|
|
10749
|
-
color: var(--text-color-primary);
|
|
10750
11069
|
padding: 0;
|
|
10751
11070
|
border-radius: 50%;
|
|
11071
|
+
background-color: var(--color-base-400);
|
|
11072
|
+
color: var(--text-color-primary);
|
|
10752
11073
|
}
|
|
10753
11074
|
.Layer__skeleton-loader__row {
|
|
11075
|
+
height: 63px;
|
|
10754
11076
|
padding: 0 var(--spacing-md);
|
|
10755
11077
|
border-bottom: 1px solid var(--border-color);
|
|
10756
|
-
height: 63px;
|
|
10757
11078
|
}
|
|
10758
11079
|
.Layer__skeleton-loader__row__group {
|
|
10759
11080
|
display: flex;
|
|
10760
|
-
align-items: center;
|
|
10761
11081
|
gap: var(--spacing-sm);
|
|
11082
|
+
align-items: center;
|
|
10762
11083
|
}
|
|
10763
11084
|
.Layer__skeleton-loader {
|
|
10764
|
-
width: 100%;
|
|
10765
11085
|
height: 12px;
|
|
11086
|
+
width: 100%;
|
|
10766
11087
|
border-radius: 4px;
|
|
10767
11088
|
}
|
|
10768
11089
|
@keyframes shine {
|
|
@@ -10771,27 +11092,27 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10771
11092
|
}
|
|
10772
11093
|
}
|
|
10773
11094
|
.Layer__anim--skeleton-loading {
|
|
11095
|
+
border-radius: 4px;
|
|
10774
11096
|
background: var(--color-base-100);
|
|
10775
11097
|
background:
|
|
10776
11098
|
linear-gradient(
|
|
10777
11099
|
110deg,
|
|
10778
|
-
var(--color-base-
|
|
10779
|
-
var(--color-base-
|
|
10780
|
-
var(--color-base-
|
|
10781
|
-
var(--color-base-
|
|
10782
|
-
border-radius: 4px;
|
|
11100
|
+
var(--color-base-100) 0%,
|
|
11101
|
+
var(--color-base-50) 28%,
|
|
11102
|
+
var(--color-base-100) 50%,
|
|
11103
|
+
var(--color-base-100) 100%);
|
|
10783
11104
|
background-size: 200% 100%;
|
|
10784
11105
|
animation: 1.5s shine linear infinite;
|
|
10785
11106
|
}
|
|
10786
11107
|
.Layer__syncing-component {
|
|
10787
11108
|
display: flex;
|
|
10788
|
-
align-items: center;
|
|
10789
11109
|
gap: var(--spacing-md);
|
|
11110
|
+
align-items: center;
|
|
10790
11111
|
padding: var(--spacing-md);
|
|
10791
11112
|
}
|
|
10792
11113
|
.Layer__syncing-component.Layer__syncing-component--with-border {
|
|
10793
|
-
border-left: 1px solid var(--border-color);
|
|
10794
11114
|
padding: 0 var(--spacing-md);
|
|
11115
|
+
border-left: 1px solid var(--border-color);
|
|
10795
11116
|
margin-left: var(--spacing-md);
|
|
10796
11117
|
}
|
|
10797
11118
|
.Layer__syncing-component .Layer__syncing-component__content {
|
|
@@ -10800,18 +11121,18 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10800
11121
|
gap: var(--spacing-4xs);
|
|
10801
11122
|
}
|
|
10802
11123
|
.Layer__syncing-component .Layer__syncing-component__content .Layer__syncing-component__title {
|
|
10803
|
-
color: var(--text-color-primary);
|
|
10804
11124
|
font-size: var(--text-sm);
|
|
10805
11125
|
font-weight: 540;
|
|
11126
|
+
color: var(--text-color-primary);
|
|
10806
11127
|
}
|
|
10807
11128
|
.Layer__syncing-component .Layer__syncing-component__content .Layer__syncing-component__message {
|
|
10808
|
-
color: var(--color-base-500);
|
|
10809
11129
|
font-size: var(--text-sm);
|
|
10810
11130
|
font-weight: 460;
|
|
11131
|
+
color: var(--color-base-500);
|
|
10811
11132
|
}
|
|
10812
11133
|
.Layer__syncing-component .Layer__icon-btn {
|
|
11134
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6, rgba(17, 17, 17, 0.06)), 0 0 0 1px var(--base-300, #eaeaea);
|
|
10813
11135
|
color: var(--color-base-1000);
|
|
10814
|
-
box-shadow: 0px 1px 2px 0px var(--base-transparent-6, rgba(17, 17, 17, 0.06)), 0px 0px 0px 1px var(--base-300, #eaeaea);
|
|
10815
11136
|
}
|
|
10816
11137
|
.Layer__syncing-component .Layer__icon-btn svg {
|
|
10817
11138
|
transition: transform 0.3s ease;
|
|
@@ -10820,9 +11141,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10820
11141
|
transform: rotate(180deg);
|
|
10821
11142
|
}
|
|
10822
11143
|
.Layer__bank-transactions__header--mobile .Layer__syncing-component.Layer__syncing-component--with-border {
|
|
10823
|
-
border-width: 0;
|
|
10824
11144
|
padding: 0;
|
|
10825
11145
|
padding-left: var(--spacing-sm);
|
|
11146
|
+
border-width: 0;
|
|
10826
11147
|
margin-left: 0;
|
|
10827
11148
|
}
|
|
10828
11149
|
.Layer__pagination-container {
|