From 40f0663d9d578409e7beceacbae35cf9805a3abb Mon Sep 17 00:00:00 2001 From: Daniil Fadeev Date: Wed, 12 Apr 2023 12:20:46 +0400 Subject: [PATCH] emails: Fix background-color styling. This issue was introduced after we changed the library we use for inlining CSS into email HTML. For some reason, the styles in email.css were not applied earlier but were applied after we migrated to css-inline. With this commit, we have fixed the regression in background-color of email body. Fixes #25083. --- templates/zerver/emails/email.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/templates/zerver/emails/email.css b/templates/zerver/emails/email.css index c3e4f5f506..bd061f41c5 100644 --- a/templates/zerver/emails/email.css +++ b/templates/zerver/emails/email.css @@ -11,7 +11,6 @@ img { } body { - background-color: #f5f9f8; font-family: sans-serif; font-size: 14px; line-height: 1.4; @@ -40,7 +39,6 @@ table td { } .body { - background-color: #f5f9f8; width: 100%; }