From aaa967eafec44b6107087f46a1a17b4fe12594d5 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Mon, 15 Aug 2022 13:47:25 +0200 Subject: [PATCH] Fixed missing quote indicators in comment emails refs. https://github.com/TryGhost/Team/issues/1794 - left border was missing for quotes in comment related emails --- .../services/comments/email-templates/new-comment-reply.hbs | 5 +++++ .../server/services/comments/email-templates/new-comment.hbs | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ghost/core/core/server/services/comments/email-templates/new-comment-reply.hbs b/ghost/core/core/server/services/comments/email-templates/new-comment-reply.hbs index a06eee5ac5..dbf5be7636 100644 --- a/ghost/core/core/server/services/comments/email-templates/new-comment-reply.hbs +++ b/ghost/core/core/server/services/comments/email-templates/new-comment-reply.hbs @@ -96,6 +96,11 @@ a { color: #15212A; } + blockquote { + margin-left: 0; + padding-left: 20px; + border-left: 3px solid #DDE1E5; + } diff --git a/ghost/core/core/server/services/comments/email-templates/new-comment.hbs b/ghost/core/core/server/services/comments/email-templates/new-comment.hbs index 2e0ff49c54..e670d57506 100644 --- a/ghost/core/core/server/services/comments/email-templates/new-comment.hbs +++ b/ghost/core/core/server/services/comments/email-templates/new-comment.hbs @@ -96,6 +96,11 @@ a { color: #15212A; } + blockquote { + margin-left: 0; + padding-left: 20px; + border-left: 3px solid #DDE1E5; + }