Fix #3398: Show "(deleted)" next to topics in forum searches.

This commit is contained in:
evazion
2017-11-24 15:58:45 -06:00
parent 49a5b819bd
commit b62b16b5a2
2 changed files with 12 additions and 7 deletions

View File

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