Automattic / themes

Free WordPress themes made by Automattic for WordPress.org and WordPress.com.
https://themeshaper.com
GNU General Public License v2.0
847 stars 342 forks source link

Cubic: resized Image Blocks displaying incorrect alignment when set to align Left/Right #7810

Open Robertght opened 1 month ago

Robertght commented 1 month ago

Quick summary

No response

Steps to reproduce

  1. Create a new page
  2. Add a paragraph and an image
  3. Resize the image
  4. Align the image to the right and see if the text goes around it.

What you expected to happen

To have the text go around it.

What actually happened

The image shows correctly for like a second but then it switches its position to center.

https://github.com/Automattic/themes/assets/14153300/e09d3fb8-7acf-4d47-a6d0-f8e4f8d87ea8

Browser

Google Chrome/Chromium, Apple Safari

Context

8193259-zen

Platform (Simple, Atomic, or both?)

Simple

Other notes

I was able to replicate this using the Site editor and the user using the Classic editor.

Reproducibility

Consistent

Severity

Some (< 50%)

Available workarounds?

Yes, easy to implement

Workaround details

Workaround:

/* Temp fix for the left/right images  | xxxxxx-zen rg */
@media screen and (min-width: 768px) {
    .wp-caption.caption-big.alignright, .alignright .image-big,     .wp-caption.caption-big.alignleft, .alignleft .image-big {
        max-width: 300px;
        padding: 5px 10px;
        margin-left: 24px;
    }
}
github-actions[bot] commented 1 month ago

Support References

This comment is automatically generated. Please do not edit it.

liviopv commented 1 month ago

📌 REPRODUCTION RESULTS

📌 FINDINGS/SCREENSHOTS/VIDEO CleanShot 2024-05-28 at 11 30 21@2x

📌 ACTIONS

📌 Message to Author @Robertght I wasn't able to replicate, the image is honoring the alignment on my tests. Can you check and confirm if you can still reproduce it?

Robertght commented 1 month ago

@liviopv I think the key here is to also resize the image a bit.

Tested on a simple site.

Here's my result: https://github.com/Automattic/themes/assets/6737345/8f66a832-2090-43d6-8ea0-dab6f6f9f762

PS: I notice that now the image gets left aligned, but it's not wrapped by the text, regardless of its alignment.

liviopv commented 3 weeks ago

@Robertght Thanks! I was able to reproduce after resizing the image:

https://github.com/Automattic/themes/assets/14153300/e09d3fb8-7acf-4d47-a6d0-f8e4f8d87ea8

I updated the repro instructions and title