diff --git a/app/assets/javascripts/blacklists.js b/app/assets/javascripts/blacklists.js index 499f5bab6..f7532ec56 100644 --- a/app/assets/javascripts/blacklists.js +++ b/app/assets/javascripts/blacklists.js @@ -130,7 +130,7 @@ } Danbooru.Blacklist.posts = function() { - return $(".post-preview, #image-container"); + return $(".post-preview, #image-container, #c-comments .post"); } Danbooru.Blacklist.post_match = function(post, entry) { diff --git a/app/assets/stylesheets/specific/comments.css.scss b/app/assets/stylesheets/specific/comments.css.scss index b71ed0657..b48570eea 100644 --- a/app/assets/stylesheets/specific/comments.css.scss +++ b/app/assets/stylesheets/specific/comments.css.scss @@ -131,7 +131,7 @@ div#c-comments { } } - div.post.blacklisted { + div.post.blacklisted.blacklisted-active { display: none; } diff --git a/app/assets/stylesheets/specific/posts.css.scss b/app/assets/stylesheets/specific/posts.css.scss index 4c6732143..3ae5b7b01 100644 --- a/app/assets/stylesheets/specific/posts.css.scss +++ b/app/assets/stylesheets/specific/posts.css.scss @@ -503,7 +503,7 @@ div#c-explore-posts { } } -div#c-explore-posts, div#c-post-appeals, div#c-post-flags, div#c-pools { +div#c-explore-posts, div#c-post-appeals, div#c-post-flags, div#c-pools, div#c-notes, div#c-comments { #blacklist-box { margin-bottom: 1em; } diff --git a/app/views/comments/index_by_post.html.erb b/app/views/comments/index_by_post.html.erb index 939498c9c..d49f4c54f 100644 --- a/app/views/comments/index_by_post.html.erb +++ b/app/views/comments/index_by_post.html.erb @@ -1,6 +1,9 @@