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:
parent
54f8fb7a7f
commit
c4373186f9
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user