@layerfi/components 0.1.127 → 0.1.128-alpha
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 +6569 -2393
- package/dist/esm/index.mjs +6192 -2033
- package/dist/index.css +1007 -265
- package/dist/index.d.ts +14 -1
- package/package.json +2 -1
package/dist/index.css
CHANGED
|
@@ -1030,6 +1030,24 @@
|
|
|
1030
1030
|
border-color: var(--button-border-color-ghost-active);
|
|
1031
1031
|
outline: 2px solid var(--outline-default);
|
|
1032
1032
|
}
|
|
1033
|
+
.Layer__UI__Button[data-variant=outlined-light] {
|
|
1034
|
+
border: 1px solid var(--color-base-300);
|
|
1035
|
+
background-color: var(--color-base-0);
|
|
1036
|
+
color: var(--color-base-900);
|
|
1037
|
+
}
|
|
1038
|
+
.Layer__UI__Button[data-variant=outlined-light][data-pending], .Layer__UI__Button[data-variant=outlined-light][data-disabled] {
|
|
1039
|
+
border-color: var(--color-base-200);
|
|
1040
|
+
background-color: var(--color-base-100);
|
|
1041
|
+
color: var(--button-fg-disabled);
|
|
1042
|
+
}
|
|
1043
|
+
.Layer__UI__Button[data-variant=outlined-light][data-hovered]:not([data-pressed], [data-focus-visible], [data-disabled]) {
|
|
1044
|
+
outline: 1px solid var(--outline-default);
|
|
1045
|
+
background-color: var(--color-base-100);
|
|
1046
|
+
}
|
|
1047
|
+
.Layer__UI__Button[data-variant=outlined-light][data-pressed]:not([data-focus-visible], [data-disabled]) {
|
|
1048
|
+
outline: 2px solid var(--outline-default);
|
|
1049
|
+
background-color: var(--color-base-200);
|
|
1050
|
+
}
|
|
1033
1051
|
.Layer__UI__Button[data-variant=solid] {
|
|
1034
1052
|
background-color: var(--button-bg-default);
|
|
1035
1053
|
color: var(--button-fg-default);
|
|
@@ -1988,11 +2006,10 @@
|
|
|
1988
2006
|
color: var(--bg-default);
|
|
1989
2007
|
border-color: var(--fg-default);
|
|
1990
2008
|
}
|
|
1991
|
-
.Layer__Checkbox[data-variant=success] [slot=checkbox] {
|
|
1992
|
-
background-color: var(--color-info-success);
|
|
1993
|
-
}
|
|
1994
2009
|
.Layer__Checkbox[data-selected][data-variant=success] [slot=checkbox] {
|
|
1995
|
-
|
|
2010
|
+
background-color: var(--bg-brand-accent, var(--color-accent));
|
|
2011
|
+
border-color: var(--bg-brand-accent, var(--color-accent));
|
|
2012
|
+
color: var(--fg-brand-accent, var(--color-primary));
|
|
1996
2013
|
}
|
|
1997
2014
|
.Layer__Checkbox[data-variant=error] [slot=checkbox] {
|
|
1998
2015
|
border-color: var(--color-info-error);
|
|
@@ -2372,15 +2389,6 @@
|
|
|
2372
2389
|
.Layer__UI__Table-Column:last-child {
|
|
2373
2390
|
padding-right: var(--spacing-md);
|
|
2374
2391
|
}
|
|
2375
|
-
.Layer__UI__Table-Column[data-text-align=left] {
|
|
2376
|
-
text-align: left;
|
|
2377
|
-
}
|
|
2378
|
-
.Layer__UI__Table-Column[data-text-align=center] {
|
|
2379
|
-
text-align: center;
|
|
2380
|
-
}
|
|
2381
|
-
.Layer__UI__Table-Column[data-text-align=right] {
|
|
2382
|
-
text-align: right;
|
|
2383
|
-
}
|
|
2384
2392
|
|
|
2385
2393
|
.Layer__UI__Table-Cell {
|
|
2386
2394
|
box-sizing: border-box;
|
|
@@ -2397,6 +2405,19 @@
|
|
|
2397
2405
|
}
|
|
2398
2406
|
.Layer__UI__Table-Cell:last-child {
|
|
2399
2407
|
padding-right: var(--spacing-md);
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
.Layer__UI__Table-Column[data-align=start],
|
|
2411
|
+
.Layer__UI__Table-Cell[data-align=start] {
|
|
2412
|
+
text-align: start;
|
|
2413
|
+
}
|
|
2414
|
+
.Layer__UI__Table-Column[data-align=center],
|
|
2415
|
+
.Layer__UI__Table-Cell[data-align=center] {
|
|
2416
|
+
text-align: center;
|
|
2417
|
+
}
|
|
2418
|
+
.Layer__UI__Table-Column[data-align=end],
|
|
2419
|
+
.Layer__UI__Table-Cell[data-align=end] {
|
|
2420
|
+
text-align: end;
|
|
2400
2421
|
}.Layer__UI__VirtualizedTable__container {
|
|
2401
2422
|
position: relative;
|
|
2402
2423
|
overflow: auto;
|
|
@@ -3121,6 +3142,10 @@
|
|
|
3121
3142
|
.Layer__DataTable__EmptyState__Cell {
|
|
3122
3143
|
grid-column: 1/-1;
|
|
3123
3144
|
justify-content: center;
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
.Layer__DataTable__ClickableRow {
|
|
3148
|
+
cursor: pointer;
|
|
3124
3149
|
}.Layer__PaginatedDataTable__Pagination {
|
|
3125
3150
|
border-top: 1px solid var(--border-color);
|
|
3126
3151
|
}.Layer__CategorizationRulesTable {
|
|
@@ -3449,6 +3474,130 @@
|
|
|
3449
3474
|
column-gap: var(--spacing-sm);
|
|
3450
3475
|
justify-content: space-between;
|
|
3451
3476
|
list-style: none;
|
|
3477
|
+
}#layer-pie-dots-pattern rect {
|
|
3478
|
+
fill: var(--color-base-500);
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
#layer-pie-dots-pattern rect.bg {
|
|
3482
|
+
fill: var(--color-base-100);
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
.Layer__DetailedChart {
|
|
3486
|
+
width: 100%;
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
.Layer__DetailedChart__container {
|
|
3490
|
+
box-sizing: border-box;
|
|
3491
|
+
height: 100%;
|
|
3492
|
+
width: 100%;
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3495
|
+
.Layer__DetailedChart__centerLabelTitle,
|
|
3496
|
+
.Layer__DetailedChart__centerLabelShare {
|
|
3497
|
+
fill: var(--color-base-600);
|
|
3498
|
+
font-size: 12px;
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
.Layer__DetailedChart__centerLabelValue {
|
|
3502
|
+
fill: var(--text-color-primary);
|
|
3503
|
+
font-size: var(--text-md);
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
.Layer__DetailedChart__centerLabelLoading {
|
|
3507
|
+
fill: var(--color-base-600);
|
|
3508
|
+
font-size: 14px;
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
.Layer__DetailedChart__Slice {
|
|
3512
|
+
transition: fill 1000ms ease-out;
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
.Layer__DetailedChart__Slice--inactive {
|
|
3516
|
+
fill: var(--color-base-300);
|
|
3517
|
+
}.Layer__DetailedTable__table table {
|
|
3518
|
+
width: 100%;
|
|
3519
|
+
border-collapse: collapse;
|
|
3520
|
+
}
|
|
3521
|
+
.Layer__DetailedTable__table table th,
|
|
3522
|
+
.Layer__DetailedTable__table table td {
|
|
3523
|
+
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
3524
|
+
font-size: 12px;
|
|
3525
|
+
}
|
|
3526
|
+
.Layer__DetailedTable__table table th:first-child,
|
|
3527
|
+
.Layer__DetailedTable__table table td:first-child {
|
|
3528
|
+
width: 20px;
|
|
3529
|
+
padding-right: 0;
|
|
3530
|
+
}
|
|
3531
|
+
.Layer__DetailedTable__table table th:last-child,
|
|
3532
|
+
.Layer__DetailedTable__table table td:last-child {
|
|
3533
|
+
text-align: right;
|
|
3534
|
+
}
|
|
3535
|
+
.Layer__DetailedTable__table table th {
|
|
3536
|
+
padding-bottom: var(--spacing-sm);
|
|
3537
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
3538
|
+
transition: color 150ms ease-out;
|
|
3539
|
+
}
|
|
3540
|
+
.Layer__DetailedTable__table--sortable table th {
|
|
3541
|
+
cursor: pointer;
|
|
3542
|
+
}
|
|
3543
|
+
.Layer__DetailedTable__table--sortable table th:first-child {
|
|
3544
|
+
cursor: default;
|
|
3545
|
+
}
|
|
3546
|
+
.Layer__DetailedTable__table table tbody tr {
|
|
3547
|
+
height: 2.5rem;
|
|
3548
|
+
}
|
|
3549
|
+
.Layer__DetailedTable__Column--color .share-icon {
|
|
3550
|
+
height: 12px;
|
|
3551
|
+
width: 12px;
|
|
3552
|
+
border-radius: 2px;
|
|
3553
|
+
}
|
|
3554
|
+
.Layer__DetailedTable__Column--percent {
|
|
3555
|
+
width: 4ch;
|
|
3556
|
+
padding-left: 0;
|
|
3557
|
+
text-align: right;
|
|
3558
|
+
}
|
|
3559
|
+
.Layer__DetailedTable__Column--percent .share-text {
|
|
3560
|
+
font-size: var(--text-sm);
|
|
3561
|
+
line-height: 140%;
|
|
3562
|
+
}
|
|
3563
|
+
.Layer__DetailedTable__row {
|
|
3564
|
+
border-radius: 2px;
|
|
3565
|
+
background: transparent;
|
|
3566
|
+
transition: background-color 300ms ease-out;
|
|
3567
|
+
}
|
|
3568
|
+
.Layer__DetailedTable__row.active {
|
|
3569
|
+
background: var(--color-base-50);
|
|
3570
|
+
}
|
|
3571
|
+
.Layer__DetailedTable__SortableColumn--value, .Layer__DetailedTable__Column--value {
|
|
3572
|
+
text-align: right;
|
|
3573
|
+
}
|
|
3574
|
+
.Layer__DetailedTable__sortArrows {
|
|
3575
|
+
position: relative;
|
|
3576
|
+
top: 1px;
|
|
3577
|
+
}
|
|
3578
|
+
.Layer__DetailedTable__sortArrows .Layer__SortArrows__DescArrow,
|
|
3579
|
+
.Layer__DetailedTable__sortArrows .Layer__SortArrows__AscArrow {
|
|
3580
|
+
stroke: var(--color-base-500);
|
|
3581
|
+
}
|
|
3582
|
+
.Layer__DetailedTable__SortableColumn--sortdesc .Layer__DetailedTable__sortArrows .Layer__SortArrows__DescArrow {
|
|
3583
|
+
stroke: var(--color-base-1000);
|
|
3584
|
+
}
|
|
3585
|
+
.Layer__DetailedTable__SortableColumn--sortasc .Layer__DetailedTable__sortArrows .Layer__SortArrows__AscArrow {
|
|
3586
|
+
stroke: var(--color-base-1000);
|
|
3587
|
+
}
|
|
3588
|
+
|
|
3589
|
+
@container (max-width: 1023px) and (min-width: 768px) {
|
|
3590
|
+
.Layer__DetailedTable {
|
|
3591
|
+
display: flex;
|
|
3592
|
+
flex: 1;
|
|
3593
|
+
flex-direction: column;
|
|
3594
|
+
}
|
|
3595
|
+
}
|
|
3596
|
+
@container (max-width: 767px) {
|
|
3597
|
+
.Layer__DetailedTable {
|
|
3598
|
+
width: 100%;
|
|
3599
|
+
padding-inline: var(--spacing-md);
|
|
3600
|
+
}
|
|
3452
3601
|
}.Layer__ProfitAndLossDetailReport {
|
|
3453
3602
|
--pnl-detail-table-cols:
|
|
3454
3603
|
minmax(7.5rem, 8%)
|
|
@@ -4569,29 +4718,93 @@
|
|
|
4569
4718
|
box-sizing: border-box;
|
|
4570
4719
|
width: clamp(48rem, 100%, 1406px);
|
|
4571
4720
|
container-type: inline-size;
|
|
4721
|
+
}.Layer__UI__Tree {
|
|
4722
|
+
display: flex;
|
|
4723
|
+
flex-direction: column;
|
|
4724
|
+
outline: none;
|
|
4725
|
+
}
|
|
4726
|
+
|
|
4727
|
+
.Layer__UI__TreeItem {
|
|
4728
|
+
outline: none;
|
|
4729
|
+
}.Layer__TreeNavigation .Layer__UI__TreeItem {
|
|
4730
|
+
position: relative;
|
|
4731
|
+
align-content: center;
|
|
4732
|
+
height: var(--spacing-5xl);
|
|
4733
|
+
padding-inline-start: calc(var(--spacing-sm) * (var(--tree-item-level) - 1) + var(--spacing-md) * var(--tree-item-level));
|
|
4734
|
+
padding-inline-end: var(--spacing-md);
|
|
4735
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
4736
|
+
cursor: pointer;
|
|
4737
|
+
}
|
|
4738
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem .Layer__TreeNavigation__Check {
|
|
4739
|
+
visibility: hidden;
|
|
4740
|
+
}
|
|
4741
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem[aria-level="1"] {
|
|
4742
|
+
background-color: var(--color-base-0);
|
|
4743
|
+
}
|
|
4744
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem[aria-level="2"] {
|
|
4745
|
+
background-color: var(--color-base-50);
|
|
4746
|
+
}
|
|
4747
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem[data-hovered] {
|
|
4748
|
+
background-color: var(--color-base-100);
|
|
4749
|
+
}
|
|
4750
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem[data-selected] {
|
|
4751
|
+
font-weight: var(--font-weight-bold);
|
|
4752
|
+
}
|
|
4753
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem[data-selected]::after {
|
|
4754
|
+
content: "";
|
|
4755
|
+
position: absolute;
|
|
4756
|
+
top: 0;
|
|
4757
|
+
right: 0;
|
|
4758
|
+
bottom: 0;
|
|
4759
|
+
width: 2px;
|
|
4760
|
+
background: black;
|
|
4761
|
+
}
|
|
4762
|
+
.Layer__TreeNavigation .Layer__UI__TreeItem[data-selected] .Layer__TreeNavigation__Check {
|
|
4763
|
+
visibility: visible;
|
|
4764
|
+
}
|
|
4765
|
+
|
|
4766
|
+
.Layer__TreeNavigation__Chevron {
|
|
4767
|
+
padding: 0;
|
|
4768
|
+
border: none;
|
|
4769
|
+
background: transparent;
|
|
4770
|
+
transition: transform var(--transition-speed) ease;
|
|
4771
|
+
}
|
|
4772
|
+
|
|
4773
|
+
.Layer__UI__TreeItem[data-expanded] .Layer__TreeNavigation__Chevron {
|
|
4774
|
+
transform: rotate(90deg);
|
|
4775
|
+
}.Layer__TreeNavigationSkeleton {
|
|
4776
|
+
width: 100%;
|
|
4777
|
+
}
|
|
4778
|
+
.Layer__TreeNavigationSkeleton__Group, .Layer__TreeNavigationSkeleton__Leaf {
|
|
4779
|
+
height: var(--spacing-5xl);
|
|
4780
|
+
padding-inline: var(--spacing-md);
|
|
4781
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
4782
|
+
}
|
|
4783
|
+
.Layer__TreeNavigationSkeleton__Leaf {
|
|
4784
|
+
padding-inline-start: calc(var(--spacing-lg) + var(--spacing-md));
|
|
4785
|
+
background-color: var(--color-base-50);
|
|
4786
|
+
}.Layer__ReportsNavigation__GroupLabel {
|
|
4787
|
+
min-width: 0;
|
|
4788
|
+
}
|
|
4789
|
+
|
|
4790
|
+
.Layer__ReportsNavigation__GroupIcon {
|
|
4791
|
+
color: var(--color-base-500);
|
|
4572
4792
|
}.Layer__ExpandButton {
|
|
4573
4793
|
height: 16px;
|
|
4574
4794
|
min-width: 16px;
|
|
4575
|
-
transition: transform 0.1s ease-in-out;
|
|
4576
4795
|
}
|
|
4577
4796
|
.Layer__ExpandButton--collapsed {
|
|
4578
|
-
transform: rotate(
|
|
4797
|
+
transform: rotate(-90deg);
|
|
4579
4798
|
}
|
|
4580
4799
|
.Layer__ExpandButton--expanded {
|
|
4581
|
-
transform: rotate(
|
|
4800
|
+
transform: rotate(0deg);
|
|
4582
4801
|
}.Layer__UI__Table__UnifiedReport {
|
|
4583
4802
|
min-width: 100%;
|
|
4584
4803
|
}
|
|
4585
4804
|
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Column,
|
|
4586
4805
|
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Cell {
|
|
4587
4806
|
display: table-cell;
|
|
4588
|
-
text-align: end;
|
|
4589
|
-
}
|
|
4590
|
-
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Column__UnifiedReport--displayName,
|
|
4591
|
-
.Layer__UI__Table__UnifiedReport .Layer__UI__Table-Cell__UnifiedReport--displayName {
|
|
4592
|
-
text-align: start;
|
|
4593
4807
|
}.Layer__UnifiedReport__Header {
|
|
4594
|
-
height: 4.75rem;
|
|
4595
4808
|
border-bottom: 1px solid var(--border-color);
|
|
4596
4809
|
}
|
|
4597
4810
|
@container (width <= 768px) {
|
|
@@ -4620,25 +4833,52 @@
|
|
|
4620
4833
|
}.Layer__UnifiedReport {
|
|
4621
4834
|
overflow: hidden;
|
|
4622
4835
|
min-width: clamp(24rem, 100%, 1406px);
|
|
4836
|
+
}
|
|
4837
|
+
.Layer__UnifiedReport .Layer__view-main.Layer__view-main {
|
|
4838
|
+
padding: 0;
|
|
4839
|
+
}
|
|
4840
|
+
|
|
4841
|
+
.Layer__UnifiedReport__Sidebar {
|
|
4842
|
+
flex-shrink: 0;
|
|
4843
|
+
width: 18rem;
|
|
4844
|
+
border-right: 1px solid var(--color-base-300);
|
|
4845
|
+
}
|
|
4846
|
+
|
|
4847
|
+
.Layer__UnifiedReport__Content {
|
|
4848
|
+
min-width: 0;
|
|
4623
4849
|
}.Layer__AddToCalendar__CalendarIcon {
|
|
4624
4850
|
height: 1rem;
|
|
4625
4851
|
width: 1rem;
|
|
4626
|
-
}.
|
|
4852
|
+
}.Layer__CallBooking {
|
|
4627
4853
|
padding: var(--spacing-lg);
|
|
4628
4854
|
}
|
|
4629
|
-
.
|
|
4855
|
+
.Layer__CallBooking .Layer__CallBooking__Icon {
|
|
4856
|
+
display: flex;
|
|
4857
|
+
align-items: center;
|
|
4858
|
+
justify-content: center;
|
|
4859
|
+
height: 3rem;
|
|
4860
|
+
width: 3rem;
|
|
4861
|
+
border-radius: 50%;
|
|
4862
|
+
background-color: var(--color-base-50);
|
|
4863
|
+
color: var(--color-base-900);
|
|
4864
|
+
}
|
|
4865
|
+
.Layer__CallBooking .Layer__CallBooking__DetailRow {
|
|
4866
|
+
display: grid;
|
|
4867
|
+
grid-template-columns: 16px 72px 1fr;
|
|
4868
|
+
column-gap: var(--spacing-sm);
|
|
4869
|
+
align-items: center;
|
|
4630
4870
|
width: 100%;
|
|
4631
4871
|
}
|
|
4632
|
-
.
|
|
4633
|
-
position: relative;
|
|
4872
|
+
.Layer__CallBooking .Layer__CallBooking__Actions {
|
|
4634
4873
|
width: 100%;
|
|
4635
4874
|
}
|
|
4636
|
-
.
|
|
4637
|
-
|
|
4875
|
+
.Layer__CallBooking .Layer__CallBooking__Actions > * {
|
|
4876
|
+
flex: 1;
|
|
4877
|
+
min-width: 0;
|
|
4638
4878
|
}
|
|
4639
4879
|
|
|
4640
4880
|
@media (width <= 480px) {
|
|
4641
|
-
.
|
|
4881
|
+
.Layer__CallBooking {
|
|
4642
4882
|
padding: var(--spacing-md);
|
|
4643
4883
|
}
|
|
4644
4884
|
}.Layer__YearPicker {
|
|
@@ -4772,6 +5012,40 @@
|
|
|
4772
5012
|
}
|
|
4773
5013
|
.Layer__project-view .Layer__select__menu {
|
|
4774
5014
|
z-index: 2;
|
|
5015
|
+
}.Layer__FilingStatusComboBox {
|
|
5016
|
+
display: grid;
|
|
5017
|
+
grid-template-areas: "label" "input";
|
|
5018
|
+
gap: var(--spacing-3xs);
|
|
5019
|
+
}
|
|
5020
|
+
.Layer__FilingStatusComboBox--inline {
|
|
5021
|
+
grid-template-areas: "label input";
|
|
5022
|
+
gap: 0;
|
|
5023
|
+
align-items: center;
|
|
5024
|
+
}.Layer__UsStateComboBox {
|
|
5025
|
+
display: grid;
|
|
5026
|
+
grid-template-areas: "label" "input";
|
|
5027
|
+
gap: var(--spacing-3xs);
|
|
5028
|
+
}
|
|
5029
|
+
.Layer__UsStateComboBox--inline {
|
|
5030
|
+
grid-template-areas: "label input";
|
|
5031
|
+
gap: 0;
|
|
5032
|
+
align-items: center;
|
|
5033
|
+
}.Layer__TaxProfileForm {
|
|
5034
|
+
display: flex;
|
|
5035
|
+
flex-direction: column;
|
|
5036
|
+
width: 100%;
|
|
5037
|
+
}
|
|
5038
|
+
.Layer__TaxProfileForm__Content .Layer__Checkbox > .Layer__Span {
|
|
5039
|
+
margin-inline-start: var(--spacing-xs);
|
|
5040
|
+
}
|
|
5041
|
+
.Layer__TaxProfileForm .Layer__TaxProfileForm__Section {
|
|
5042
|
+
padding: var(--spacing-md);
|
|
5043
|
+
border-radius: var(--border-radius-sm);
|
|
5044
|
+
border: 1px solid var(--border-color);
|
|
5045
|
+
background: var(--color-base-50);
|
|
5046
|
+
}
|
|
5047
|
+
.Layer__TaxProfileForm .Layer__TaxProfileForm__Field--desktop {
|
|
5048
|
+
grid-template-columns: 16rem minmax(auto, 24rem);
|
|
4775
5049
|
}.Layer__ExpandableCard {
|
|
4776
5050
|
border-radius: 0;
|
|
4777
5051
|
border: none;
|
|
@@ -4855,120 +5129,711 @@
|
|
|
4855
5129
|
align-items: baseline;
|
|
4856
5130
|
width: fit-content;
|
|
4857
5131
|
}
|
|
4858
|
-
.Layer__TaxSummaryCard__Grid > .Layer__Span {
|
|
4859
|
-
text-align: right;
|
|
5132
|
+
.Layer__TaxSummaryCard__Grid > .Layer__Span {
|
|
5133
|
+
text-align: right;
|
|
5134
|
+
}
|
|
5135
|
+
.Layer__TaxSummaryCard__Grid--mobile {
|
|
5136
|
+
grid-template-columns: 1fr auto 1fr auto 1fr;
|
|
5137
|
+
column-gap: var(--spacing-sm);
|
|
5138
|
+
width: 100%;
|
|
5139
|
+
}
|
|
5140
|
+
.Layer__TaxSummaryCard__SectionGroup {
|
|
5141
|
+
display: contents;
|
|
5142
|
+
}
|
|
5143
|
+
.Layer__TaxSummaryCard__SectionGroup > .Layer__Span:first-child {
|
|
5144
|
+
grid-column: 1/-1;
|
|
5145
|
+
text-align: left;
|
|
5146
|
+
}
|
|
5147
|
+
.Layer__TaxSummaryCard__SectionGroup:not(:first-child) > .Layer__Span:first-child {
|
|
5148
|
+
padding-block-start: var(--spacing-md);
|
|
5149
|
+
margin-block-start: var(--spacing-3xs);
|
|
5150
|
+
border-block-start: 1px solid var(--color-base-100);
|
|
5151
|
+
}
|
|
5152
|
+
.Layer__TaxSummaryCard--mobile {
|
|
5153
|
+
width: 100%;
|
|
5154
|
+
}
|
|
5155
|
+
.Layer__TaxSummaryCard__OverviewCard {
|
|
5156
|
+
padding: var(--spacing-lg);
|
|
5157
|
+
}
|
|
5158
|
+
.Layer__TaxSummaryCard__BreakdownCard {
|
|
5159
|
+
padding: var(--spacing-lg);
|
|
5160
|
+
}.Layer__FullYearProjectionComboBox__Container {
|
|
5161
|
+
inline-size: 11rem;
|
|
5162
|
+
max-inline-size: 11rem;
|
|
5163
|
+
}
|
|
5164
|
+
@container (max-width: 500px) {
|
|
5165
|
+
.Layer__FullYearProjectionComboBox__Container {
|
|
5166
|
+
inline-size: 100%;
|
|
5167
|
+
max-inline-size: 100%;
|
|
5168
|
+
}
|
|
5169
|
+
}@container (max-width: 500px) {
|
|
5170
|
+
.Layer__TaxEstimatesHeader.Layer__TaxEstimatesHeader {
|
|
5171
|
+
flex-direction: column;
|
|
5172
|
+
align-items: flex-start;
|
|
5173
|
+
}
|
|
5174
|
+
.Layer__TaxEstimatesHeader__ComboBoxContainer {
|
|
5175
|
+
width: 100%;
|
|
5176
|
+
}
|
|
5177
|
+
}.Layer__TaxDetails--mobile .Layer__TaxSummaryCard--mobile > .Layer__card,
|
|
5178
|
+
.Layer__TaxDetails--mobile .Layer__TaxDetails__ExpandableCardsWrapper {
|
|
5179
|
+
border: 1px solid var(--color-base-200);
|
|
5180
|
+
box-shadow: none;
|
|
5181
|
+
}
|
|
5182
|
+
|
|
5183
|
+
.Layer__TaxDetails__ExpandableCardsWrapper {
|
|
5184
|
+
overflow: hidden;
|
|
5185
|
+
border-radius: var(--spacing-sm);
|
|
5186
|
+
}.Layer__SummaryCard__ContainerHeader {
|
|
5187
|
+
box-sizing: border-box;
|
|
5188
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
5189
|
+
}
|
|
5190
|
+
|
|
5191
|
+
.Layer__TaxEstimatesSummaryCard__Container {
|
|
5192
|
+
container-type: inline-size;
|
|
5193
|
+
min-width: 0;
|
|
5194
|
+
}
|
|
5195
|
+
|
|
5196
|
+
.Layer__TaxEstimatesSummaryCard {
|
|
5197
|
+
min-width: 0;
|
|
5198
|
+
}
|
|
5199
|
+
.Layer__TaxEstimatesSummaryCard .Layer__DetailedChart {
|
|
5200
|
+
height: 12rem;
|
|
5201
|
+
max-width: 18rem;
|
|
5202
|
+
}
|
|
5203
|
+
@media (width >= 760px) {
|
|
5204
|
+
.Layer__TaxEstimatesSummaryCard .Layer__DetailedChart {
|
|
5205
|
+
width: 18rem;
|
|
5206
|
+
}
|
|
5207
|
+
}
|
|
5208
|
+
.Layer__TaxEstimatesSummaryCard.Layer__card {
|
|
5209
|
+
gap: var(--spacing-lg);
|
|
5210
|
+
padding: var(--spacing-lg);
|
|
5211
|
+
border: 1px solid var(--color-base-200);
|
|
5212
|
+
box-shadow: none;
|
|
5213
|
+
}
|
|
5214
|
+
.Layer__TaxEstimatesSummaryCard__Content {
|
|
5215
|
+
justify-content: space-between;
|
|
5216
|
+
min-width: 0;
|
|
5217
|
+
}
|
|
5218
|
+
.Layer__TaxEstimatesSummaryCard__Content--mobile {
|
|
5219
|
+
align-items: center;
|
|
5220
|
+
}
|
|
5221
|
+
.Layer__TaxEstimatesSummaryCard__Header, .Layer__TaxEstimatesSummaryCard__Body {
|
|
5222
|
+
min-width: 0;
|
|
5223
|
+
}
|
|
5224
|
+
.Layer__TaxEstimatesSummaryCard--summaryCard.Layer__card {
|
|
5225
|
+
gap: 0;
|
|
5226
|
+
width: auto;
|
|
5227
|
+
max-width: 100%;
|
|
5228
|
+
padding: 0;
|
|
5229
|
+
}
|
|
5230
|
+
.Layer__TaxEstimatesSummaryCard--summaryCard .Layer__TaxEstimatesSummaryCard__Header {
|
|
5231
|
+
padding: var(--spacing-lg);
|
|
5232
|
+
}
|
|
5233
|
+
.Layer__TaxEstimatesSummaryCard--summaryCard .Layer__TaxEstimatesSummaryCard__Content {
|
|
5234
|
+
align-items: center;
|
|
5235
|
+
}
|
|
5236
|
+
|
|
5237
|
+
@media (width >= 760px) {
|
|
5238
|
+
.Layer__card.Layer__TaxEstimatesSummaryCard {
|
|
5239
|
+
border-radius: 0;
|
|
5240
|
+
border-right: none;
|
|
5241
|
+
border-bottom: none;
|
|
5242
|
+
border-left: none;
|
|
5243
|
+
}
|
|
5244
|
+
}.Layer__MetricRow {
|
|
5245
|
+
min-block-size: 2.5rem;
|
|
5246
|
+
}
|
|
5247
|
+
|
|
5248
|
+
.Layer__MetricCard {
|
|
5249
|
+
min-width: 0;
|
|
5250
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
5251
|
+
border-radius: var(--border-radius-xs);
|
|
5252
|
+
background-color: var(--color-base-50);
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5255
|
+
.Layer__MetricCard__Label {
|
|
5256
|
+
flex-shrink: 0;
|
|
5257
|
+
white-space: nowrap;
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5260
|
+
.Layer__MetricCard__Meter {
|
|
5261
|
+
flex: 1;
|
|
5262
|
+
min-width: 0;
|
|
5263
|
+
}
|
|
5264
|
+
|
|
5265
|
+
.Layer__MetricRow__Value {
|
|
5266
|
+
flex: 0 0 56%;
|
|
5267
|
+
justify-content: flex-end;
|
|
5268
|
+
min-width: 0;
|
|
5269
|
+
}
|
|
5270
|
+
|
|
5271
|
+
.Layer__MetricCard .Layer__MoneySpan {
|
|
5272
|
+
flex-shrink: 0;
|
|
5273
|
+
}
|
|
5274
|
+
|
|
5275
|
+
@container (max-width: 720px) {
|
|
5276
|
+
.Layer__MetricRow,
|
|
5277
|
+
.Layer__MetricRow__Value {
|
|
5278
|
+
flex-direction: column;
|
|
5279
|
+
align-items: stretch;
|
|
5280
|
+
}
|
|
5281
|
+
.Layer__MetricRow__Value {
|
|
5282
|
+
flex-basis: auto;
|
|
5283
|
+
}
|
|
5284
|
+
}.Layer__TaxOverview__Card {
|
|
5285
|
+
--color-tax-overview-income-meter-fill: #6d3cc8;
|
|
5286
|
+
--color-tax-overview-deductions-meter-fill: #1c7e9a;
|
|
5287
|
+
--color-tax-overview-taxable-income-meter-fill: #3b9c63;
|
|
5288
|
+
--color-tax-overview-unknown-meter-fill: var(--color-base-500);
|
|
5289
|
+
gap: var(--spacing-lg);
|
|
5290
|
+
padding: var(--spacing-lg);
|
|
5291
|
+
}
|
|
5292
|
+
.Layer__TaxOverview__Card .Layer__card {
|
|
5293
|
+
border: 1px solid var(--color-base-200);
|
|
5294
|
+
box-shadow: none;
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
.Layer__TaxOverview__Meter {
|
|
5298
|
+
flex: 1;
|
|
5299
|
+
min-width: 9rem;
|
|
5300
|
+
}
|
|
5301
|
+
|
|
5302
|
+
.Layer__TaxOverview__Meter__track {
|
|
5303
|
+
fill: var(--color-base-100);
|
|
5304
|
+
}
|
|
5305
|
+
|
|
5306
|
+
.Layer__TaxOverview__IncomeMeter.Layer__TaxOverview__Meter__fill {
|
|
5307
|
+
fill: var(--color-tax-overview-income-meter-fill);
|
|
5308
|
+
}
|
|
5309
|
+
|
|
5310
|
+
.Layer__TaxOverview__DeductionsMeter.Layer__TaxOverview__Meter__fill {
|
|
5311
|
+
fill: var(--color-tax-overview-deductions-meter-fill);
|
|
5312
|
+
}
|
|
5313
|
+
|
|
5314
|
+
.Layer__TaxOverview__TaxableIncomeMeter.Layer__TaxOverview__Meter__fill {
|
|
5315
|
+
fill: var(--color-tax-overview-taxable-income-meter-fill);
|
|
5316
|
+
}
|
|
5317
|
+
|
|
5318
|
+
.Layer__TaxOverview__UnknownMetricMeter.Layer__TaxOverview__Meter__fill {
|
|
5319
|
+
fill: var(--color-tax-overview-unknown-meter-fill);
|
|
5320
|
+
}
|
|
5321
|
+
|
|
5322
|
+
@container (max-width: 720px) {
|
|
5323
|
+
.Layer__TaxOverview__Card {
|
|
5324
|
+
gap: var(--spacing-md);
|
|
5325
|
+
padding: 0;
|
|
5326
|
+
}
|
|
5327
|
+
}
|
|
5328
|
+
.Layer__TaxOverview__Card__MetricRow--mobile {
|
|
5329
|
+
gap: var(--spacing-sm);
|
|
5330
|
+
padding: var(--spacing-sm);
|
|
5331
|
+
}
|
|
5332
|
+
|
|
5333
|
+
.Layer__MetricCard .Layer__TaxOverview__Meter {
|
|
5334
|
+
width: 100%;
|
|
5335
|
+
min-width: 0;
|
|
5336
|
+
}.Layer__TaxOverview {
|
|
5337
|
+
inline-size: min(100%, 1406px);
|
|
5338
|
+
container-type: inline-size;
|
|
5339
|
+
}.Layer__TaxPaymentsMobileList .Layer__TaxPayments__ErrorState,
|
|
5340
|
+
.Layer__TaxPaymentsMobileList .Layer__TaxPayments__EmptyState {
|
|
5341
|
+
padding: var(--spacing-sm);
|
|
5342
|
+
padding-top: var(--spacing-lg);
|
|
5343
|
+
border-radius: var(--border-radius-sm);
|
|
5344
|
+
border: 1px solid var(--border-color);
|
|
5345
|
+
background-color: var(--color-base-0);
|
|
5346
|
+
}.Layer__UI__Table__TaxPaymentsTable {
|
|
5347
|
+
width: 100%;
|
|
5348
|
+
table-layout: fixed;
|
|
5349
|
+
}
|
|
5350
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Row,
|
|
5351
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-TableHeader > tr {
|
|
5352
|
+
display: grid;
|
|
5353
|
+
grid-template-columns: minmax(8rem, 24%) repeat(4, minmax(6rem, 19%));
|
|
5354
|
+
}
|
|
5355
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Column__TaxPaymentsTable--RolledOverFromPrevious, .Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Column__TaxPaymentsTable--RemainingBalance, .Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Column__TaxPaymentsTable--Estimated, .Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Column__TaxPaymentsTable--Paid,
|
|
5356
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--RolledOverFromPrevious,
|
|
5357
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--RemainingBalance,
|
|
5358
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--Estimated,
|
|
5359
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--Paid {
|
|
5360
|
+
justify-content: flex-end;
|
|
5361
|
+
text-align: right;
|
|
5362
|
+
}
|
|
5363
|
+
.Layer__UI__Table__TaxPaymentsTable .Layer__DataTable__EmptyState__Row {
|
|
5364
|
+
background-color: var(--color-base-0);
|
|
5365
|
+
}.Layer__TaxEstimates__TaxBannerWrapper {
|
|
5366
|
+
inline-size: min(100%, 1406px);
|
|
5367
|
+
}.Layer__TimeTrackingServicesDrawer {
|
|
5368
|
+
box-sizing: border-box;
|
|
5369
|
+
}
|
|
5370
|
+
|
|
5371
|
+
.Layer__TimeTrackingServicesDrawer__tabs .Layer__UI__Toggle[data-size=xsmall] {
|
|
5372
|
+
height: auto;
|
|
5373
|
+
padding: 2px;
|
|
5374
|
+
border-radius: var(--border-radius-2xs);
|
|
5375
|
+
}
|
|
5376
|
+
.Layer__TimeTrackingServicesDrawer__tabs .Layer__UI__Toggle[data-size=xsmall] .Layer__UI__ToggleOption {
|
|
5377
|
+
height: 26px;
|
|
5378
|
+
padding: 4px 12px;
|
|
5379
|
+
border-radius: var(--border-radius-2xs);
|
|
5380
|
+
}
|
|
5381
|
+
.Layer__TimeTrackingServicesDrawer__tabs .Layer__UI__Toggle[data-size=xsmall] .Layer__UI__ToggleOption-SelectionIndicator {
|
|
5382
|
+
border-radius: var(--border-radius-2xs);
|
|
5383
|
+
}
|
|
5384
|
+
|
|
5385
|
+
.Layer__TimeTrackingServicesDrawer__addWrap {
|
|
5386
|
+
overflow: hidden;
|
|
5387
|
+
border-radius: var(--border-radius-2xs);
|
|
5388
|
+
border: 1px solid var(--border-color);
|
|
5389
|
+
}
|
|
5390
|
+
|
|
5391
|
+
.Layer__TimeTrackingServicesDrawer__accordion {
|
|
5392
|
+
overflow: hidden;
|
|
5393
|
+
border-radius: var(--border-radius-2xs);
|
|
5394
|
+
border: 1px solid var(--border-color);
|
|
5395
|
+
}
|
|
5396
|
+
.Layer__TimeTrackingServicesDrawer__accordion .Layer__ExpandableCard:first-child {
|
|
5397
|
+
border-top: none;
|
|
5398
|
+
}
|
|
5399
|
+
|
|
5400
|
+
.Layer__TimeTrackingServicesDrawer__archivedList {
|
|
5401
|
+
overflow: hidden;
|
|
5402
|
+
border-radius: var(--border-radius-2xs);
|
|
5403
|
+
border: 1px solid var(--border-color);
|
|
5404
|
+
}
|
|
5405
|
+
|
|
5406
|
+
.Layer__TimeTrackingServicesDrawer__archivedRow {
|
|
5407
|
+
box-sizing: border-box;
|
|
5408
|
+
border-block-start: 1px solid var(--border-color);
|
|
5409
|
+
background-color: var(--color-base-0);
|
|
5410
|
+
}
|
|
5411
|
+
.Layer__TimeTrackingServicesDrawer__archivedRow:first-child {
|
|
5412
|
+
border-block-start: none;
|
|
5413
|
+
}
|
|
5414
|
+
.Layer__TimeTrackingServicesDrawer__archivedRow .Layer__UI__Button {
|
|
5415
|
+
gap: var(--spacing-2xs);
|
|
5416
|
+
padding-inline: var(--spacing-sm);
|
|
5417
|
+
}
|
|
5418
|
+
|
|
5419
|
+
.Layer__TimeTrackingServicesDrawer__rowName {
|
|
5420
|
+
flex: 1;
|
|
5421
|
+
min-width: 0;
|
|
5422
|
+
}
|
|
5423
|
+
|
|
5424
|
+
.Layer__TimeTrackingServicesDrawer__rowRate {
|
|
5425
|
+
flex-shrink: 0;
|
|
5426
|
+
}
|
|
5427
|
+
|
|
5428
|
+
.Layer__TimeTrackingServicesDrawer__addCard {
|
|
5429
|
+
box-sizing: border-box;
|
|
5430
|
+
background-color: var(--bg-subtle);
|
|
5431
|
+
}
|
|
5432
|
+
|
|
5433
|
+
.Layer__TimeTrackingServicesDrawer__editForm {
|
|
5434
|
+
box-sizing: border-box;
|
|
5435
|
+
margin-inline: calc(-1 * var(--spacing-md));
|
|
5436
|
+
background-color: var(--bg-subtle);
|
|
5437
|
+
border-block-start: 1px solid var(--color-base-300);
|
|
5438
|
+
}
|
|
5439
|
+
|
|
5440
|
+
.Layer__TimeTrackingServicesDrawer__rateField {
|
|
5441
|
+
display: grid;
|
|
5442
|
+
gap: var(--spacing-3xs);
|
|
5443
|
+
}.Layer__TimeEntryServiceSelector {
|
|
5444
|
+
display: grid;
|
|
5445
|
+
grid-template-areas: "label" "input";
|
|
5446
|
+
gap: var(--spacing-3xs);
|
|
5447
|
+
}
|
|
5448
|
+
.Layer__TimeEntryServiceSelector--inline {
|
|
5449
|
+
grid-template-areas: "label input";
|
|
5450
|
+
gap: 0;
|
|
5451
|
+
align-items: center;
|
|
5452
|
+
}.Layer__component-container.Layer__ActiveTimeTracker {
|
|
5453
|
+
--border-color: #000;
|
|
5454
|
+
--bg-color: #000;
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
.Layer__ActiveTimeTracker__Main {
|
|
5458
|
+
padding-block: var(--spacing-xs);
|
|
5459
|
+
padding-inline: var(--spacing-md);
|
|
5460
|
+
}
|
|
5461
|
+
|
|
5462
|
+
.Layer__ActiveTimeTracker__Controls {
|
|
5463
|
+
flex: 1;
|
|
5464
|
+
min-inline-size: 0;
|
|
5465
|
+
}
|
|
5466
|
+
|
|
5467
|
+
.Layer__ActiveTimeTracker__InlineFields {
|
|
5468
|
+
flex: 1;
|
|
5469
|
+
min-inline-size: 0;
|
|
5470
|
+
}
|
|
5471
|
+
|
|
5472
|
+
.Layer__ActiveTimeTracker__Timer {
|
|
5473
|
+
min-inline-size: 10rem;
|
|
5474
|
+
}
|
|
5475
|
+
|
|
5476
|
+
.Layer__ActiveTimeTracker__TimerDot {
|
|
5477
|
+
block-size: 0.5rem;
|
|
5478
|
+
inline-size: 0.5rem;
|
|
5479
|
+
border-radius: 50%;
|
|
5480
|
+
background-color: var(--color-info-success);
|
|
5481
|
+
}
|
|
5482
|
+
|
|
5483
|
+
.Layer__ActiveTimeTracker__TimerValue {
|
|
5484
|
+
font-size: 1.75rem;
|
|
5485
|
+
line-height: 1;
|
|
5486
|
+
color: var(--color-base-0);
|
|
5487
|
+
font-variant-numeric: tabular-nums;
|
|
5488
|
+
letter-spacing: 0.02em;
|
|
5489
|
+
}
|
|
5490
|
+
|
|
5491
|
+
.Layer__ActiveTimeTracker__Actions {
|
|
5492
|
+
flex-shrink: 0;
|
|
5493
|
+
flex-wrap: wrap;
|
|
5494
|
+
}
|
|
5495
|
+
.Layer__ActiveTimeTracker__Actions .Layer__UI__Button[data-variant=text] {
|
|
5496
|
+
color: var(--color-base-300);
|
|
5497
|
+
}
|
|
5498
|
+
|
|
5499
|
+
.Layer__ActiveTimeTracker__DrawerContent {
|
|
5500
|
+
padding-block-end: var(--spacing-lg);
|
|
5501
|
+
padding-inline: var(--spacing-lg);
|
|
5502
|
+
}
|
|
5503
|
+
|
|
5504
|
+
.Layer__ActiveTimeTracker__DurationValue {
|
|
5505
|
+
font-size: var(--text-heading-3xl);
|
|
5506
|
+
font-variant-numeric: tabular-nums;
|
|
5507
|
+
line-height: 1;
|
|
5508
|
+
}
|
|
5509
|
+
|
|
5510
|
+
.Layer__ActiveTimeTracker__DurationLabel {
|
|
5511
|
+
text-transform: uppercase;
|
|
5512
|
+
}
|
|
5513
|
+
|
|
5514
|
+
.Layer__ActiveTimeTracker__Field__Service,
|
|
5515
|
+
.Layer__ActiveTimeTracker__Field__Customer,
|
|
5516
|
+
.Layer__ActiveTimeTracker__Field__Memo {
|
|
5517
|
+
grid-template-columns: 10rem auto;
|
|
5518
|
+
width: 100%;
|
|
5519
|
+
}
|
|
5520
|
+
|
|
5521
|
+
.Layer__ActiveTimeTracker__Field--inline {
|
|
5522
|
+
flex: 1 1 14rem;
|
|
5523
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5524
|
+
width: auto;
|
|
5525
|
+
min-inline-size: 0;
|
|
5526
|
+
max-inline-size: 18rem;
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5529
|
+
@container (max-width: 1100px) {
|
|
5530
|
+
.Layer__ActiveTimeTracker__Controls {
|
|
5531
|
+
flex-wrap: wrap;
|
|
5532
|
+
align-items: flex-end;
|
|
5533
|
+
inline-size: 100%;
|
|
5534
|
+
}
|
|
5535
|
+
.Layer__ActiveTimeTracker__InlineFields {
|
|
5536
|
+
flex-wrap: wrap;
|
|
5537
|
+
inline-size: 100%;
|
|
5538
|
+
}
|
|
5539
|
+
.Layer__ActiveTimeTracker__Actions {
|
|
5540
|
+
justify-content: flex-end;
|
|
5541
|
+
inline-size: 100%;
|
|
5542
|
+
}
|
|
5543
|
+
}
|
|
5544
|
+
@container (max-width: 760px) {
|
|
5545
|
+
.Layer__ActiveTimeTracker__Main[data-direction=row] {
|
|
5546
|
+
flex-direction: column;
|
|
5547
|
+
}
|
|
5548
|
+
.Layer__ActiveTimeTracker__Main[data-align=center] {
|
|
5549
|
+
align-items: flex-start;
|
|
5550
|
+
}
|
|
5551
|
+
.Layer__ActiveTimeTracker__Main[data-justify=space-between] {
|
|
5552
|
+
justify-content: flex-start;
|
|
5553
|
+
}
|
|
5554
|
+
.Layer__ActiveTimeTracker__Controls[data-direction=row] {
|
|
5555
|
+
flex-direction: column;
|
|
5556
|
+
}
|
|
5557
|
+
.Layer__ActiveTimeTracker__Controls[data-align=center] {
|
|
5558
|
+
align-items: stretch;
|
|
5559
|
+
}
|
|
5560
|
+
.Layer__ActiveTimeTracker__TimerValue {
|
|
5561
|
+
font-size: 1.5rem;
|
|
5562
|
+
}
|
|
5563
|
+
.Layer__ActiveTimeTracker__Controls {
|
|
5564
|
+
inline-size: 100%;
|
|
5565
|
+
}
|
|
5566
|
+
.Layer__ActiveTimeTracker__InlineFields[data-align=center] {
|
|
5567
|
+
align-items: stretch;
|
|
5568
|
+
}
|
|
5569
|
+
.Layer__ActiveTimeTracker__InlineFields {
|
|
5570
|
+
inline-size: 100%;
|
|
5571
|
+
}
|
|
5572
|
+
.Layer__ActiveTimeTracker__Field--inline {
|
|
5573
|
+
flex-basis: 100%;
|
|
5574
|
+
max-inline-size: 100%;
|
|
5575
|
+
}
|
|
5576
|
+
.Layer__ActiveTimeTracker__Actions {
|
|
5577
|
+
justify-content: space-between;
|
|
5578
|
+
inline-size: 100%;
|
|
5579
|
+
}
|
|
5580
|
+
}
|
|
5581
|
+
@container (min-width: 761px) {
|
|
5582
|
+
.Layer__ActiveTimeTracker__Main[data-direction=row] {
|
|
5583
|
+
flex-direction: row;
|
|
5584
|
+
}
|
|
5585
|
+
.Layer__ActiveTimeTracker__Main[data-align=center] {
|
|
5586
|
+
align-items: center;
|
|
5587
|
+
}
|
|
5588
|
+
.Layer__ActiveTimeTracker__Main[data-justify=space-between] {
|
|
5589
|
+
justify-content: space-between;
|
|
5590
|
+
}
|
|
5591
|
+
.Layer__ActiveTimeTracker__Controls[data-direction=row] {
|
|
5592
|
+
flex-direction: row;
|
|
5593
|
+
}
|
|
5594
|
+
.Layer__ActiveTimeTracker__Controls[data-align=center] {
|
|
5595
|
+
align-items: center;
|
|
5596
|
+
}
|
|
5597
|
+
.Layer__ActiveTimeTracker__Controls {
|
|
5598
|
+
flex-wrap: nowrap;
|
|
5599
|
+
inline-size: auto;
|
|
5600
|
+
}
|
|
5601
|
+
.Layer__ActiveTimeTracker__InlineFields {
|
|
5602
|
+
flex-wrap: nowrap;
|
|
5603
|
+
inline-size: auto;
|
|
5604
|
+
}
|
|
5605
|
+
.Layer__ActiveTimeTracker__Actions {
|
|
5606
|
+
justify-content: normal;
|
|
5607
|
+
inline-size: auto;
|
|
5608
|
+
}
|
|
5609
|
+
}.Layer__TimeEntriesTable__FilterCustomer,
|
|
5610
|
+
.Layer__TimeEntriesTable__FilterService {
|
|
5611
|
+
flex: 0 0 12rem;
|
|
5612
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5615
|
+
@container (max-width: 760px) {
|
|
5616
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header {
|
|
5617
|
+
height: auto;
|
|
5618
|
+
padding-block: var(--spacing-sm);
|
|
5619
|
+
}
|
|
5620
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header[data-direction=row] {
|
|
5621
|
+
flex-direction: column;
|
|
5622
|
+
gap: var(--spacing-sm);
|
|
5623
|
+
align-items: stretch;
|
|
5624
|
+
}
|
|
5625
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header > .Layer__Stack:first-child,
|
|
5626
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header > .Layer__Stack:last-child {
|
|
5627
|
+
box-sizing: border-box;
|
|
5628
|
+
inline-size: 100%;
|
|
5629
|
+
padding-inline: var(--spacing-md);
|
|
5630
|
+
}
|
|
5631
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header > .Layer__Stack:first-child {
|
|
5632
|
+
flex-direction: column;
|
|
5633
|
+
gap: var(--spacing-sm);
|
|
5634
|
+
align-items: stretch;
|
|
5635
|
+
}
|
|
5636
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header > .Layer__Stack:last-child {
|
|
5637
|
+
justify-content: flex-start;
|
|
5638
|
+
}
|
|
5639
|
+
.Layer__TimeEntriesTable .Layer__DataTableHeader__Header > .Layer__Stack:last-child > .Layer__Stack {
|
|
5640
|
+
flex-wrap: wrap;
|
|
5641
|
+
inline-size: 100%;
|
|
5642
|
+
}
|
|
5643
|
+
.Layer__TimeEntriesTable .Layer__TimeEntriesTable__Filters[data-direction=row] {
|
|
5644
|
+
flex-direction: column;
|
|
5645
|
+
gap: var(--spacing-sm);
|
|
5646
|
+
align-items: stretch;
|
|
5647
|
+
}
|
|
5648
|
+
.Layer__TimeEntriesTable .Layer__TimeEntriesTable__FilterCustomer,
|
|
5649
|
+
.Layer__TimeEntriesTable .Layer__TimeEntriesTable__FilterService {
|
|
5650
|
+
flex: 1 1 auto;
|
|
5651
|
+
}
|
|
5652
|
+
}.Layer__TimeEntriesTable {
|
|
5653
|
+
overflow: hidden;
|
|
5654
|
+
width: min(100%, 1406px);
|
|
5655
|
+
}
|
|
5656
|
+
|
|
5657
|
+
.Layer__UI__Table__TimeEntriesTable {
|
|
5658
|
+
table-layout: fixed;
|
|
5659
|
+
width: 100%;
|
|
5660
|
+
}
|
|
5661
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-Row,
|
|
5662
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-TableHeader > tr {
|
|
5663
|
+
display: grid;
|
|
5664
|
+
grid-template-columns: minmax(8rem, 1fr) minmax(7rem, 0.9fr) minmax(10rem, 1.35fr) minmax(10rem, 1.35fr) 5rem;
|
|
5665
|
+
}
|
|
5666
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-Column__TimeEntriesTable--Actions,
|
|
5667
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-Cell__TimeEntriesTable--Actions {
|
|
5668
|
+
justify-content: flex-end;
|
|
5669
|
+
}
|
|
5670
|
+
|
|
5671
|
+
@container (max-width: 760px) {
|
|
5672
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-Row,
|
|
5673
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-TableHeader > tr {
|
|
5674
|
+
grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.2fr) 4.5rem;
|
|
5675
|
+
}
|
|
5676
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-Column__TimeEntriesTable--Service,
|
|
5677
|
+
.Layer__UI__Table__TimeEntriesTable .Layer__UI__Table-Cell__TimeEntriesTable--Service {
|
|
5678
|
+
display: none;
|
|
5679
|
+
}
|
|
5680
|
+
}.Layer__TimeEntryForm {
|
|
5681
|
+
display: flex;
|
|
5682
|
+
flex-direction: column;
|
|
5683
|
+
gap: var(--spacing-sm);
|
|
5684
|
+
max-width: 44rem;
|
|
5685
|
+
padding-inline: var(--spacing-lg);
|
|
5686
|
+
}
|
|
5687
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__FormError {
|
|
5688
|
+
padding-block-end: var(--spacing-xs);
|
|
4860
5689
|
}
|
|
4861
|
-
.
|
|
4862
|
-
|
|
4863
|
-
|
|
5690
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__Field__EntryDate,
|
|
5691
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__Field__Duration,
|
|
5692
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__Field__Service,
|
|
5693
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__Field__Customer,
|
|
5694
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__Field__Memo {
|
|
5695
|
+
grid-template-columns: 10rem auto;
|
|
4864
5696
|
width: 100%;
|
|
4865
5697
|
}
|
|
4866
|
-
.
|
|
4867
|
-
|
|
5698
|
+
.Layer__TimeEntryForm .Layer__TimeEntryForm__Submit {
|
|
5699
|
+
align-items: flex-end;
|
|
5700
|
+
padding-block-start: 1rem;
|
|
5701
|
+
}.Layer__TimeTrackingStats__Content {
|
|
5702
|
+
container: time-tracking-stats/inline-size;
|
|
4868
5703
|
}
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
5704
|
+
|
|
5705
|
+
.Layer__TimeTrackingStats__TopRow {
|
|
5706
|
+
min-inline-size: 0;
|
|
4872
5707
|
}
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
|
|
5708
|
+
|
|
5709
|
+
.Layer__TimeTrackingStats__Controls {
|
|
5710
|
+
flex: 1 1 auto;
|
|
5711
|
+
justify-content: flex-end;
|
|
5712
|
+
min-inline-size: 0;
|
|
4877
5713
|
}
|
|
4878
|
-
|
|
4879
|
-
|
|
5714
|
+
|
|
5715
|
+
.Layer__TimeTrackingStats__DateSelection {
|
|
5716
|
+
flex: 0 1 30rem;
|
|
5717
|
+
min-inline-size: 0;
|
|
5718
|
+
container: time-tracking-stats-dates/inline-size;
|
|
4880
5719
|
}
|
|
4881
|
-
.
|
|
4882
|
-
|
|
5720
|
+
.Layer__TimeTrackingStats__DateSelection .Layer__GlobalDateRangeSelection {
|
|
5721
|
+
inline-size: 100%;
|
|
4883
5722
|
}
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
inline-size:
|
|
4888
|
-
max-inline-size: 11rem;
|
|
5723
|
+
|
|
5724
|
+
.Layer__TimeTrackingStats__Summary {
|
|
5725
|
+
flex: 0 0 auto;
|
|
5726
|
+
min-inline-size: 0;
|
|
4889
5727
|
}
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
}@container (max-width: 500px) {
|
|
4896
|
-
.Layer__TaxEstimatesHeader.Layer__TaxEstimatesHeader {
|
|
4897
|
-
flex-direction: column;
|
|
4898
|
-
align-items: flex-start;
|
|
4899
|
-
}
|
|
4900
|
-
.Layer__TaxEstimatesHeader__ComboBoxContainer {
|
|
4901
|
-
width: 100%;
|
|
4902
|
-
}
|
|
4903
|
-
}.Layer__TaxDetails--mobile .Layer__TaxSummaryCard--mobile > .Layer__card,
|
|
4904
|
-
.Layer__TaxDetails--mobile .Layer__TaxDetails__ExpandableCardsWrapper {
|
|
4905
|
-
border: 1px solid var(--color-base-200);
|
|
4906
|
-
box-shadow: none;
|
|
5728
|
+
|
|
5729
|
+
.Layer__TimeTrackingStats__SummaryValue {
|
|
5730
|
+
font-size: var(--text-heading);
|
|
5731
|
+
font-variant-numeric: tabular-nums;
|
|
5732
|
+
line-height: 1;
|
|
4907
5733
|
}
|
|
4908
5734
|
|
|
4909
|
-
.
|
|
4910
|
-
|
|
4911
|
-
border-radius: var(--spacing-sm);
|
|
4912
|
-
}.Layer__TaxPaymentsMobileList .Layer__TaxPayments__ErrorState,
|
|
4913
|
-
.Layer__TaxPaymentsMobileList .Layer__TaxPayments__EmptyState {
|
|
4914
|
-
padding: var(--spacing-sm);
|
|
4915
|
-
padding-top: var(--spacing-lg);
|
|
4916
|
-
border-radius: var(--border-radius-sm);
|
|
4917
|
-
border: 1px solid var(--border-color);
|
|
4918
|
-
background-color: var(--color-base-0);
|
|
4919
|
-
}.Layer__UI__Table__TaxPaymentsTable {
|
|
4920
|
-
width: 100%;
|
|
4921
|
-
table-layout: fixed;
|
|
5735
|
+
.Layer__TimeTrackingStats__Chart {
|
|
5736
|
+
border-top: 1px solid var(--color-base-300);
|
|
4922
5737
|
}
|
|
4923
|
-
|
|
4924
|
-
.
|
|
4925
|
-
|
|
4926
|
-
grid-template-columns: minmax(4rem, 10%) repeat(4, minmax(6rem, 22.5%));
|
|
5738
|
+
|
|
5739
|
+
.Layer__TimeTrackingStats__ChartBar {
|
|
5740
|
+
block-size: 1.5rem;
|
|
4927
5741
|
}
|
|
4928
|
-
.
|
|
4929
|
-
|
|
4930
|
-
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--OwedThisQuarter,
|
|
4931
|
-
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--TotalPaid,
|
|
4932
|
-
.Layer__UI__Table__TaxPaymentsTable .Layer__UI__Table-Cell__TaxPaymentsTable--Total {
|
|
4933
|
-
justify-content: flex-end;
|
|
4934
|
-
text-align: right;
|
|
5742
|
+
.Layer__TimeTrackingStats__ChartBar .recharts-responsive-container {
|
|
5743
|
+
padding: 0;
|
|
4935
5744
|
}
|
|
4936
|
-
|
|
4937
|
-
|
|
5745
|
+
|
|
5746
|
+
.Layer__TimeTrackingStats__ChartBar--empty {
|
|
5747
|
+
inline-size: 100%;
|
|
5748
|
+
border-radius: var(--border-radius-xs);
|
|
5749
|
+
background-color: var(--color-base-100);
|
|
4938
5750
|
}
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
display: grid;
|
|
4943
|
-
grid-template-areas: "label" "input";
|
|
4944
|
-
gap: var(--spacing-3xs);
|
|
5751
|
+
|
|
5752
|
+
.Layer__TimeTrackingStats__Legend {
|
|
5753
|
+
flex-wrap: wrap;
|
|
4945
5754
|
}
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
|
-
align-items: center;
|
|
4950
|
-
}.Layer__UsStateComboBox {
|
|
4951
|
-
display: grid;
|
|
4952
|
-
grid-template-areas: "label" "input";
|
|
4953
|
-
gap: var(--spacing-3xs);
|
|
5755
|
+
|
|
5756
|
+
.Layer__TimeTrackingStats__LegendItem {
|
|
5757
|
+
min-inline-size: 10rem;
|
|
4954
5758
|
}
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
display: flex;
|
|
4961
|
-
flex-direction: column;
|
|
4962
|
-
width: 100%;
|
|
5759
|
+
|
|
5760
|
+
.Layer__TimeTrackingStats__LegendSwatch {
|
|
5761
|
+
flex-shrink: 0;
|
|
5762
|
+
block-size: 0.625rem;
|
|
5763
|
+
inline-size: 0.625rem;
|
|
4963
5764
|
}
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
5765
|
+
|
|
5766
|
+
@container time-tracking-stats (max-width: 760px) {
|
|
5767
|
+
.Layer__TimeTrackingStats__TopRow[data-direction=row] {
|
|
5768
|
+
flex-direction: column;
|
|
5769
|
+
}
|
|
5770
|
+
.Layer__TimeTrackingStats__TopRow[data-align=center] {
|
|
5771
|
+
align-items: stretch;
|
|
5772
|
+
}
|
|
5773
|
+
.Layer__TimeTrackingStats__TopRow[data-justify=space-between] {
|
|
5774
|
+
justify-content: flex-start;
|
|
5775
|
+
}
|
|
5776
|
+
.Layer__TimeTrackingStats__Controls[data-direction=row] {
|
|
5777
|
+
flex-direction: column;
|
|
5778
|
+
align-items: stretch;
|
|
5779
|
+
inline-size: 100%;
|
|
5780
|
+
}
|
|
5781
|
+
.Layer__TimeTrackingStats__DateSelection {
|
|
5782
|
+
flex-basis: auto;
|
|
5783
|
+
inline-size: 100%;
|
|
5784
|
+
}
|
|
5785
|
+
.Layer__TimeTrackingStats__DateSelection .Layer__GlobalDateRangeSelection {
|
|
5786
|
+
grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
|
|
5787
|
+
inline-size: 100%;
|
|
5788
|
+
min-inline-size: 0;
|
|
5789
|
+
}
|
|
5790
|
+
.Layer__TimeTrackingStats__DateSelection .Layer__GlobalDateRangeSelection.Layer__GlobalDateRangeSelection--mobile {
|
|
5791
|
+
grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
|
|
5792
|
+
}
|
|
5793
|
+
.Layer__TimeTrackingStats__DateSelection .Layer__GlobalDateRangeSelection > * {
|
|
5794
|
+
min-inline-size: 0;
|
|
5795
|
+
}
|
|
4969
5796
|
}
|
|
4970
|
-
|
|
4971
|
-
|
|
5797
|
+
@container time-tracking-stats (max-width: 430px) {
|
|
5798
|
+
.Layer__TimeTrackingStats__DateSelection .Layer__GlobalDateRangeSelection,
|
|
5799
|
+
.Layer__TimeTrackingStats__DateSelection .Layer__GlobalDateRangeSelection.Layer__GlobalDateRangeSelection--mobile {
|
|
5800
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5801
|
+
}
|
|
5802
|
+
}
|
|
5803
|
+
@container time-tracking-stats (max-width: 1100px) {
|
|
5804
|
+
.Layer__TimeTrackingStats__Legend {
|
|
5805
|
+
flex-direction: column;
|
|
5806
|
+
gap: var(--spacing-sm);
|
|
5807
|
+
align-items: stretch;
|
|
5808
|
+
}
|
|
5809
|
+
.Layer__TimeTrackingStats__LegendItem {
|
|
5810
|
+
display: grid;
|
|
5811
|
+
grid-template-columns: minmax(0, 1fr) auto auto;
|
|
5812
|
+
row-gap: 0;
|
|
5813
|
+
column-gap: var(--spacing-sm);
|
|
5814
|
+
align-items: center;
|
|
5815
|
+
min-inline-size: 100%;
|
|
5816
|
+
}
|
|
5817
|
+
.Layer__TimeTrackingStats__LegendLabel {
|
|
5818
|
+
min-inline-size: 0;
|
|
5819
|
+
}
|
|
5820
|
+
.Layer__TimeTrackingStats__LegendLabel .Layer__UI__Text {
|
|
5821
|
+
overflow: hidden;
|
|
5822
|
+
text-overflow: ellipsis;
|
|
5823
|
+
white-space: nowrap;
|
|
5824
|
+
}
|
|
5825
|
+
.Layer__TimeTrackingStats__LegendDuration,
|
|
5826
|
+
.Layer__TimeTrackingStats__LegendPercentage {
|
|
5827
|
+
white-space: nowrap;
|
|
5828
|
+
}
|
|
5829
|
+
.Layer__TimeTrackingStats__LegendDuration {
|
|
5830
|
+
justify-self: end;
|
|
5831
|
+
}
|
|
5832
|
+
.Layer__TimeTrackingStats__LegendPercentage {
|
|
5833
|
+
justify-self: end;
|
|
5834
|
+
min-inline-size: 2.25rem;
|
|
5835
|
+
text-align: right;
|
|
5836
|
+
}
|
|
4972
5837
|
}.Layer__toasts-container {
|
|
4973
5838
|
position: fixed;
|
|
4974
5839
|
z-index: 1000;
|
|
@@ -5270,19 +6135,6 @@
|
|
|
5270
6135
|
.Layer__component *::-webkit-scrollbar-thumb:hover {
|
|
5271
6136
|
background: #999;
|
|
5272
6137
|
}
|
|
5273
|
-
.Layer__sortable-col.value-col {
|
|
5274
|
-
text-align: right;
|
|
5275
|
-
}
|
|
5276
|
-
.Layer__sortable-col .Layer__sort-arrows .desc-arrow,
|
|
5277
|
-
.Layer__sortable-col .Layer__sort-arrows .asc-arrow {
|
|
5278
|
-
stroke: var(--color-base-500);
|
|
5279
|
-
}
|
|
5280
|
-
.Layer__sortable-col.sort--desc .Layer__sort-arrows .desc-arrow {
|
|
5281
|
-
stroke: var(--color-base-1000);
|
|
5282
|
-
}
|
|
5283
|
-
.Layer__sortable-col.sort--asc .Layer__sort-arrows .asc-arrow {
|
|
5284
|
-
stroke: var(--color-base-1000);
|
|
5285
|
-
}
|
|
5286
6138
|
/* stylelint-disable-next-line keyframes-name-pattern */
|
|
5287
6139
|
@keyframes Layer__rotate {
|
|
5288
6140
|
from {
|
|
@@ -6985,7 +7837,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6985
7837
|
overflow: auto;
|
|
6986
7838
|
width: 100%;
|
|
6987
7839
|
max-width: 100%;
|
|
6988
|
-
padding: 0 var(--spacing-
|
|
7840
|
+
padding: 0 var(--spacing-lg);
|
|
6989
7841
|
border-bottom: 1px solid var(--border-color);
|
|
6990
7842
|
container-type: inline-size;
|
|
6991
7843
|
}
|
|
@@ -7000,14 +7852,14 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7000
7852
|
align-items: center;
|
|
7001
7853
|
min-height: 44px;
|
|
7002
7854
|
width: 100%;
|
|
7003
|
-
padding: var(--spacing-md)
|
|
7855
|
+
padding: var(--spacing-md) 0;
|
|
7004
7856
|
}
|
|
7005
7857
|
.Layer__view .Layer__view-header__content {
|
|
7006
7858
|
display: flex;
|
|
7007
7859
|
align-items: center;
|
|
7008
7860
|
justify-content: space-between;
|
|
7009
7861
|
width: 100%;
|
|
7010
|
-
max-width:
|
|
7862
|
+
max-width: 1406px;
|
|
7011
7863
|
}
|
|
7012
7864
|
.Layer__view .Layer__view-header--paddings .Layer__view-header__content {
|
|
7013
7865
|
padding: var(--spacing-md);
|
|
@@ -9088,6 +9940,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9088
9940
|
background-size: 200% 100%;
|
|
9089
9941
|
animation: 1.5s shine linear infinite;
|
|
9090
9942
|
}
|
|
9943
|
+
.Layer__skeleton-loader--circle {
|
|
9944
|
+
height: 100%;
|
|
9945
|
+
width: 100%;
|
|
9946
|
+
border-radius: 50%;
|
|
9947
|
+
}
|
|
9091
9948
|
.Layer__syncing-component {
|
|
9092
9949
|
display: flex;
|
|
9093
9950
|
gap: var(--spacing-md);
|
|
@@ -9265,9 +10122,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9265
10122
|
fill: var(--color-base-50);
|
|
9266
10123
|
}
|
|
9267
10124
|
}
|
|
9268
|
-
.Layer__profit-and-loss-detailed-charts__pie--border {
|
|
9269
|
-
stroke: var(--color-base-200);
|
|
9270
|
-
}
|
|
9271
10125
|
#layer-bar-stripe-pattern rect {
|
|
9272
10126
|
fill: var(--color-light);
|
|
9273
10127
|
}
|
|
@@ -9421,15 +10275,18 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
9421
10275
|
.Layer__profit-and-loss-detailed-charts__head > .Layer__text {
|
|
9422
10276
|
margin: 0;
|
|
9423
10277
|
}
|
|
10278
|
+
.Layer__ProfitAndLossDetailedCharts__DatePickerHeader--tablet {
|
|
10279
|
+
display: none;
|
|
10280
|
+
}
|
|
9424
10281
|
.Layer__profit-and-loss-detailed-charts {
|
|
9425
10282
|
width: 100%;
|
|
9426
10283
|
border-radius: var(--border-radius-sm);
|
|
9427
10284
|
background: var(--color-base-0);
|
|
9428
10285
|
}
|
|
9429
|
-
.Layer__profit-and-loss-detailed-charts .
|
|
10286
|
+
.Layer__profit-and-loss-detailed-charts .Layer__DetailedChart {
|
|
9430
10287
|
width: 100%;
|
|
9431
10288
|
}
|
|
9432
|
-
.Layer__profit-and-loss-detailed-charts .
|
|
10289
|
+
.Layer__profit-and-loss-detailed-charts .Layer__DetailedChart__container {
|
|
9433
10290
|
box-sizing: border-box;
|
|
9434
10291
|
height: 280px;
|
|
9435
10292
|
width: 100%;
|
|
@@ -9453,112 +10310,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
9453
10310
|
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__empty-chart-icon {
|
|
9454
10311
|
color: var(--color-base-400);
|
|
9455
10312
|
}
|
|
9456
|
-
.Layer__profit-and-loss-detailed-charts .pie-center-label__title,
|
|
9457
|
-
.Layer__profit-and-loss-detailed-charts .pie-center-label__share {
|
|
9458
|
-
fill: var(--color-base-600);
|
|
9459
|
-
font-size: 12px;
|
|
9460
|
-
}
|
|
9461
|
-
.Layer__profit-and-loss-detailed-charts .pie-center-label__value {
|
|
9462
|
-
fill: var(--text-color-primary);
|
|
9463
|
-
font-size: 14px;
|
|
9464
|
-
}
|
|
9465
|
-
.Layer__profit-and-loss-detailed-charts .pie-center-label__loading {
|
|
9466
|
-
fill: var(--color-base-600);
|
|
9467
|
-
font-size: 14px;
|
|
9468
|
-
}
|
|
9469
|
-
.Layer__profit-and-loss-detailed-charts .details-container {
|
|
9470
|
-
padding: var(--spacing-md);
|
|
9471
|
-
padding-top: var(--spacing-2xs);
|
|
9472
|
-
}
|
|
9473
|
-
.Layer__profit-and-loss-detailed-charts .details-container table {
|
|
9474
|
-
width: 100%;
|
|
9475
|
-
border-collapse: collapse;
|
|
9476
|
-
}
|
|
9477
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th,
|
|
9478
|
-
.Layer__profit-and-loss-detailed-charts .details-container table td {
|
|
9479
|
-
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
9480
|
-
font-size: 12px;
|
|
9481
|
-
text-align: left;
|
|
9482
|
-
}
|
|
9483
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th:first-child,
|
|
9484
|
-
.Layer__profit-and-loss-detailed-charts .details-container table td:first-child {
|
|
9485
|
-
width: 20px;
|
|
9486
|
-
padding-right: 0;
|
|
9487
|
-
}
|
|
9488
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th:last-child,
|
|
9489
|
-
.Layer__profit-and-loss-detailed-charts .details-container table td:last-child {
|
|
9490
|
-
text-align: right;
|
|
9491
|
-
}
|
|
9492
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th.percent-col,
|
|
9493
|
-
.Layer__profit-and-loss-detailed-charts .details-container table td.percent-col {
|
|
9494
|
-
width: 4ch;
|
|
9495
|
-
padding-left: 0;
|
|
9496
|
-
text-align: right;
|
|
9497
|
-
}
|
|
9498
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th {
|
|
9499
|
-
padding-bottom: var(--spacing-sm);
|
|
9500
|
-
border-bottom: 1px solid var(--color-base-300);
|
|
9501
|
-
cursor: pointer;
|
|
9502
|
-
color: var(--color-base-500);
|
|
9503
|
-
transition: color 150ms ease-out;
|
|
9504
|
-
}
|
|
9505
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th:first-child {
|
|
9506
|
-
cursor: default;
|
|
9507
|
-
}
|
|
9508
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th:hover {
|
|
9509
|
-
color: var(--color-base-800);
|
|
9510
|
-
}
|
|
9511
|
-
.Layer__profit-and-loss-detailed-charts .details-container table th.sort--asc, .Layer__profit-and-loss-detailed-charts .details-container table th.sort--desc {
|
|
9512
|
-
color: var(--color-base-1000);
|
|
9513
|
-
}
|
|
9514
|
-
.Layer__profit-and-loss-detailed-charts .details-container .Layer__sort-arrows {
|
|
9515
|
-
position: relative;
|
|
9516
|
-
top: 1px;
|
|
9517
|
-
}
|
|
9518
|
-
.Layer__profit-and-loss-detailed-charts .details-container .color-col .share-icon {
|
|
9519
|
-
height: 12px;
|
|
9520
|
-
width: 12px;
|
|
9521
|
-
border-radius: 2px;
|
|
9522
|
-
}
|
|
9523
|
-
.Layer__profit-and-loss-detailed-charts .details-container .percent-col .share-text {
|
|
9524
|
-
font-size: var(--text-sm);
|
|
9525
|
-
line-height: 140%;
|
|
9526
|
-
color: var(--color-base-600);
|
|
9527
|
-
}
|
|
9528
|
-
.Layer__profit-and-loss-detailed-charts .details-container tbody tr {
|
|
9529
|
-
height: 2.5rem;
|
|
9530
|
-
}
|
|
9531
|
-
.Layer__profit-and-loss-detailed-table__row {
|
|
9532
|
-
border-radius: 2px;
|
|
9533
|
-
background: transparent;
|
|
9534
|
-
transition: background-color 300ms ease-out;
|
|
9535
|
-
}
|
|
9536
|
-
.Layer__profit-and-loss-detailed-table__row .category-col,
|
|
9537
|
-
.Layer__profit-and-loss-detailed-table__row .value-col {
|
|
9538
|
-
color: var(--text-color-primary);
|
|
9539
|
-
}
|
|
9540
|
-
.Layer__profit-and-loss-detailed-table__row .type-col,
|
|
9541
|
-
.Layer__profit-and-loss-detailed-table__row .percent-col {
|
|
9542
|
-
color: var(--color-base-500);
|
|
9543
|
-
}
|
|
9544
|
-
.Layer__profit-and-loss-detailed-table__row.active {
|
|
9545
|
-
background: var(--color-base-50);
|
|
9546
|
-
}
|
|
9547
|
-
.Layer__profit-and-loss-detailed-table__row.active .category-col,
|
|
9548
|
-
.Layer__profit-and-loss-detailed-table__row.active .value-col,
|
|
9549
|
-
.Layer__profit-and-loss-detailed-table__row.active .type-col,
|
|
9550
|
-
.Layer__profit-and-loss-detailed-table__row.active .percent-col {
|
|
9551
|
-
color: var(--color-base-1000);
|
|
9552
|
-
}
|
|
9553
|
-
.Layer__profit-and-loss-detailed-charts__pie {
|
|
9554
|
-
transition: fill 1000ms ease-out;
|
|
9555
|
-
}
|
|
9556
|
-
.Layer__profit-and-loss-detailed-charts__pie.inactive {
|
|
9557
|
-
fill: var(--color-base-300);
|
|
9558
|
-
}
|
|
9559
|
-
.Layer__profit-and-loss-detailed-charts .header--tablet {
|
|
9560
|
-
display: none;
|
|
9561
|
-
}
|
|
9562
10313
|
@container (max-width: 1023px) {
|
|
9563
10314
|
.Layer__profit-and-loss-detailed-charts {
|
|
9564
10315
|
height: 100%;
|
|
@@ -9566,17 +10317,20 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
9566
10317
|
}
|
|
9567
10318
|
}
|
|
9568
10319
|
@container (max-width: 1023px) and (min-width: 768px) {
|
|
10320
|
+
.Layer__ProfitAndLossDetailedCharts__DatePickerHeader--tablet {
|
|
10321
|
+
display: flex;
|
|
10322
|
+
}
|
|
9569
10323
|
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content {
|
|
9570
10324
|
display: flex;
|
|
9571
10325
|
flex-direction: row;
|
|
9572
10326
|
justify-content: space-between;
|
|
9573
10327
|
}
|
|
9574
|
-
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .
|
|
10328
|
+
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .Layer__DetailedChart {
|
|
9575
10329
|
display: flex;
|
|
9576
10330
|
flex-direction: column;
|
|
9577
10331
|
max-width: 300px;
|
|
9578
10332
|
}
|
|
9579
|
-
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .
|
|
10333
|
+
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .Layer__DetailedChart__container {
|
|
9580
10334
|
max-width: 300px;
|
|
9581
10335
|
}
|
|
9582
10336
|
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .Layer__profit-and-loss-detailed-charts__empty-chart {
|
|
@@ -9587,18 +10341,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
9587
10341
|
flex: 1;
|
|
9588
10342
|
flex-direction: column;
|
|
9589
10343
|
}
|
|
9590
|
-
.Layer__profit-and-loss-detailed-charts .header--tablet {
|
|
9591
|
-
display: flex;
|
|
9592
|
-
flex-direction: column;
|
|
9593
|
-
padding-top: var(--spacing-lg);
|
|
9594
|
-
padding-left: var(--spacing-xl);
|
|
9595
|
-
}
|
|
9596
|
-
.Layer__profit-and-loss-detailed-charts .header--tablet .Layer__text {
|
|
9597
|
-
margin: 0;
|
|
9598
|
-
}
|
|
9599
|
-
.Layer__profit-and-loss-detailed-charts .header--tablet .title {
|
|
9600
|
-
font-size: 24px;
|
|
9601
|
-
}
|
|
9602
10344
|
}
|
|
9603
10345
|
@container (max-width: 767px) {
|
|
9604
10346
|
.Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content {
|