mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-03-25 12:20:24 -04:00
Use gray for deleted, red for reported
This commit is contained in:
parent
c19adee84a
commit
6b4e0595d0
1 changed files with 16 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue