@sc-360-v2/storefront-cms-library 0.3.59 → 0.3.60
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/cart-details.scss +1 -2
- package/dist/employee-bulk-order.scss +424 -373
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/modal.scss +1 -0
- package/dist/order-status.scss +1315 -1257
- package/package.json +1 -1
|
@@ -3536,465 +3536,516 @@
|
|
|
3536
3536
|
border-radius: 6px;
|
|
3537
3537
|
padding: 16px;
|
|
3538
3538
|
color: #333333;
|
|
3539
|
-
.order
|
|
3540
|
-
border
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3539
|
+
.each-order {
|
|
3540
|
+
border: 1px solid var(--_gray-200);
|
|
3541
|
+
border-radius: 8px;
|
|
3542
|
+
padding: 16px;
|
|
3543
|
+
.order-header {
|
|
3544
|
+
border-bottom: 1px solid #eaecf0;
|
|
3545
|
+
padding-bottom: 24px;
|
|
3546
|
+
.user-info {
|
|
3547
|
+
display: flex;
|
|
3548
|
+
flex-direction: column;
|
|
3549
|
+
padding-bottom: 12px;
|
|
3550
|
+
margin-bottom: 12px;
|
|
3551
|
+
border-bottom: 1px solid var(--_gray-200);
|
|
3552
|
+
h3 {
|
|
3553
|
+
font-size: 20px;
|
|
3554
|
+
font-weight: 700;
|
|
3555
|
+
color: var(--_gray-900);
|
|
3556
|
+
line-height: 30px;
|
|
3557
|
+
margin-bottom: 6px;
|
|
3558
|
+
span {
|
|
3559
|
+
margin-left: 6px;
|
|
3560
|
+
svg {
|
|
3561
|
+
path {
|
|
3562
|
+
stroke: #475467;
|
|
3563
|
+
}
|
|
3555
3564
|
}
|
|
3556
3565
|
}
|
|
3557
3566
|
}
|
|
3558
|
-
|
|
3559
|
-
.user-meta-list {
|
|
3560
|
-
display: flex;
|
|
3561
|
-
align-items: center;
|
|
3562
|
-
gap: 12px;
|
|
3563
|
-
.meta-item {
|
|
3567
|
+
.user-meta-list {
|
|
3564
3568
|
display: flex;
|
|
3565
|
-
flex-direction: row;
|
|
3566
3569
|
align-items: center;
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3570
|
+
gap: 12px;
|
|
3571
|
+
.meta-item {
|
|
3572
|
+
display: flex;
|
|
3573
|
+
flex-direction: row;
|
|
3574
|
+
align-items: center;
|
|
3575
|
+
.meta-icon {
|
|
3576
|
+
display: flex;
|
|
3577
|
+
svg {
|
|
3578
|
+
width: 18px;
|
|
3579
|
+
height: 18px;
|
|
3580
|
+
}
|
|
3581
|
+
padding-right: 6px;
|
|
3582
|
+
}
|
|
3583
|
+
.meta-text {
|
|
3584
|
+
font-size: 12px;
|
|
3585
|
+
font-weight: 400;
|
|
3586
|
+
color: #475467;
|
|
3587
|
+
line-height: 18px;
|
|
3588
|
+
}
|
|
3589
|
+
&:not(:first-child)::before {
|
|
3590
|
+
content: "";
|
|
3591
|
+
display: inline-block;
|
|
3592
|
+
width: 5px;
|
|
3593
|
+
height: 5px;
|
|
3594
|
+
background: #d0d5dd;
|
|
3595
|
+
border-radius: 50%;
|
|
3596
|
+
margin-right: 12px;
|
|
3571
3597
|
}
|
|
3572
|
-
padding-right: 6px;
|
|
3573
|
-
}
|
|
3574
|
-
.meta-text {
|
|
3575
|
-
font-size: 12px;
|
|
3576
|
-
font-weight: 400;
|
|
3577
|
-
color: #475467;
|
|
3578
|
-
line-height: 18px;
|
|
3579
|
-
}
|
|
3580
|
-
&:not(:first-child)::before {
|
|
3581
|
-
content: "";
|
|
3582
|
-
display: inline-block;
|
|
3583
|
-
width: 5px;
|
|
3584
|
-
height: 5px;
|
|
3585
|
-
background: #d0d5dd;
|
|
3586
|
-
border-radius: 50%;
|
|
3587
|
-
margin-right: 12px;
|
|
3588
3598
|
}
|
|
3589
3599
|
}
|
|
3590
3600
|
}
|
|
3591
3601
|
}
|
|
3592
|
-
}
|
|
3593
|
-
|
|
3594
|
-
.order-successful {
|
|
3595
|
-
display: flex;
|
|
3596
|
-
align-items: center;
|
|
3597
|
-
// background: #f0fdf4;
|
|
3598
|
-
// border-radius: 6px;
|
|
3599
|
-
// padding: 16px;
|
|
3600
|
-
// margin-bottom: 24px;
|
|
3601
|
-
background-color: #f6fef9;
|
|
3602
|
-
border-radius: 6px;
|
|
3603
|
-
border: 1px solid #d0d5dd;
|
|
3604
|
-
padding: 12px;
|
|
3605
|
-
|
|
3606
|
-
.check-icon {
|
|
3607
|
-
font-size: 28px;
|
|
3608
|
-
margin-right: 12px;
|
|
3609
|
-
}
|
|
3610
3602
|
|
|
3611
|
-
.
|
|
3603
|
+
.order-successful,
|
|
3604
|
+
.order-pending,
|
|
3605
|
+
.order-failed {
|
|
3612
3606
|
display: flex;
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3607
|
+
align-items: center;
|
|
3608
|
+
// background: #f0fdf4;
|
|
3609
|
+
// border-radius: 6px;
|
|
3610
|
+
// padding: 16px;
|
|
3611
|
+
// margin-bottom: 24px;
|
|
3612
|
+
background-color: #f6fef9;
|
|
3613
|
+
border-radius: 6px;
|
|
3614
|
+
border: 1px solid #d0d5dd;
|
|
3615
|
+
padding: 12px;
|
|
3616
|
+
margin-block: 16px;
|
|
3617
|
+
|
|
3618
|
+
.check-icon {
|
|
3619
|
+
font-size: 28px;
|
|
3620
|
+
margin-right: 12px;
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
.success-text {
|
|
3617
3624
|
display: flex;
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3625
|
+
flex-direction: column;
|
|
3626
|
+
justify-content: center;
|
|
3627
|
+
gap: 8px;
|
|
3628
|
+
.success_toast_header {
|
|
3629
|
+
display: flex;
|
|
3630
|
+
gap: 6px;
|
|
3631
|
+
align-items: center;
|
|
3632
|
+
.success__dropdown__icon {
|
|
3633
|
+
display: flex;
|
|
3634
|
+
svg {
|
|
3635
|
+
width: 24px;
|
|
3636
|
+
height: 24px;
|
|
3637
|
+
path {
|
|
3638
|
+
stroke: #099250;
|
|
3639
|
+
}
|
|
3628
3640
|
}
|
|
3629
3641
|
}
|
|
3642
|
+
h2 {
|
|
3643
|
+
color: #101828;
|
|
3644
|
+
font-size: 20px;
|
|
3645
|
+
font-weight: 600;
|
|
3646
|
+
line-height: 32px;
|
|
3647
|
+
font-family: "Lato";
|
|
3648
|
+
}
|
|
3630
3649
|
}
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
font-
|
|
3635
|
-
|
|
3636
|
-
|
|
3650
|
+
|
|
3651
|
+
p {
|
|
3652
|
+
color: #475467;
|
|
3653
|
+
font-size: 14px;
|
|
3654
|
+
font-weight: 400;
|
|
3655
|
+
line-height: 20px;
|
|
3637
3656
|
}
|
|
3638
3657
|
}
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3658
|
+
}
|
|
3659
|
+
.order-failed {
|
|
3660
|
+
background-color: var(--_error-100);
|
|
3661
|
+
border: 1px solid var(--_error-200);
|
|
3662
|
+
.success__dropdown__icon {
|
|
3663
|
+
svg path {
|
|
3664
|
+
stroke: var(--_error-700) !important;
|
|
3665
|
+
}
|
|
3645
3666
|
}
|
|
3646
3667
|
}
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
padding: 12px;
|
|
3656
|
-
.error_toast_message_left_section {
|
|
3668
|
+
.order-pending {
|
|
3669
|
+
background-color: #f5f6f9;
|
|
3670
|
+
border: 1px solid #c5d2fc;
|
|
3671
|
+
svg path {
|
|
3672
|
+
stroke: var(--_primary-700);
|
|
3673
|
+
}
|
|
3674
|
+
}
|
|
3675
|
+
.error_toast_message_wrapper {
|
|
3657
3676
|
display: flex;
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3677
|
+
justify-content: space-between;
|
|
3678
|
+
align-items: center;
|
|
3679
|
+
background-color: #fffbfa;
|
|
3680
|
+
border-radius: 6px;
|
|
3681
|
+
border: 1px solid #fda29b;
|
|
3682
|
+
padding: 12px;
|
|
3683
|
+
.error_toast_message_left_section {
|
|
3661
3684
|
display: flex;
|
|
3685
|
+
flex-direction: column;
|
|
3662
3686
|
gap: 8px;
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3687
|
+
.error_toast_message_header {
|
|
3688
|
+
display: flex;
|
|
3689
|
+
gap: 8px;
|
|
3690
|
+
align-items: center;
|
|
3691
|
+
h2 {
|
|
3692
|
+
color: #101828;
|
|
3693
|
+
font-size: 24px;
|
|
3694
|
+
font-weight: 600;
|
|
3695
|
+
line-height: 32px;
|
|
3696
|
+
font-family: "Lato";
|
|
3697
|
+
}
|
|
3698
|
+
.error__dropdown__icon {
|
|
3699
|
+
svg {
|
|
3700
|
+
width: 32px;
|
|
3701
|
+
height: 32px;
|
|
3702
|
+
path {
|
|
3703
|
+
stroke: #d92d20;
|
|
3704
|
+
fill: #ffffff;
|
|
3705
|
+
stroke-width: 0.8;
|
|
3706
|
+
}
|
|
3679
3707
|
}
|
|
3680
3708
|
}
|
|
3681
3709
|
}
|
|
3710
|
+
p {
|
|
3711
|
+
color: #475467;
|
|
3712
|
+
font-size: 14px;
|
|
3713
|
+
font-weight: 400;
|
|
3714
|
+
line-height: 20px;
|
|
3715
|
+
}
|
|
3682
3716
|
}
|
|
3683
|
-
|
|
3684
|
-
color: #
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3717
|
+
.error_message_btn {
|
|
3718
|
+
background-color: #243dc6;
|
|
3719
|
+
color: #ffffff;
|
|
3720
|
+
border-radius: 6px;
|
|
3721
|
+
font-size: 16px;
|
|
3722
|
+
font-weight: 600;
|
|
3723
|
+
padding: 12px 24px;
|
|
3688
3724
|
}
|
|
3689
3725
|
}
|
|
3690
|
-
.error_message_btn {
|
|
3691
|
-
background-color: #243dc6;
|
|
3692
|
-
color: #ffffff;
|
|
3693
|
-
border-radius: 6px;
|
|
3694
|
-
font-size: 16px;
|
|
3695
|
-
font-weight: 600;
|
|
3696
|
-
padding: 12px 24px;
|
|
3697
|
-
}
|
|
3698
|
-
}
|
|
3699
3726
|
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3727
|
+
.order-details-wrapper {
|
|
3728
|
+
display: grid;
|
|
3729
|
+
grid-template-columns: 2fr 1fr;
|
|
3730
|
+
gap: 48px;
|
|
3731
|
+
padding-bottom: 24px;
|
|
3732
|
+
}
|
|
3706
3733
|
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
font-size: 14px;
|
|
3713
|
-
font-weight: 600;
|
|
3714
|
-
color: #101828;
|
|
3715
|
-
padding: 12px 16px;
|
|
3716
|
-
border: 1px solid #eaecf0;
|
|
3717
|
-
border-radius: 6px;
|
|
3718
|
-
background: #f5f5f5;
|
|
3719
|
-
span {
|
|
3734
|
+
.order-info-section {
|
|
3735
|
+
display: flex;
|
|
3736
|
+
flex-direction: column;
|
|
3737
|
+
gap: 16px;
|
|
3738
|
+
.order_info_header {
|
|
3720
3739
|
font-size: 14px;
|
|
3721
3740
|
font-weight: 600;
|
|
3722
|
-
color:
|
|
3741
|
+
color: #101828;
|
|
3742
|
+
padding: 12px 16px;
|
|
3743
|
+
border: 1px solid #eaecf0;
|
|
3744
|
+
border-radius: 6px;
|
|
3745
|
+
background: #f5f5f5;
|
|
3746
|
+
span {
|
|
3747
|
+
font-size: 14px;
|
|
3748
|
+
font-weight: 600;
|
|
3749
|
+
color: var(--_gray-600);
|
|
3750
|
+
}
|
|
3723
3751
|
}
|
|
3724
3752
|
}
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
.quick_actions_header {
|
|
3731
|
-
font-size: 14px;
|
|
3732
|
-
font-weight: 600;
|
|
3733
|
-
color: #101828;
|
|
3734
|
-
padding: 12px 16px;
|
|
3735
|
-
border: 1px solid #eaecf0;
|
|
3736
|
-
border-radius: 6px;
|
|
3737
|
-
background: #f5f5f5;
|
|
3738
|
-
span {
|
|
3753
|
+
.quick-actions-section {
|
|
3754
|
+
display: flex;
|
|
3755
|
+
flex-direction: column;
|
|
3756
|
+
gap: 16px;
|
|
3757
|
+
.quick_actions_header {
|
|
3739
3758
|
font-size: 14px;
|
|
3740
3759
|
font-weight: 600;
|
|
3741
|
-
color:
|
|
3760
|
+
color: #101828;
|
|
3761
|
+
padding: 12px 16px;
|
|
3762
|
+
border: 1px solid #eaecf0;
|
|
3763
|
+
border-radius: 6px;
|
|
3764
|
+
background: #f5f5f5;
|
|
3765
|
+
span {
|
|
3766
|
+
font-size: 14px;
|
|
3767
|
+
font-weight: 600;
|
|
3768
|
+
color: var(--_gray-600);
|
|
3769
|
+
}
|
|
3742
3770
|
}
|
|
3743
3771
|
}
|
|
3744
|
-
}
|
|
3745
|
-
|
|
3746
|
-
.order-info {
|
|
3747
|
-
display: flex;
|
|
3748
|
-
flex-direction: column;
|
|
3749
|
-
/* space between the two rows */
|
|
3750
|
-
.order-row {
|
|
3751
|
-
display: grid;
|
|
3752
|
-
gap: 12px 24px;
|
|
3753
|
-
/* 12px vertical, 24px horizontal */
|
|
3754
|
-
|
|
3755
|
-
/* First row: two equal columns + bottom border */
|
|
3756
|
-
&:first-child {
|
|
3757
|
-
grid-template-columns: repeat(2, 1fr);
|
|
3758
|
-
border-bottom: 1px dashed var(--_gray-400);
|
|
3759
|
-
padding-bottom: 24px;
|
|
3760
|
-
}
|
|
3761
|
-
|
|
3762
|
-
/* Second row: three equal columns */
|
|
3763
|
-
&:nth-child(2) {
|
|
3764
|
-
grid-template-columns: repeat(3, 1fr);
|
|
3765
|
-
margin-top: 24px;
|
|
3766
|
-
}
|
|
3767
3772
|
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3773
|
+
.order-info {
|
|
3774
|
+
display: flex;
|
|
3775
|
+
flex-direction: column;
|
|
3776
|
+
/* space between the two rows */
|
|
3777
|
+
.order-row {
|
|
3778
|
+
display: grid;
|
|
3779
|
+
gap: 12px 24px;
|
|
3780
|
+
/* 12px vertical, 24px horizontal */
|
|
3781
|
+
|
|
3782
|
+
/* First row: two equal columns + bottom border */
|
|
3783
|
+
&:first-child {
|
|
3784
|
+
grid-template-columns: repeat(2, 1fr);
|
|
3785
|
+
border-bottom: 1px dashed var(--_gray-400);
|
|
3786
|
+
padding-bottom: 24px;
|
|
3777
3787
|
}
|
|
3778
3788
|
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
font-weight: 600;
|
|
3784
|
-
color: var(--_gray-900);
|
|
3785
|
-
line-height: 30px;
|
|
3786
|
-
}
|
|
3787
|
-
.delivery_address {
|
|
3788
|
-
font-size: 14px;
|
|
3789
|
-
font-weight: 400;
|
|
3790
|
-
color: var(--_gray-400);
|
|
3791
|
-
line-height: 20px;
|
|
3792
|
-
}
|
|
3793
|
-
.shipping-type {
|
|
3794
|
-
font-size: 14px;
|
|
3795
|
-
font-weight: 400;
|
|
3796
|
-
color: var(--_gray-900);
|
|
3797
|
-
line-height: 20px;
|
|
3789
|
+
/* Second row: three equal columns */
|
|
3790
|
+
&:nth-child(2) {
|
|
3791
|
+
grid-template-columns: repeat(3, 1fr);
|
|
3792
|
+
margin-top: 24px;
|
|
3798
3793
|
}
|
|
3799
3794
|
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3795
|
+
/* Each individual info‐cell styling */
|
|
3796
|
+
> div {
|
|
3797
|
+
strong {
|
|
3798
|
+
display: block;
|
|
3799
|
+
font-size: 14px;
|
|
3800
|
+
color: var(--_gray-500);
|
|
3801
|
+
line-height: 20px;
|
|
3802
|
+
margin-bottom: 4px;
|
|
3803
|
+
font-weight: 400;
|
|
3804
|
+
}
|
|
3808
3805
|
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3806
|
+
p {
|
|
3807
|
+
margin: 0;
|
|
3808
|
+
margin-bottom: 4px;
|
|
3809
|
+
font-size: 20px;
|
|
3810
|
+
font-weight: 600;
|
|
3811
|
+
color: var(--_gray-900);
|
|
3812
|
+
line-height: 30px;
|
|
3813
|
+
}
|
|
3814
|
+
.delivery_address {
|
|
3815
|
+
font-size: 14px;
|
|
3816
|
+
font-weight: 400;
|
|
3817
|
+
color: var(--_gray-400);
|
|
3818
|
+
line-height: 20px;
|
|
3819
|
+
}
|
|
3820
|
+
.shipping-type {
|
|
3821
|
+
font-size: 14px;
|
|
3822
|
+
font-weight: 400;
|
|
3823
|
+
color: var(--_gray-900);
|
|
3824
|
+
line-height: 20px;
|
|
3825
|
+
}
|
|
3815
3826
|
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3827
|
+
.status {
|
|
3828
|
+
margin-left: 6px;
|
|
3829
|
+
padding: 2px 8px;
|
|
3830
|
+
border-radius: 4px;
|
|
3831
|
+
font-size: 12px;
|
|
3832
|
+
font-weight: 500;
|
|
3833
|
+
line-height: 18px;
|
|
3834
|
+
|
|
3835
|
+
display: inline-flex;
|
|
3836
|
+
align-items: center;
|
|
3837
|
+
gap: 8px;
|
|
3838
|
+
&::before {
|
|
3839
|
+
content: "";
|
|
3840
|
+
display: inline-block;
|
|
3841
|
+
width: 6px;
|
|
3842
|
+
height: 6px;
|
|
3843
|
+
border-radius: 50%;
|
|
3844
|
+
}
|
|
3845
|
+
&.success {
|
|
3846
|
+
background-color: var(--_success-200);
|
|
3847
|
+
&::before {
|
|
3848
|
+
background-color: var(--_success-700);
|
|
3849
|
+
}
|
|
3850
|
+
}
|
|
3851
|
+
&.failed {
|
|
3852
|
+
background-color: var(--_error-100);
|
|
3853
|
+
&::before {
|
|
3854
|
+
background-color: var(--_error-700);
|
|
3855
|
+
}
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
.link-button {
|
|
3860
|
+
color: #243dc6;
|
|
3861
|
+
font-size: 14px;
|
|
3862
|
+
font-weight: 400;
|
|
3863
|
+
line-height: 20px;
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
.submitted {
|
|
3867
|
+
font-size: 12px;
|
|
3868
|
+
font-weight: 500;
|
|
3869
|
+
line-height: 18px;
|
|
3870
|
+
background: #eff8ff;
|
|
3871
|
+
color: #0040c1;
|
|
3826
3872
|
display: inline-block;
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3873
|
+
height: 22px;
|
|
3874
|
+
&::before {
|
|
3875
|
+
content: "";
|
|
3876
|
+
display: inline-block;
|
|
3877
|
+
width: 6px;
|
|
3878
|
+
height: 6px;
|
|
3879
|
+
background-color: #0040c1;
|
|
3880
|
+
border-radius: 50%;
|
|
3881
|
+
margin-right: 6px;
|
|
3882
|
+
vertical-align: middle;
|
|
3883
|
+
margin-top: -1px;
|
|
3884
|
+
}
|
|
3834
3885
|
}
|
|
3835
|
-
}
|
|
3836
3886
|
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3887
|
+
.order-date {
|
|
3888
|
+
font-size: 14px;
|
|
3889
|
+
font-weight: 400;
|
|
3890
|
+
color: var(--_gray-400);
|
|
3891
|
+
line-height: 20px;
|
|
3892
|
+
}
|
|
3843
3893
|
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3894
|
+
.inclusive-tax {
|
|
3895
|
+
margin-left: 4px;
|
|
3896
|
+
font-size: 0.7rem;
|
|
3897
|
+
color: #6b7280;
|
|
3898
|
+
}
|
|
3848
3899
|
}
|
|
3849
3900
|
}
|
|
3850
3901
|
}
|
|
3851
|
-
}
|
|
3852
3902
|
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
padding: 8px;
|
|
3858
|
-
color: #243dc6;
|
|
3859
|
-
.action-button {
|
|
3903
|
+
.quick-actions {
|
|
3904
|
+
display: flex;
|
|
3905
|
+
flex-direction: column;
|
|
3906
|
+
gap: 8px;
|
|
3860
3907
|
padding: 8px;
|
|
3861
|
-
font-size: 14px;
|
|
3862
|
-
border-radius: 4px;
|
|
3863
|
-
background: none;
|
|
3864
3908
|
color: #243dc6;
|
|
3865
|
-
|
|
3866
|
-
|
|
3909
|
+
.action-button {
|
|
3910
|
+
padding: 8px;
|
|
3911
|
+
font-size: 14px;
|
|
3912
|
+
border-radius: 4px;
|
|
3913
|
+
background: none;
|
|
3914
|
+
color: #243dc6;
|
|
3915
|
+
cursor: pointer;
|
|
3916
|
+
text-align: start;
|
|
3867
3917
|
|
|
3868
|
-
|
|
3869
|
-
|
|
3918
|
+
&:hover {
|
|
3919
|
+
color: #0d60e5;
|
|
3920
|
+
}
|
|
3870
3921
|
}
|
|
3871
3922
|
}
|
|
3872
|
-
}
|
|
3873
3923
|
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
.items-grid {
|
|
3884
|
-
display: grid;
|
|
3885
|
-
grid-template-columns: repeat(3, 1fr);
|
|
3886
|
-
gap: 24px;
|
|
3887
|
-
margin-bottom: 24px;
|
|
3888
|
-
}
|
|
3924
|
+
.cart-items {
|
|
3925
|
+
h3 {
|
|
3926
|
+
font-size: 14px;
|
|
3927
|
+
color: #667085;
|
|
3928
|
+
margin-bottom: 24px;
|
|
3929
|
+
line-height: 20px;
|
|
3930
|
+
font-weight: 400;
|
|
3931
|
+
}
|
|
3889
3932
|
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3933
|
+
.items-grid {
|
|
3934
|
+
display: grid;
|
|
3935
|
+
grid-template-columns: repeat(3, 1fr);
|
|
3936
|
+
gap: 24px;
|
|
3937
|
+
margin-bottom: 24px;
|
|
3938
|
+
}
|
|
3894
3939
|
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
height: 80px;
|
|
3898
|
-
object-fit: cover;
|
|
3899
|
-
border-radius: 4px;
|
|
3940
|
+
.item-card {
|
|
3941
|
+
gap: 12px;
|
|
3900
3942
|
display: flex;
|
|
3901
3943
|
align-items: flex-start;
|
|
3902
|
-
}
|
|
3903
|
-
|
|
3904
|
-
.item-details {
|
|
3905
|
-
flex: 1;
|
|
3906
3944
|
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
font-size: 14px;
|
|
3915
|
-
font-weight: 600;
|
|
3916
|
-
color: var(--_gray-900);
|
|
3917
|
-
line-height: 20px;
|
|
3945
|
+
img {
|
|
3946
|
+
width: 69px;
|
|
3947
|
+
height: 80px;
|
|
3948
|
+
object-fit: cover;
|
|
3949
|
+
border-radius: 4px;
|
|
3950
|
+
display: flex;
|
|
3951
|
+
align-items: flex-start;
|
|
3918
3952
|
}
|
|
3919
3953
|
|
|
3920
|
-
.item-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3954
|
+
.item-details {
|
|
3955
|
+
flex: 1;
|
|
3956
|
+
|
|
3957
|
+
.item-name {
|
|
3958
|
+
display: -webkit-box;
|
|
3959
|
+
-webkit-line-clamp: 1;
|
|
3960
|
+
-webkit-box-orient: vertical;
|
|
3961
|
+
overflow: hidden;
|
|
3962
|
+
text-overflow: ellipsis;
|
|
3963
|
+
margin: 0 0 4px;
|
|
3964
|
+
font-size: 14px;
|
|
3965
|
+
font-weight: 600;
|
|
3966
|
+
color: var(--_gray-900);
|
|
3967
|
+
line-height: 20px;
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
.item-specs {
|
|
3930
3971
|
font-size: 12px;
|
|
3972
|
+
color: #475467;
|
|
3931
3973
|
font-weight: 400;
|
|
3974
|
+
}
|
|
3975
|
+
.item-qty {
|
|
3976
|
+
font-size: 12px;
|
|
3977
|
+
font-weight: 400;
|
|
3978
|
+
color: #475467;
|
|
3979
|
+
span {
|
|
3980
|
+
font-size: 12px;
|
|
3981
|
+
font-weight: 400;
|
|
3982
|
+
color: #101828;
|
|
3983
|
+
}
|
|
3984
|
+
}
|
|
3985
|
+
.estimated-delivery {
|
|
3986
|
+
margin: 0;
|
|
3987
|
+
font-size: 12px;
|
|
3988
|
+
color: var(--_gray-600);
|
|
3989
|
+
line-height: 18px;
|
|
3990
|
+
}
|
|
3991
|
+
|
|
3992
|
+
.delivery-date {
|
|
3993
|
+
margin: 0;
|
|
3994
|
+
font-size: 12px;
|
|
3995
|
+
font-weight: bold;
|
|
3932
3996
|
color: #101828;
|
|
3933
3997
|
}
|
|
3934
3998
|
}
|
|
3935
|
-
.estimated-delivery {
|
|
3936
|
-
margin: 0;
|
|
3937
|
-
font-size: 12px;
|
|
3938
|
-
color: var(--_gray-600);
|
|
3939
|
-
line-height: 18px;
|
|
3940
|
-
}
|
|
3941
3999
|
|
|
3942
|
-
.
|
|
3943
|
-
margin: 0;
|
|
4000
|
+
.item-price {
|
|
3944
4001
|
font-size: 12px;
|
|
3945
|
-
font-weight:
|
|
3946
|
-
color: #
|
|
4002
|
+
font-weight: 600;
|
|
4003
|
+
color: #1e293b;
|
|
4004
|
+
margin-left: 12px;
|
|
3947
4005
|
}
|
|
3948
4006
|
}
|
|
3949
4007
|
|
|
3950
|
-
.
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
button {
|
|
3961
|
-
padding: 12px 16px;
|
|
3962
|
-
color: var(--_primary-400);
|
|
3963
|
-
font-weight: 600;
|
|
3964
|
-
border-radius: 6px;
|
|
3965
|
-
&:hover {
|
|
3966
|
-
background-color: var(--_primary-25);
|
|
4008
|
+
.show-more-wrapper {
|
|
4009
|
+
margin: 32px 16px 16px 0px;
|
|
4010
|
+
button {
|
|
4011
|
+
padding: 12px 16px;
|
|
4012
|
+
color: var(--_primary-400);
|
|
4013
|
+
font-weight: 600;
|
|
4014
|
+
border-radius: 6px;
|
|
4015
|
+
&:hover {
|
|
4016
|
+
background-color: var(--_primary-25);
|
|
4017
|
+
}
|
|
3967
4018
|
}
|
|
3968
4019
|
}
|
|
3969
4020
|
}
|
|
3970
|
-
}
|
|
3971
4021
|
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
4022
|
+
.order-attributes {
|
|
4023
|
+
border-top: 1px solid #eaecf0;
|
|
4024
|
+
padding-top: 24px;
|
|
3975
4025
|
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
4026
|
+
h4 {
|
|
4027
|
+
font-size: 14px;
|
|
4028
|
+
font-weight: 400;
|
|
4029
|
+
color: var(--_gray-500);
|
|
4030
|
+
line-height: 20px;
|
|
4031
|
+
}
|
|
3982
4032
|
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
4033
|
+
p {
|
|
4034
|
+
font-size: 14px;
|
|
4035
|
+
font-weight: 600;
|
|
4036
|
+
line-height: 20px;
|
|
4037
|
+
color: var(--_gray-900);
|
|
4038
|
+
}
|
|
3988
4039
|
}
|
|
3989
|
-
}
|
|
3990
4040
|
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
4041
|
+
@media (max-width: 768px) {
|
|
4042
|
+
.order-details-wrapper {
|
|
4043
|
+
grid-template-columns: 1fr;
|
|
4044
|
+
}
|
|
3995
4045
|
|
|
3996
|
-
|
|
3997
|
-
|
|
4046
|
+
.items-grid {
|
|
4047
|
+
grid-template-columns: 1fr;
|
|
4048
|
+
}
|
|
3998
4049
|
}
|
|
3999
4050
|
}
|
|
4000
4051
|
}
|