From c4373186f904c4ffc86c83c5f9d58ca296bf6db7 Mon Sep 17 00:00:00 2001 From: Lucas Cimon Date: Thu, 16 Apr 2020 04:28:39 +0200 Subject: [PATCH] Fixing likes counter of replies not being displayed (#637) Until this fix, likes counters of replies are only displayed if the parent comment has likes. This is because the previous CSS rule there applied to **all** HTML children of the element with the `isso-no-votes` class, not only its own footer likes ounter. With this PR we get the expected behaviour --- isso/css/isso.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isso/css/isso.css b/isso/css/isso.css index bfd96ec..1c315e6 100644 --- a/isso/css/isso.css +++ b/isso/css/isso.css @@ -152,7 +152,7 @@ .isso-comment .isso-postbox { margin-top: 0.8em; } -.isso-comment.isso-no-votes span.votes { +.isso-comment.isso-no-votes > * > .isso-comment-footer span.votes { display: none; }