diff --git a/app/assets/stylesheets/specific/forum.scss b/app/assets/stylesheets/specific/forum.scss index 5c0cddf61..9702d27da 100644 --- a/app/assets/stylesheets/specific/forum.scss +++ b/app/assets/stylesheets/specific/forum.scss @@ -64,7 +64,7 @@ div#c-forum-topics { } span.locked-topic { - color: #666; + color: gray; } span.level-topic { @@ -76,3 +76,11 @@ div#c-forum-topics { white-space: nowrap; } } + +#c-forum-posts #a-index { + tr[data-topic-is-deleted="true"] .forum-post-topic-title::after, + tr[data-is-deleted="true"] .forum-post-excerpt::after { + content: " (deleted)"; + color: gray; + } +} diff --git a/app/views/forum_posts/index.html.erb b/app/views/forum_posts/index.html.erb index e7e5d0237..9613706a6 100644 --- a/app/views/forum_posts/index.html.erb +++ b/app/views/forum_posts/index.html.erb @@ -12,13 +12,10 @@
<% @forum_posts.each do |forum_post| %> <% if CurrentUser.is_moderator? || !forum_post.is_deleted? %> -