Product Gallery Large Image: Add wrapper to fix zoom (https://github.com/woocommerce/woocommerce-blocks/pull/11023)
* Product Gallery Large Image: Add wrapper to fix zoom * Product Gallery: Fix E2E test
This commit is contained in:
parent
25bac5f030
commit
a7b5812703
|
@ -28,6 +28,13 @@ $outside-image-max-width: calc(100% - (2 * $outside-image-offset));
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
// Restrict the width of the Large Image when the Next/Previous buttons are outside the image.
|
||||||
|
#{$gallery-next-previous-outside-image} & .wc-block-woocommerce-product-gallery-large-image__container {
|
||||||
|
overflow: hidden;
|
||||||
|
max-width: $outside-image-max-width;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
@ -40,11 +47,6 @@ $outside-image-max-width: calc(100% - (2 * $outside-image-offset));
|
||||||
&[hidden] {
|
&[hidden] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Restrict the width of the Large Image when the Next/Previous buttons are outside the image.
|
|
||||||
#{$gallery-next-previous-outside-image} & {
|
|
||||||
max-width: $outside-image-max-width;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wc-block-product-gallery-large-image__inner-blocks {
|
.wc-block-product-gallery-large-image__inner-blocks {
|
||||||
|
|
|
@ -35,8 +35,9 @@ class ProductGalleryUtils {
|
||||||
$attributes
|
$attributes
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$product_image_html = '<div class="wc-block-woocommerce-product-gallery-large-image__container">' . $product_image_html . '</div>';
|
||||||
$product_image_html_processor = new \WP_HTML_Tag_Processor( $product_image_html );
|
$product_image_html_processor = new \WP_HTML_Tag_Processor( $product_image_html );
|
||||||
$product_image_html_processor->next_tag();
|
$product_image_html_processor->next_tag( 'img' );
|
||||||
$product_image_html_processor->set_attribute(
|
$product_image_html_processor->set_attribute(
|
||||||
'data-wc-context',
|
'data-wc-context',
|
||||||
wp_json_encode(
|
wp_json_encode(
|
||||||
|
|
Loading…
Reference in New Issue