Commit 6b4e0595 authored by Paul Kaplan's avatar Paul Kaplan

Use gray for deleted, red for reported

parent c19adee8
......@@ -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 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment