From 275bf41ba3fb2bf46a02815ee78521ff7c6aff55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20Lopez=20Due=C3=B1as?= Date: Mon, 3 Aug 2020 12:38:45 -0500 Subject: [PATCH] Fixed bookmark card image size in fastmail (#11970) closes #11907 The image in the bookmark card was being shown out of the bounds of the card because of a general style `height: auto !important`. I added a new `max-height` property to the image to avoid exceeding parent height. --- core/server/services/mega/template.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/server/services/mega/template.js b/core/server/services/mega/template.js index 9beac5cbc9..15491f83f3 100644 --- a/core/server/services/mega/template.js +++ b/core/server/services/mega/template.js @@ -421,6 +421,7 @@ figure blockquote p { border-radius: 0 3px 3px 0; object-fit: cover; + max-height: 100%; } .kg-bookmark-metadata {