From: Jonathan S. Katz Date: Wed, 2 May 2018 19:37:18 +0000 (-0400) Subject: Fix spacing between content and navigation in archives code. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=f17256558346b7e53304b8e2507a32fce0ed86ae;p=pgarchives.git Fix spacing between content and navigation in archives code. --- diff --git a/django/archives/mailarchives/templates/page.html b/django/archives/mailarchives/templates/page.html index 8d44d54..fed0163 100644 --- a/django/archives/mailarchives/templates/page.html +++ b/django/archives/mailarchives/templates/page.html @@ -1,6 +1,6 @@ {%extends "base.html" %} {%block layoutblock%} -
+
diff --git a/django/media/css/main.css b/django/media/css/main.css index 86cbb4f..3073a47 100644 --- a/django/media/css/main.css +++ b/django/media/css/main.css @@ -725,6 +725,15 @@ th.formfieldnamecontainer { } /** This code is for pgarchives */ + +/** + * general navigation padding just for the archives; removable after the + * universal notifier is available + */ + .archive { + margin-top: 4rem; + } + /** Thread Lists */ .thread-list { font-size: 0.8em; @@ -800,6 +809,10 @@ h1.subject { } @media (max-width: 992px) { + .archive { + margin-top: 2rem; + } + .navbar { padding: 5px 10px; }