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
This commit is contained in:
Lucas Cimon 2020-04-16 04:28:39 +02:00 committed by GitHub
parent 54f8fb7a7f
commit c4373186f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}