Paragraph table shrink
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #3522015. --> Reported by: [marco.pagliarulo](https://www.drupal.org/user/325020) Related to !722 !723 !611 >>> <h3 id="summary-problem-motivation">Problem/Motivation</h3> <p>Tables inside paragraphs are resized incorrectly.<br> <img src="https://www.drupal.org/files/issues/2025-04-30/image-table-paragraph.png" alt="Image Table inside paragraph"><br> The issue has been introduced by <a href="https://www.drupal.org/project/gin/issues/3348101">https://www.drupal.org/project/gin/issues/3348101</a><br> It uses a CSS selector which catches all the tables, not only the wrapper ones intended to be fixed by #3348101<br> <code>.paragraphs-tabs-wrapper .field-multiple-table .draggable</code></p> <h4 id="summary-steps-reproduce">Steps to reproduce</h4> <ol> <li>Create a Paragraph</li> <li>Add an image field allowing multiple values</li> <li>Set the form display for the field to Entity Browser</li> </ol> <h3 id="summary-proposed-resolution">Proposed resolution</h3> <p>The solution is to use a stricter selector<br> <code>.paragraphs-tabs-wrapper .field-multiple-table &gt; tbody &gt; .draggable</code><br> Proposed patch <a href="https://www.drupal.orgParagraph-table-shrink-3522015.patch%20"></a></p> <p>The same issue is replicable on version 4.x</p> > Related issue: [Issue #3493765](https://www.drupal.org/node/3493765) > Related issue: [Issue #3515484](https://www.drupal.org/node/3515484) > Related issue: [Issue #3348101](https://www.drupal.org/node/3348101)
issue