Product Image Gallery block: Fix overflow when multiple images are used (https://github.com/woocommerce/woocommerce-blocks/pull/10013)
* Fix Product Image Gallery block overflow when multiple images are used * Increase css specificity for the Product Image Gallery images * Fix whitespace * Fix style issue when using smaller images in the product image gallery
This commit is contained in:
parent
f1df8fb975
commit
388605027b
|
@ -2,6 +2,7 @@
|
|||
position: relative;
|
||||
// This is necessary to calculate the correct width of the gallery. https://www.lockedownseo.com/parent-div-100-height-child-floated-elements/#:~:text=Solution%20%232%3A%20Float%20Parent%20Container
|
||||
clear: both;
|
||||
max-width: 512px;
|
||||
|
||||
span.onsale {
|
||||
right: unset;
|
||||
|
@ -19,6 +20,5 @@
|
|||
|
||||
|
||||
.woocommerce .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery.images {
|
||||
width: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ const getBlockifiedTemplate = () =>
|
|||
{
|
||||
type: 'constrained',
|
||||
justifyContent: 'right',
|
||||
width: '512px',
|
||||
},
|
||||
[ createBlock( 'woocommerce/product-image-gallery' ) ]
|
||||
),
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
<!-- wp:columns {"align":"wide"} -->
|
||||
<div class="wp-block-columns alignwide">
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column">
|
||||
<!-- wp:column {"width":"512px"} -->
|
||||
<div class="wp-block-column" style="flex-basis:512px">
|
||||
<!-- wp:woocommerce/product-image-gallery /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
|
Loading…
Reference in New Issue