This commit is contained in:
albert
2013-03-02 23:29:10 -05:00
parent bf0f8997d8
commit a5a2bedc52
2 changed files with 8 additions and 0 deletions

View File

@@ -169,6 +169,10 @@
$post.addClass("post-status-flagged");
}
if (status.match(/deleted/)) {
$post.addClass("post-status-deleted");
}
if ($post.data("parent-id")) {
$post.addClass("post-status-has-parent");
}

View File

@@ -26,6 +26,10 @@ article.post-preview {
border: 2px solid #CC0;
}
.post-preview.post-status-deleted img {
border: 2px solid #000;
}
.post-preview.post-status-has-children img {
border: 2px solid #0F0;
}