Fix custom emoji in emoji picker, persist skin tone (#5258)
This commit is contained in:
parent
967e70663f
commit
d2dee6ea43
4 changed files with 66 additions and 22 deletions
|
@ -2653,19 +2653,36 @@ button.icon-button.active i.fa-retweet {
|
|||
flex-direction: column;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
opacity: 1;
|
||||
@keyframes heartbeat {
|
||||
from {
|
||||
transform: scale(1);
|
||||
transform-origin: center center;
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0.5;
|
||||
10% {
|
||||
transform: scale(0.91);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
|
||||
17% {
|
||||
transform: scale(0.98);
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
|
||||
33% {
|
||||
transform: scale(0.87);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
|
||||
45% {
|
||||
transform: scale(1);
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
}
|
||||
|
||||
.pulse-loading {
|
||||
animation: pulse 1s ease-in-out infinite;
|
||||
animation-direction: alternate;
|
||||
animation: heartbeat 1.5s ease-in-out infinite both;
|
||||
}
|
||||
|
||||
.emoji-picker-dropdown__menu {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue