Use gray for deleted, red for reported

This commit is contained in:
Paul Kaplan 2018-10-10 11:25:16 -04:00
parent c19adee84a
commit 6b4e0595d0

View file

@ -150,9 +150,9 @@
content: "";
}
&.comment-bubble-deleted, &.comment-bubble-reported {
$deleted-outline: #ff6680;
$deleted-background: rgb(236, 206, 223);
&.comment-bubble-deleted {
$deleted-outline: $active-gray;
$deleted-background: rgb(215, 222, 234);
border-color: $deleted-outline;
background-color: $deleted-background;
@ -162,6 +162,19 @@
background: $deleted-background;
}
}
&.comment-bubble-reported {
$reported-outline: #ff6680;
$reported-background: rgb(236, 206, 223);
border-color: $reported-outline;
background-color: $reported-background;
&:before {
border-color: $reported-outline transparent $reported-outline $reported-outline;
background: $reported-background;
}
}
}
.comment-content {