fix(AdaptedStyles): support reply jump animation in dark mode

This commit is contained in:
Hakadao
2024-07-02 15:20:55 +08:00
parent f86ee7e132
commit 6d8feb6f96

View File

@@ -70,6 +70,21 @@
background-color: var(--bew-fill-1) !important;
}
.sub-reply-item.show-reply,
.reply-item .root-reply-container.show-reply {
background-color: var(--bew-fill-1);
animation: jumpReply 5s forwards;
}
@keyframes jumpReply {
0% {
background-color: var(--bew-theme-color-10);
}
100% {
background-color: var(--bew-fill-1);
}
}
// Like & dislike icon
.like-icon,
.dislike-icon,