From 60cab44a7b76cb28afa96a6803ca0aefcc74a0e6 Mon Sep 17 00:00:00 2001 From: Matthieu Leproux Date: Tue, 6 Sep 2022 11:54:23 +0200 Subject: [PATCH] fixed #1714 added size to images in upload summary so svg files are visible --- admin/themes/default/theme.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 451f20cbc..c04b646ec 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -5790,6 +5790,11 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important; #photosAddContent .Addedphotos #uploadedPhotos { display: flex; } +/* Here we add a width and height of 120px so svg are visible and the same size as square images */ +#uploadedPhotos img { + width: 120px; + height: 120px; +} #photosAddContent .Addedphotos a { margin-right: 5px; display: flex;