Adds styles for deleted comments

This commit is contained in:
Alberto Garcia Cabeza
2015-08-27 20:21:26 +02:00
parent ec7da85949
commit 413a034e23
4 changed files with 20 additions and 8 deletions

View File

@@ -574,6 +574,8 @@
padding: rem-calc(6) rem-calc(12);
}
&.is-admin {
background: $comment-admin;
padding: rem-calc(6) rem-calc(12);
@@ -585,6 +587,12 @@
}
}
.is-deleted {
background: $deleted;
margin-left: rem-calc(42);
padding: rem-calc(6) rem-calc(12);
}
.comment-children {
border-left: 1px dashed $border;
margin-left: rem-calc(42);

View File

@@ -801,6 +801,10 @@ img.initialjs-avatar {
background: $association;
}
.is-deleted {
background: $deleted;
}
.level-1 {
background: $level-1;
}

View File

@@ -76,6 +76,7 @@ $level-5: #F08A24;
$author: #008CCF;
$association: #C0392B;
$deleted: #E7E7E7;
$comment-author: rgba(45,144,248,.15);
$comment-level-5: rgba(255,241,204,1);