1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
* Added: Emote cards are now at parity with vanilla Twitch emote cards when it comes to displaying Twitch emotes, including the ability to follow/subscribe to the source channel, view their other emotes, and report emotes.
* Added: Emote cards for FFZ emotes now allow you to add an emote to any collection you can manage.
* Added: Emote cards for other emotes now have an action to open the emote on the source service's webpage.
* Fixed: Effect emotes not appearing when used incorrectly in chat.
* Fixed: Rebuild the tab-completion emote array in a way more likely to cause Twitch's native input element to update when we change our emotes.
* Changed: Use a higher contrast "New" pill when displaying new items in the FFZ Control Center. (Closes #1348)
* Changed: Push the modular chat line rendering experiment to 100% roll-out.
This commit is contained in:
SirStendec 2023-03-30 14:54:33 -04:00
parent 53814e7024
commit 880e80388a
25 changed files with 1382 additions and 54 deletions

View file

@ -15,6 +15,26 @@
100% { transform: rotateY(90deg) rotateX(0deg) }
}
@keyframes ffz-gentle-shake {
0% { transform: translate(20px) }
20% { transform: translate(-20px) }
40% { transform: translate(10px) }
60% { transform: translate(-10px) }
80% { transform: translate(5px) }
100% { transform: translate(0) }
}
@keyframes ffz--fade {
0% { opacity: 1 }
50% { opacity: 0.5 }
100% { opacity: 1 }
}
@keyframes ffz-rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.ffz--inline {
display: inline;
}
@ -64,6 +84,19 @@
right: 0.25rem;
}
.ffz--rotate {
animation: ffz-rotate 2s infinite linear;
}
.ffz--shaking {
animation: ffz-gentle-shake 0.4s 1 linear;
}
@media (prefers-reduced-motion: reduce) {
.ffz--shaking {
animation: fade 0.4s 1 linear;
}
}
.ffz-i-t-reset.loading,
.ffz-i-t-reset-clicked.loading,