Remove margin-top from <hr> in flat message view.
authorJonathan S. Katz <jonathan.katz@excoventures.com>
Mon, 11 Jun 2018 18:38:29 +0000 (14:38 -0400)
committerJonathan S. Katz <jonathan.katz@excoventures.com>
Mon, 11 Jun 2018 18:38:29 +0000 (14:38 -0400)
This is no longer needed with the previous change how whitespace
and newlines are displayed in messages.

django/archives/mailarchives/templates/message_flat.html

index 0eeb4d792c0260599a19c37e1ecabc186ad8b2eb..2290f04bedf9f17cd2d3794b16074bca010bb1f6 100644 (file)
@@ -20,7 +20,7 @@ window.onload = load;
 <a name="{{m.messageid}}"></a>
 {% include '_message.html' with msg=m show_all=True %}
 {% if not forloop.last %}
-  <hr style="margin-top: 0.5rem; margin-bottom: 0.5rem;" />
+  <hr style="margin-bottom: 0.5rem;" />
 {% endif %}
 {%endfor%}
 {%endblock%}