@sc-360-v2/storefront-cms-library 0.3.39 → 0.3.40
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 +120 -2
- package/dist/buyForPopup.scss +41 -7
- package/dist/cart-details.scss +30 -30
- package/dist/cartAttributes.scss +97 -0
- package/dist/cartDropdownOverlay.scss +6 -0
- package/dist/checkout.scss +1007 -719
- package/dist/functions.js +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/modal.scss +24 -0
- package/dist/review-cart.scss +196 -0
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +412 -288
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +1747 -38
- package/dist/types/builder/tools/element-edit/checkout.d.ts +793 -254
- package/dist/video.scss +16 -7
- package/dist/widget.scss +1 -0
- package/package.json +1 -1
package/dist/video.scss
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
@use "./functions.scss" as *;
|
|
1
4
|
[data-div-type="element"] {
|
|
2
5
|
&[data-element-type="video"] {
|
|
3
6
|
// width: var(--_sf-nw-wh, var(--_tst-lt-wh));
|
|
@@ -318,6 +321,9 @@
|
|
|
318
321
|
}
|
|
319
322
|
|
|
320
323
|
.video__icon {
|
|
324
|
+
display: var(--_d-flex);
|
|
325
|
+
align-items: center;
|
|
326
|
+
justify-content: center;
|
|
321
327
|
cursor: pointer;
|
|
322
328
|
position: absolute;
|
|
323
329
|
top: 50%;
|
|
@@ -327,14 +333,17 @@
|
|
|
327
333
|
--_ctm-mob-dn-py-pe-bd-cr,
|
|
328
334
|
var(--_ctm-tab-dn-py-pe-bd-cr, var(--_ctm-dn-py-pe-bd-cr))
|
|
329
335
|
);
|
|
330
|
-
padding: var(--_ctm-mob-dn-py-pe-pd, var(--_ctm-tab-dn-py-pe-pd, 6%));
|
|
336
|
+
// padding: var(--_ctm-mob-dn-py-pe-pd, var(--_ctm-tab-dn-py-pe-pd, 6%));
|
|
331
337
|
|
|
332
|
-
width: calc(
|
|
333
|
-
|
|
334
|
-
);
|
|
335
|
-
height: calc(
|
|
336
|
-
|
|
337
|
-
);
|
|
338
|
+
// width: calc(
|
|
339
|
+
// var(--_ctm-mob-dn-py-pe-se, var(--_ctm-tab-dn-py-pe-se, var(--_ctm-dn-py-pe-se))) + 40px
|
|
340
|
+
// );
|
|
341
|
+
// height: calc(
|
|
342
|
+
// var(--_ctm-mob-dn-py-pe-se, var(--_ctm-tab-dn-py-pe-se, var(--_ctm-dn-py-pe-se))) + 40px
|
|
343
|
+
// );
|
|
344
|
+
--_perc: 2.5;
|
|
345
|
+
width: calc(var(--_perc) * #{prepareMediaVariable(--_ctm-dn-py-pe-se)});
|
|
346
|
+
height: calc(var(--_perc) * #{prepareMediaVariable(--_ctm-dn-py-pe-se)});
|
|
338
347
|
|
|
339
348
|
svg {
|
|
340
349
|
width: var(
|
package/dist/widget.scss
CHANGED