@sc-360-v2/storefront-cms-library 0.3.87 → 0.3.88
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/bundle.scss +36 -14
- package/dist/checkout.scss +4 -74
- package/dist/gallery-slider-temp.scss +1 -1
- package/dist/icons.js +1 -1
- package/dist/image-temp.scss +1 -0
- package/dist/index.js +1 -1
- package/dist/my-templates.scss +3 -10
- package/dist/request-for-quotes.scss +30 -0
- package/package.json +1 -1
package/dist/my-templates.scss
CHANGED
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
.template_summary_wrapper {
|
|
246
246
|
border: 1px solid var(--_gray-300);
|
|
247
247
|
border-radius: 4px;
|
|
248
|
-
width:
|
|
248
|
+
width: 350px;
|
|
249
249
|
.template_summary_header {
|
|
250
250
|
padding: 12px 16px;
|
|
251
251
|
border-bottom: 1px solid var(--_gray-300);
|
|
@@ -262,22 +262,15 @@
|
|
|
262
262
|
.template_summary_item {
|
|
263
263
|
display: flex;
|
|
264
264
|
justify-content: space-between;
|
|
265
|
-
gap:
|
|
265
|
+
gap: 16px;
|
|
266
266
|
.template_summary_item_details {
|
|
267
267
|
display: flex;
|
|
268
|
-
gap:
|
|
268
|
+
gap: 16px;
|
|
269
269
|
.template_summary_item_pro_info {
|
|
270
270
|
h5 {
|
|
271
271
|
font-size: 16px;
|
|
272
272
|
font-weight: 600;
|
|
273
273
|
color: var(--_gray-900);
|
|
274
|
-
width: 160px;
|
|
275
|
-
display: -webkit-box;
|
|
276
|
-
line-clamp: 2;
|
|
277
|
-
-webkit-line-clamp: 2;
|
|
278
|
-
-webkit-box-orient: vertical;
|
|
279
|
-
overflow: hidden;
|
|
280
|
-
text-overflow: ellipsis;
|
|
281
274
|
}
|
|
282
275
|
.template_summary_item_pro_qty {
|
|
283
276
|
color: var(--_gray-500);
|
|
@@ -403,6 +403,9 @@
|
|
|
403
403
|
background: none;
|
|
404
404
|
border: none;
|
|
405
405
|
cursor: pointer;
|
|
406
|
+
span {
|
|
407
|
+
display: flex;
|
|
408
|
+
}
|
|
406
409
|
|
|
407
410
|
&:hover {
|
|
408
411
|
text-decoration: underline;
|
|
@@ -458,6 +461,7 @@
|
|
|
458
461
|
margin-right: 6px;
|
|
459
462
|
font-weight: 600;
|
|
460
463
|
color: var(--_gray-700);
|
|
464
|
+
display: flex;
|
|
461
465
|
}
|
|
462
466
|
|
|
463
467
|
&_input {
|
|
@@ -497,6 +501,25 @@
|
|
|
497
501
|
font-weight: 400;
|
|
498
502
|
line-height: 20px;
|
|
499
503
|
}
|
|
504
|
+
&_details {
|
|
505
|
+
display: flex;
|
|
506
|
+
align-items: center;
|
|
507
|
+
gap: 10px;
|
|
508
|
+
color: var(--_gray-900);
|
|
509
|
+
font-size: 14px;
|
|
510
|
+
cursor: pointer;
|
|
511
|
+
.toggle_arrow {
|
|
512
|
+
display: flex;
|
|
513
|
+
transition: transform 0.3s ease;
|
|
514
|
+
&.open {
|
|
515
|
+
transform: rotate(180deg);
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
&.no_caret {
|
|
519
|
+
caret-color: transparent; /* hides the blinking cursor */
|
|
520
|
+
pointer-events: none; /* prevents clicking/focus */
|
|
521
|
+
}
|
|
522
|
+
}
|
|
500
523
|
|
|
501
524
|
&_contact_container {
|
|
502
525
|
display: flex;
|
|
@@ -512,6 +535,12 @@
|
|
|
512
535
|
&_shipping_details {
|
|
513
536
|
// padding: 16px;
|
|
514
537
|
margin-top: 10px;
|
|
538
|
+
.no_shipping_methods {
|
|
539
|
+
background: var(--_gray-100);
|
|
540
|
+
border-radius: 4px;
|
|
541
|
+
padding: 16px;
|
|
542
|
+
text-align: center;
|
|
543
|
+
}
|
|
515
544
|
}
|
|
516
545
|
|
|
517
546
|
&_shipping_heading {
|
|
@@ -522,6 +551,7 @@
|
|
|
522
551
|
padding: 4px 6px;
|
|
523
552
|
border-radius: 4px;
|
|
524
553
|
margin-bottom: 12px;
|
|
554
|
+
padding-left: 12px;
|
|
525
555
|
}
|
|
526
556
|
|
|
527
557
|
&_shipping_group {
|