diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-10-22 10:32:46 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-10-22 10:40:29 -0400 |
commit | aaa30ead41532fa920f3c5e0298ed52196d7fe3a (patch) | |
tree | e6fff4f451f00b072f0f526d73807119d52d953a /themes/alps/assets | |
parent | c20df8da30e80423b3558023c2848eb6cc78fcda (diff) | |
download | alps-aaa30ead41532fa920f3c5e0298ed52196d7fe3a.tar.gz alps-aaa30ead41532fa920f3c5e0298ed52196d7fe3a.zip |
Handle \Deleted emails in message list
This can happen if an email is deleted by an external client, and this
change fixes a template crash in such cases.
I elected to display (deleted email) rather than to hide deleted
messages so that, if the message is unread, it provides an explanation
for your inbox showing $n unread emails where $n > number of non-deleted
emails.
This partially addresses ~migadu/alps#121
Diffstat (limited to 'themes/alps/assets')
-rw-r--r-- | themes/alps/assets/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/themes/alps/assets/style.css b/themes/alps/assets/style.css index f91a271..6d107de 100644 --- a/themes/alps/assets/style.css +++ b/themes/alps/assets/style.css @@ -291,6 +291,11 @@ main.create-update .event-date input { .message-list-unread.message-list-sender, .message-list-unread.message-list-date { color: black;} +.message-list-unread.message-list-subject { + font-weight: normal; + color: #555; +} + .message-list-date { text-align: right; } |