UX: Disable highlight animation on deleted posts
This commit is contained in:
parent
cfec10a568
commit
69df19a663
|
@ -555,6 +555,12 @@ blockquote {
|
||||||
&.highlighted {
|
&.highlighted {
|
||||||
animation: background-fade-highlight 2.5s ease-out;
|
animation: background-fade-highlight 2.5s ease-out;
|
||||||
}
|
}
|
||||||
|
.deleted & {
|
||||||
|
// Disable so the deleted background is visible immediately
|
||||||
|
&.highlighted {
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-info {
|
.post-info {
|
||||||
|
|
Loading…
Reference in New Issue