@sc-360-v2/storefront-cms-library 0.4.30 → 0.4.31
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/allocationDetails.scss +1 -1
- package/dist/allocations.scss +1 -1
- package/dist/builder.js +1 -1
- package/dist/bulk-order-pad.scss +30 -11
- package/dist/bundle.scss +569 -56
- package/dist/button.scss +69 -0
- package/dist/default-dropdown.scss +15 -1
- package/dist/dropdownTemplate.scss +36 -2
- package/dist/emtpy-templates.scss +29 -0
- package/dist/image-for-product.scss +1 -1
- package/dist/multi-select-dropdown.scss +20 -1
- package/dist/option-bar.scss +1 -1
- package/dist/product-actions.scss +1 -1
- package/dist/quantity-selector.scss +2 -2
- package/dist/quick-order-pad.scss +7 -2
- package/dist/repeater.scss +1 -1
- package/dist/types/builder/tools/element-edit/bundle.d.ts +887 -62
- package/dist/types/builder/tools/element-edit/button.d.ts +2 -1
- package/package.json +1 -1
package/dist/bulk-order-pad.scss
CHANGED
|
@@ -399,14 +399,14 @@
|
|
|
399
399
|
|
|
400
400
|
.bulk-order-pad-filter-wrapper {
|
|
401
401
|
background-color: var(--_base-white);
|
|
402
|
-
border-bottom: 1px solid var(--_gray-200);
|
|
403
402
|
align-items: center;
|
|
404
403
|
justify-content: center;
|
|
405
404
|
gap: 12px;
|
|
406
405
|
display: flex;
|
|
407
406
|
justify-content: center;
|
|
408
|
-
padding:
|
|
407
|
+
padding: 12px;
|
|
409
408
|
min-height: 94px;
|
|
409
|
+
margin: 0 auto;
|
|
410
410
|
|
|
411
411
|
@media (max-width: 500px) {
|
|
412
412
|
gap: 8px;
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
|
|
435
435
|
.dropdown-options {
|
|
436
436
|
display: flex;
|
|
437
|
-
width:
|
|
437
|
+
width: 100%;
|
|
438
438
|
gap: 12px;
|
|
439
439
|
.option-dropdown {
|
|
440
440
|
label {
|
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
.vertical_vector {
|
|
485
485
|
height: 100%;
|
|
486
486
|
width: 1px;
|
|
487
|
-
margin:
|
|
487
|
+
margin: 14px 0px;
|
|
488
488
|
background-color: #f0f0f0;
|
|
489
489
|
}
|
|
490
490
|
}
|
|
@@ -494,7 +494,7 @@
|
|
|
494
494
|
display: flex;
|
|
495
495
|
overflow: auto;
|
|
496
496
|
flex-direction: column;
|
|
497
|
-
width:
|
|
497
|
+
width: 95%;
|
|
498
498
|
max-height: none !important;
|
|
499
499
|
|
|
500
500
|
.secont-option-title {
|
|
@@ -524,11 +524,22 @@
|
|
|
524
524
|
border-collapse: collapse;
|
|
525
525
|
width: 100%;
|
|
526
526
|
margin-bottom: 24px;
|
|
527
|
+
tr:last-child {
|
|
528
|
+
td {
|
|
529
|
+
padding-bottom: 16px;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
tr:first-child {
|
|
533
|
+
td {
|
|
534
|
+
padding-top: 16px;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
527
537
|
|
|
528
538
|
tr {
|
|
529
539
|
&:last-of-type {
|
|
530
540
|
td {
|
|
531
|
-
border-bottom: 1px solid
|
|
541
|
+
border-bottom: 1px solid var(--_gray-200);
|
|
542
|
+
border-right: 1px solid var(--_gray-200);
|
|
532
543
|
}
|
|
533
544
|
|
|
534
545
|
.option-cell {
|
|
@@ -536,7 +547,7 @@
|
|
|
536
547
|
}
|
|
537
548
|
|
|
538
549
|
.action-td {
|
|
539
|
-
border
|
|
550
|
+
border: none;
|
|
540
551
|
}
|
|
541
552
|
}
|
|
542
553
|
|
|
@@ -559,16 +570,24 @@
|
|
|
559
570
|
}
|
|
560
571
|
|
|
561
572
|
td.action-td {
|
|
562
|
-
width:
|
|
563
|
-
height:
|
|
573
|
+
width: 100px;
|
|
574
|
+
height: 120px;
|
|
564
575
|
display: flex;
|
|
565
576
|
align-items: center;
|
|
566
577
|
justify-content: center;
|
|
567
|
-
|
|
568
|
-
|
|
578
|
+
border-left: 1px solid var(--_gray-200);
|
|
579
|
+
padding-top: 16px;
|
|
569
580
|
.reset-icon {
|
|
570
581
|
cursor: pointer;
|
|
571
582
|
display: none;
|
|
583
|
+
padding: 12px;
|
|
584
|
+
border-radius: 8px;
|
|
585
|
+
&:hover {
|
|
586
|
+
background-color: var(--_gray-100);
|
|
587
|
+
}
|
|
588
|
+
span {
|
|
589
|
+
display: flex;
|
|
590
|
+
}
|
|
572
591
|
}
|
|
573
592
|
}
|
|
574
593
|
td.option-cell:first-child {
|