Fix blacklists not working on /comments page.

This rule:

    .post-preview.blacklisted-active, #image-container.blacklisted-active, #c-comments .post.blacklisted-active {
      display: none;
    }

was being overridden by this rule:

    div#c-comments div#a-index div.post, div#c-comments div#a-show div.post {
      display: flex;
    }
This commit is contained in:
evazion
2019-10-01 00:18:11 -05:00
parent f6d63b6843
commit 1291505546
2 changed files with 17 additions and 1 deletions

View File

@@ -41,5 +41,5 @@
}
.post-preview.blacklisted-active, #image-container.blacklisted-active, #c-comments .post.blacklisted-active {
display: none;
display: none !important;
}