From c5c7a31ffadbbeed7b7aae7a73f85ed4d5ce17b3 Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Tue, 3 Sep 2024 11:24:41 +0100 Subject: [PATCH] Fix image upload modal dropzone overflow (#20102) GitOrigin-RevId: 8caf4e631056ed00b167cff8a6cccea0e0ff8ae7 --- services/web/frontend/stylesheets/app/editor/file-tree.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/web/frontend/stylesheets/app/editor/file-tree.less b/services/web/frontend/stylesheets/app/editor/file-tree.less index aff1910142..4f808b9e01 100644 --- a/services/web/frontend/stylesheets/app/editor/file-tree.less +++ b/services/web/frontend/stylesheets/app/editor/file-tree.less @@ -397,6 +397,7 @@ padding: 0; table { width: 100%; + table-layout: fixed; td { vertical-align: top; } @@ -538,5 +539,6 @@ .uppy-Dashboard-AddFiles-title { width: 26em; // sized to create a wrap between the sentences + max-width: 100%; } }