From bc0baf01702dd63eb9e5e9971b5e3d76aef18333 Mon Sep 17 00:00:00 2001 From: Grant Hutchins Date: Sun, 25 Oct 2020 13:08:30 -0500 Subject: [PATCH] Fix list style in post list Setting a list style of "none" for all list items within the #post-list is overly broad. We should only affect the direct child list items so that any
  • tags within a post retain their proper list style. --- static/assets/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/assets/css/style.css b/static/assets/css/style.css index 6ddec088..10ffc97d 100644 --- a/static/assets/css/style.css +++ b/static/assets/css/style.css @@ -318,11 +318,11 @@ Post List =========================================== */ -#post-list li { +#post-list > li { list-style-type: none; } -#post-list li:last-child { +#post-list > li:last-child { margin-bottom: 0; }