From 4e8e7348da840d39ae3da900e17505da35fbbcc5 Mon Sep 17 00:00:00 2001
From: Harshit Bansal
Date: Tue, 19 Sep 2017 09:35:11 +0000
Subject: [PATCH] notifications: Fix the ugly inactive scrollbar in missed
message emails.
Not sure why we have `overflow-y: scroll` in `messages` container in
missed messages email template when it is not a fixed width container
but anyway changing it to `overflow-y: auto` seems to be a safe change
as it will remove the ugly looking inactive scrollbar that was being
displayed there besides the `messages` container without changing the
functionality(if any).
---
templates/zerver/emails/missed_message.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/zerver/emails/missed_message.html b/templates/zerver/emails/missed_message.html
index 53e1c9064c..fbe459a7e7 100644
--- a/templates/zerver/emails/missed_message.html
+++ b/templates/zerver/emails/missed_message.html
@@ -17,7 +17,7 @@
While you were away you received {{ message_count }} new message{{ message_count|pluralize }}{% if mention %} in which you were mentioned{% endif %}!
-
+
{% for recipient_block in messages %}