mirror of https://github.com/zulip/zulip.git
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.
This commit is contained in:
parent
f5190ea4de
commit
40f0663d9d
|
@ -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%;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue