@sc-360-v2/storefront-cms-library 0.3.57 → 0.3.58
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/builder.js +1 -1
- package/dist/buyForHeaders.scss +19 -3
- package/dist/cart-summary.scss +891 -39
- package/dist/checkout.scss +115 -22
- package/dist/confirmationModal.scss +1 -0
- package/dist/dropdownTemplate.scss +129 -5
- package/dist/employee-bulk-order.scss +637 -504
- package/dist/functions.js +1 -1
- package/dist/modal.scss +1 -1
- package/dist/shipping-payments.scss +109 -21
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +2833 -188
- package/dist/types/builder/tools/element-edit/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/productDescription.d.ts +16 -0
- package/dist/types/helper/helper-functions.d.ts +7 -1
- package/dist/types/html-elements/element-types.d.ts +2 -2
- package/package.json +1 -1
package/dist/checkout.scss
CHANGED
|
@@ -171,8 +171,9 @@ $dark-color: #343a40;
|
|
|
171
171
|
.chk_checkout_accordion {
|
|
172
172
|
display: flex;
|
|
173
173
|
padding: var(--_ctm-lt-pg);
|
|
174
|
+
gap: 4px;
|
|
174
175
|
flex-direction: column;
|
|
175
|
-
gap: 24px;
|
|
176
|
+
// gap: 24px;
|
|
176
177
|
// gap: var(--_ctm-lt-te-ad-it-gp);
|
|
177
178
|
word-break: keep-all;
|
|
178
179
|
padding-bottom: 24px;
|
|
@@ -220,11 +221,28 @@ $dark-color: #343a40;
|
|
|
220
221
|
.accordion {
|
|
221
222
|
border-radius: 4px;
|
|
222
223
|
display: flex;
|
|
223
|
-
gap: 16px;
|
|
224
|
+
// gap: 16px;
|
|
224
225
|
// gap: var(--_ctm-lt-an-hg-ad-ve-gp);
|
|
225
226
|
flex-direction: column;
|
|
227
|
+
transition: max-height 800ms ease-in;
|
|
228
|
+
&.open {
|
|
229
|
+
transition: max-height 800ms ease-in;
|
|
230
|
+
.accordion-header {
|
|
231
|
+
background-color: var(--_gray-200);
|
|
232
|
+
}
|
|
233
|
+
.accordion-body {
|
|
234
|
+
transition: max-height 800ms ease-in;
|
|
235
|
+
max-height: 2000px;
|
|
236
|
+
padding-block: 12px 24px;
|
|
237
|
+
.shipping-address {
|
|
238
|
+
max-height: fit-content;
|
|
239
|
+
transition: max-height 800ms ease-in;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
226
243
|
|
|
227
244
|
.accordion-header {
|
|
245
|
+
height: 55px;
|
|
228
246
|
display: flex;
|
|
229
247
|
justify-content: space-between;
|
|
230
248
|
align-items: center;
|
|
@@ -520,6 +538,11 @@ $dark-color: #343a40;
|
|
|
520
538
|
|
|
521
539
|
.accordion-body {
|
|
522
540
|
// margin-bottom: 16px;
|
|
541
|
+
transition: max-height 800ms ease-in;
|
|
542
|
+
|
|
543
|
+
max-height: 0px;
|
|
544
|
+
overflow: hidden;
|
|
545
|
+
padding: 0;
|
|
523
546
|
.summary {
|
|
524
547
|
.chk_shipping_method_label {
|
|
525
548
|
display: flex;
|
|
@@ -609,8 +632,16 @@ $dark-color: #343a40;
|
|
|
609
632
|
}
|
|
610
633
|
|
|
611
634
|
.shipping-address {
|
|
635
|
+
transition: max-height 800ms ease-in;
|
|
636
|
+
max-height: 0;
|
|
612
637
|
display: flex;
|
|
613
638
|
flex-direction: column;
|
|
639
|
+
.btn_link {
|
|
640
|
+
color: var(--_primary-400);
|
|
641
|
+
&:hover {
|
|
642
|
+
text-decoration: underline;
|
|
643
|
+
}
|
|
644
|
+
}
|
|
614
645
|
// gap: 24px;
|
|
615
646
|
background-color: var(
|
|
616
647
|
--_ctm-mob-dn-an-tb-sg-ds-as-wr-as-cr-bd-cr,
|
|
@@ -889,12 +920,16 @@ $dark-color: #343a40;
|
|
|
889
920
|
display: flex;
|
|
890
921
|
flex-direction: column;
|
|
891
922
|
gap: 24px;
|
|
923
|
+
max-width: 485px;
|
|
892
924
|
}
|
|
893
925
|
|
|
894
926
|
.shipping_address_heading_container {
|
|
895
927
|
display: flex;
|
|
896
928
|
justify-content: space-between;
|
|
897
929
|
align-items: center;
|
|
930
|
+
font-size: 18px;
|
|
931
|
+
font-weight: 600;
|
|
932
|
+
color: var(--_gray-900);
|
|
898
933
|
}
|
|
899
934
|
|
|
900
935
|
form {
|
|
@@ -2168,6 +2203,29 @@ $dark-color: #343a40;
|
|
|
2168
2203
|
.gift_crd_chk_payment_option {
|
|
2169
2204
|
border: 1px solid var(--_gray-300);
|
|
2170
2205
|
border-radius: 6px;
|
|
2206
|
+
.add_gift_card {
|
|
2207
|
+
display: flex;
|
|
2208
|
+
gap: 12px;
|
|
2209
|
+
padding: 16px;
|
|
2210
|
+
|
|
2211
|
+
.gc_icon {
|
|
2212
|
+
svg {
|
|
2213
|
+
width: 18px;
|
|
2214
|
+
height: 14px;
|
|
2215
|
+
}
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.gc_info {
|
|
2219
|
+
display: flex;
|
|
2220
|
+
flex-direction: column;
|
|
2221
|
+
gap: 6px;
|
|
2222
|
+
|
|
2223
|
+
.gc_title {
|
|
2224
|
+
font-size: 14px;
|
|
2225
|
+
font-weight: 600;
|
|
2226
|
+
}
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
2171
2229
|
.payment_heading {
|
|
2172
2230
|
padding: 16px;
|
|
2173
2231
|
.chk_payment_options_heading {
|
|
@@ -2606,6 +2664,10 @@ $dark-color: #343a40;
|
|
|
2606
2664
|
.chk_payment_section_col_left {
|
|
2607
2665
|
display: flex;
|
|
2608
2666
|
gap: 12px;
|
|
2667
|
+
svg {
|
|
2668
|
+
width: 24px;
|
|
2669
|
+
height: 24px;
|
|
2670
|
+
}
|
|
2609
2671
|
.chk_payment_section_method {
|
|
2610
2672
|
display: flex;
|
|
2611
2673
|
flex-direction: column;
|
|
@@ -2746,13 +2808,7 @@ $dark-color: #343a40;
|
|
|
2746
2808
|
align-items: center;
|
|
2747
2809
|
padding-inline: 12px;
|
|
2748
2810
|
gap: 12px;
|
|
2749
|
-
|
|
2750
|
-
--_ctm-mob-dn-an-tb-fm-wr-is-bd-cr,
|
|
2751
|
-
var(
|
|
2752
|
-
--_ctm-tab-dn-an-tb-fm-wr-is-bd-cr,
|
|
2753
|
-
var(--_ctm-dn-an-tb-fm-wr-is-bd-cr)
|
|
2754
|
-
)
|
|
2755
|
-
);
|
|
2811
|
+
|
|
2756
2812
|
border-color: var(
|
|
2757
2813
|
--_ctm-mob-dn-an-tb-fm-wr-is-br-cr,
|
|
2758
2814
|
var(
|
|
@@ -2795,6 +2851,10 @@ $dark-color: #343a40;
|
|
|
2795
2851
|
input {
|
|
2796
2852
|
height: inherit;
|
|
2797
2853
|
background-color: var(--_base-white);
|
|
2854
|
+
&:disabled {
|
|
2855
|
+
opacity: 0.8;
|
|
2856
|
+
cursor: not-allowed;
|
|
2857
|
+
}
|
|
2798
2858
|
}
|
|
2799
2859
|
}
|
|
2800
2860
|
}
|
|
@@ -3815,6 +3875,7 @@ $dark-color: #343a40;
|
|
|
3815
3875
|
.chk_payment_section_col_left {
|
|
3816
3876
|
display: flex;
|
|
3817
3877
|
gap: 12px;
|
|
3878
|
+
|
|
3818
3879
|
.chk_payment_section_method {
|
|
3819
3880
|
display: flex;
|
|
3820
3881
|
flex-direction: column;
|
|
@@ -4622,10 +4683,7 @@ $dark-color: #343a40;
|
|
|
4622
4683
|
--_ctm-mob-an-tb-bg-as-bg-te-cr,
|
|
4623
4684
|
var(--_ctm-tab-an-tb-bg-as-bg-te-cr, var(--_ctm-an-tb-bg-as-bg-te-cr))
|
|
4624
4685
|
);
|
|
4625
|
-
font-weight:
|
|
4626
|
-
--_ctm-mob-an-tb-bg-as-bg-te-ft-wt,
|
|
4627
|
-
var(--_ctm-tab-an-tb-bg-as-bg-te-ft-wt, var(--_ctm-an-tb-bg-as-bg-te-ft-wt))
|
|
4628
|
-
);
|
|
4686
|
+
font-weight: 600;
|
|
4629
4687
|
font-size: var(
|
|
4630
4688
|
--_ctm-mob-an-tb-bg-as-bg-te-ft-se,
|
|
4631
4689
|
var(--_ctm-tab-an-tb-bg-as-bg-te-ft-se, var(--_ctm-an-tb-bg-as-bg-te-ft-se))
|
|
@@ -4650,6 +4708,7 @@ $dark-color: #343a40;
|
|
|
4650
4708
|
display: flex;
|
|
4651
4709
|
flex-direction: column;
|
|
4652
4710
|
gap: 24px;
|
|
4711
|
+
max-width: 485px;
|
|
4653
4712
|
}
|
|
4654
4713
|
|
|
4655
4714
|
.shipping_address_heading_container {
|
|
@@ -4667,13 +4726,16 @@ $dark-color: #343a40;
|
|
|
4667
4726
|
letter-spacing: var(--_ctm-dn-sg-md-dn-hg-dn-lr-sg);
|
|
4668
4727
|
text-decoration: var(--_ctm-dn-sg-md-dn-hg-dn-ue);
|
|
4669
4728
|
}
|
|
4729
|
+
.icon {
|
|
4730
|
+
cursor: pointer;
|
|
4731
|
+
}
|
|
4670
4732
|
}
|
|
4671
4733
|
|
|
4672
4734
|
form {
|
|
4673
4735
|
display: flex;
|
|
4674
4736
|
flex-direction: column;
|
|
4675
4737
|
gap: 0.75rem;
|
|
4676
|
-
max-width: 85%;
|
|
4738
|
+
// max-width: 85%;
|
|
4677
4739
|
|
|
4678
4740
|
@media (max-width: 500px) {
|
|
4679
4741
|
max-width: 100%;
|
|
@@ -4702,10 +4764,7 @@ $dark-color: #343a40;
|
|
|
4702
4764
|
.chk_shipping_address_form_label {
|
|
4703
4765
|
// color: var(--_gray-600);
|
|
4704
4766
|
// font-size: 14px;
|
|
4705
|
-
padding:
|
|
4706
|
-
--_ctm-mob-dn-an-tb-fm-wr-ls-pg,
|
|
4707
|
-
var(--_ctm-tab-dn-an-tb-fm-wr-ls-pg, var(--_ctm-dn-an-tb-fm-wr-ls-pg))
|
|
4708
|
-
);
|
|
4767
|
+
padding-bottom: 6px;
|
|
4709
4768
|
font-family: var(
|
|
4710
4769
|
--_ctm-mob-dn-an-tb-fm-wr-ls-ft-fy,
|
|
4711
4770
|
var(--_ctm-tab-dn-an-tb-fm-wr-ls-ft-fy, var(--_ctm-dn-an-tb-fm-wr-ls-ft-fy))
|
|
@@ -4756,7 +4815,6 @@ $dark-color: #343a40;
|
|
|
4756
4815
|
// padding: 8px 12px;
|
|
4757
4816
|
height: 40px;
|
|
4758
4817
|
width: -webkit-fill-available;
|
|
4759
|
-
height: auto;
|
|
4760
4818
|
// background-color: var(--_base-white);
|
|
4761
4819
|
// color: var(--_gray-600);
|
|
4762
4820
|
// border: 1px solid var(--_gray-300);
|
|
@@ -5388,6 +5446,15 @@ $dark-color: #343a40;
|
|
|
5388
5446
|
font-family: sans-serif;
|
|
5389
5447
|
gap: 12px;
|
|
5390
5448
|
|
|
5449
|
+
.discard_btn {
|
|
5450
|
+
padding: 12px 16px;
|
|
5451
|
+
border-radius: 4px;
|
|
5452
|
+
color: var(--_gray-600);
|
|
5453
|
+
&:hover {
|
|
5454
|
+
background-color: var(--_gray-100);
|
|
5455
|
+
}
|
|
5456
|
+
}
|
|
5457
|
+
|
|
5391
5458
|
input[type="checkbox"] {
|
|
5392
5459
|
display: none;
|
|
5393
5460
|
}
|
|
@@ -5588,6 +5655,11 @@ $dark-color: #343a40;
|
|
|
5588
5655
|
}
|
|
5589
5656
|
}
|
|
5590
5657
|
}
|
|
5658
|
+
.chk_address_actions {
|
|
5659
|
+
display: flex;
|
|
5660
|
+
gap: 12px;
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5591
5663
|
.chk_payment-card__note {
|
|
5592
5664
|
padding: 8px 6px;
|
|
5593
5665
|
display: flex;
|
|
@@ -5673,6 +5745,7 @@ $dark-color: #343a40;
|
|
|
5673
5745
|
display: flex;
|
|
5674
5746
|
flex-direction: column;
|
|
5675
5747
|
gap: 12px;
|
|
5748
|
+
max-width: 700px;
|
|
5676
5749
|
|
|
5677
5750
|
.chk_address {
|
|
5678
5751
|
display: flex;
|
|
@@ -5856,7 +5929,7 @@ $dark-color: #343a40;
|
|
|
5856
5929
|
|
|
5857
5930
|
.right-btn {
|
|
5858
5931
|
display: none;
|
|
5859
|
-
align-items:
|
|
5932
|
+
align-items: center;
|
|
5860
5933
|
gap: 24px;
|
|
5861
5934
|
|
|
5862
5935
|
&:has(.chk_saved_address_button.selected) {
|
|
@@ -5864,6 +5937,12 @@ $dark-color: #343a40;
|
|
|
5864
5937
|
height: fit-content;
|
|
5865
5938
|
align-items: center;
|
|
5866
5939
|
}
|
|
5940
|
+
.chk_saved_address_button {
|
|
5941
|
+
display: flex;
|
|
5942
|
+
align-items: center;
|
|
5943
|
+
gap: 4px;
|
|
5944
|
+
color: var(--_primary-400);
|
|
5945
|
+
}
|
|
5867
5946
|
}
|
|
5868
5947
|
|
|
5869
5948
|
&:hover {
|
|
@@ -6230,6 +6309,10 @@ $dark-color: #343a40;
|
|
|
6230
6309
|
input {
|
|
6231
6310
|
height: inherit;
|
|
6232
6311
|
background-color: var(--_base-white);
|
|
6312
|
+
&:disabled {
|
|
6313
|
+
opacity: 0.8;
|
|
6314
|
+
cursor: not-allowed;
|
|
6315
|
+
}
|
|
6233
6316
|
}
|
|
6234
6317
|
}
|
|
6235
6318
|
.chk_payment_cred_section_col_left {
|
|
@@ -6394,6 +6477,7 @@ $dark-color: #343a40;
|
|
|
6394
6477
|
// color: var(--_primary-500);
|
|
6395
6478
|
// text-decoration: underline;
|
|
6396
6479
|
// }
|
|
6480
|
+
width: fit-content;
|
|
6397
6481
|
background-color: var(
|
|
6398
6482
|
--_ctm-mob-dn-an-tb-bs-ty-py-dt-se-bd-cr,
|
|
6399
6483
|
var(--_ctm-tab-dn-an-tb-bs-ty-py-dt-se-bd-cr, var(--_ctm-dn-an-tb-bs-ty-py-dt-se-bd-cr))
|
|
@@ -6666,7 +6750,7 @@ $dark-color: #343a40;
|
|
|
6666
6750
|
}
|
|
6667
6751
|
}
|
|
6668
6752
|
.chk_secondary_bnt {
|
|
6669
|
-
padding:
|
|
6753
|
+
padding: 16px 24px;
|
|
6670
6754
|
background-color: transparent;
|
|
6671
6755
|
color: var(--_gray-600);
|
|
6672
6756
|
font-weight: 600;
|
|
@@ -6810,6 +6894,10 @@ $dark-color: #343a40;
|
|
|
6810
6894
|
outline: 2px solid var(--_primary-100);
|
|
6811
6895
|
border: 1px solid var(--_primary-300);
|
|
6812
6896
|
}
|
|
6897
|
+
&:disabled {
|
|
6898
|
+
opacity: 0.8;
|
|
6899
|
+
cursor: not-allowed;
|
|
6900
|
+
}
|
|
6813
6901
|
}
|
|
6814
6902
|
}
|
|
6815
6903
|
}
|
|
@@ -6827,6 +6915,10 @@ $dark-color: #343a40;
|
|
|
6827
6915
|
input[type="number"] {
|
|
6828
6916
|
background-color: var(--_base-white);
|
|
6829
6917
|
padding-right: 10px;
|
|
6918
|
+
&:disabled {
|
|
6919
|
+
opacity: 0.8;
|
|
6920
|
+
cursor: not-allowed;
|
|
6921
|
+
}
|
|
6830
6922
|
}
|
|
6831
6923
|
&:focus-within {
|
|
6832
6924
|
outline: 2px solid var(--_primary-100);
|
|
@@ -6923,7 +7015,8 @@ $dark-color: #343a40;
|
|
|
6923
7015
|
|
|
6924
7016
|
.cc_info {
|
|
6925
7017
|
display: flex;
|
|
6926
|
-
|
|
7018
|
+
justify-content: space-between;
|
|
7019
|
+
width: 100%;
|
|
6927
7020
|
gap: 6px;
|
|
6928
7021
|
|
|
6929
7022
|
.cc_title {
|
|
@@ -136,6 +136,24 @@
|
|
|
136
136
|
height: auto !important;
|
|
137
137
|
max-height: 52px;
|
|
138
138
|
border-radius: 4px;
|
|
139
|
+
.profile_block {
|
|
140
|
+
width: 32px;
|
|
141
|
+
height: 32px;
|
|
142
|
+
border-radius: 50%;
|
|
143
|
+
overflow: hidden;
|
|
144
|
+
background-color: var(--_gray-200);
|
|
145
|
+
display: flex;
|
|
146
|
+
justify-content: center;
|
|
147
|
+
align-items: center;
|
|
148
|
+
color: var(--_gray-600);
|
|
149
|
+
font-size: 12px;
|
|
150
|
+
font-weight: 600;
|
|
151
|
+
img {
|
|
152
|
+
max-width: 100%;
|
|
153
|
+
max-height: 100%;
|
|
154
|
+
object-fit: contain;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
139
157
|
&:hover {
|
|
140
158
|
background-color: var(--_primary-25);
|
|
141
159
|
color: var(--_primary-400);
|
|
@@ -143,8 +161,8 @@
|
|
|
143
161
|
|
|
144
162
|
.item-image {
|
|
145
163
|
// background-image: url("");
|
|
146
|
-
width:
|
|
147
|
-
height:
|
|
164
|
+
width: 32px;
|
|
165
|
+
height: 32px;
|
|
148
166
|
background-size: 100%;
|
|
149
167
|
background-position: center;
|
|
150
168
|
border-radius: 50%;
|
|
@@ -179,6 +197,45 @@
|
|
|
179
197
|
width: auto;
|
|
180
198
|
}
|
|
181
199
|
}
|
|
200
|
+
// .input-checkbox {
|
|
201
|
+
// display: flex;
|
|
202
|
+
// align-items: center;
|
|
203
|
+
// cursor: pointer;
|
|
204
|
+
// font-size: 16px;
|
|
205
|
+
// user-select: none;
|
|
206
|
+
|
|
207
|
+
// input[type="checkbox"] {
|
|
208
|
+
// display: none;
|
|
209
|
+
|
|
210
|
+
// &:checked + .checkmark::after {
|
|
211
|
+
// content: "";
|
|
212
|
+
// position: absolute;
|
|
213
|
+
// left: 5px;
|
|
214
|
+
// top: 1px;
|
|
215
|
+
// width: 6px;
|
|
216
|
+
// height: 12px;
|
|
217
|
+
// border: solid #2196f3;
|
|
218
|
+
// border-width: 0 2px 2px 0;
|
|
219
|
+
// transform: rotate(45deg);
|
|
220
|
+
// }
|
|
221
|
+
// }
|
|
222
|
+
|
|
223
|
+
// .checkmark {
|
|
224
|
+
// height: 18px;
|
|
225
|
+
// width: 18px;
|
|
226
|
+
// background-color: #eee;
|
|
227
|
+
// border: 2px solid #ccc;
|
|
228
|
+
// border-radius: 4px;
|
|
229
|
+
// margin-right: 10px;
|
|
230
|
+
// position: relative;
|
|
231
|
+
// transition: all 0.2s ease;
|
|
232
|
+
// }
|
|
233
|
+
|
|
234
|
+
// &:hover .checkmark {
|
|
235
|
+
// background-color: #f0f0f0;
|
|
236
|
+
// }
|
|
237
|
+
// }
|
|
238
|
+
|
|
182
239
|
.dropdown-item {
|
|
183
240
|
height: 40px;
|
|
184
241
|
&:not(:last-child) {
|
|
@@ -229,17 +286,25 @@
|
|
|
229
286
|
}
|
|
230
287
|
.dropdown_template_panel_search {
|
|
231
288
|
background: none;
|
|
232
|
-
padding:
|
|
289
|
+
padding: 8px;
|
|
233
290
|
border-bottom: 1px solid #dddddd;
|
|
234
291
|
height: max-content !important;
|
|
292
|
+
position: relative;
|
|
235
293
|
&:hover {
|
|
236
294
|
background: none !important;
|
|
237
295
|
}
|
|
238
296
|
input {
|
|
239
297
|
width: 100%;
|
|
240
|
-
padding: 10px
|
|
298
|
+
padding-inline: 10px;
|
|
241
299
|
border-radius: 4px;
|
|
242
|
-
border: 1px solid
|
|
300
|
+
border: 1px solid var(--_gray-200);
|
|
301
|
+
height: 40px;
|
|
302
|
+
}
|
|
303
|
+
.close_btn {
|
|
304
|
+
position: absolute;
|
|
305
|
+
right: 20px;
|
|
306
|
+
top: 20px;
|
|
307
|
+
z-index: 10;
|
|
243
308
|
}
|
|
244
309
|
}
|
|
245
310
|
}
|
|
@@ -284,4 +349,63 @@
|
|
|
284
349
|
text-align: center;
|
|
285
350
|
font-weight: 600;
|
|
286
351
|
font-size: 16px;
|
|
352
|
+
width: 100%;
|
|
353
|
+
height: 200px;
|
|
354
|
+
display: flex;
|
|
355
|
+
justify-content: center;
|
|
356
|
+
align-items: center;
|
|
357
|
+
font-weight: 600;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
// spinner for dropdown
|
|
361
|
+
.spinner_dropdown {
|
|
362
|
+
width: 32px;
|
|
363
|
+
height: 32px;
|
|
364
|
+
border-radius: 50%;
|
|
365
|
+
position: relative;
|
|
366
|
+
animation: rotate 1s linear infinite;
|
|
367
|
+
}
|
|
368
|
+
.spinner_dropdown::before,
|
|
369
|
+
.spinner_dropdown::after {
|
|
370
|
+
content: "";
|
|
371
|
+
box-sizing: border-box;
|
|
372
|
+
position: absolute;
|
|
373
|
+
inset: 0px;
|
|
374
|
+
border-radius: 50%;
|
|
375
|
+
border: 2px solid var(--_primary-300);
|
|
376
|
+
animation: prixClipFix 2s linear infinite;
|
|
377
|
+
}
|
|
378
|
+
.spinner_dropdown::after {
|
|
379
|
+
border-color: var(--_primary-500);
|
|
380
|
+
animation:
|
|
381
|
+
prixClipFix 2s linear infinite,
|
|
382
|
+
rotate 0.5s linear infinite reverse;
|
|
383
|
+
inset: 6px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@keyframes rotate {
|
|
387
|
+
0% {
|
|
388
|
+
transform: rotate(0deg);
|
|
389
|
+
}
|
|
390
|
+
100% {
|
|
391
|
+
transform: rotate(360deg);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@keyframes prixClipFix {
|
|
396
|
+
0% {
|
|
397
|
+
clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
|
|
398
|
+
}
|
|
399
|
+
25% {
|
|
400
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
|
|
401
|
+
}
|
|
402
|
+
50% {
|
|
403
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
|
|
404
|
+
}
|
|
405
|
+
75% {
|
|
406
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
|
|
407
|
+
}
|
|
408
|
+
100% {
|
|
409
|
+
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
|
|
410
|
+
}
|
|
287
411
|
}
|