0
0
Fork 0

add asynchronous emojione-picker (code-splitting) (#2863)

This commit is contained in:
Nolan Lawson 2017-05-06 17:42:38 -07:00 committed by Eugen Rochko
parent 87588fa894
commit df81bc4a97
4 changed files with 54 additions and 7 deletions

View file

@ -2141,6 +2141,20 @@ button.icon-button.active i.fa-retweet {
background: radial-gradient(ellipse, rgba($color4, 0.23) 0%, rgba($color4, 0) 60%);
}
@keyframes pulse {
0% {
opacity: 1;
}
100% {
opacity: 0.5;
}
}
.pulse-loading {
animation: pulse 1s ease-in-out infinite;
animation-direction: alternate;
}
.emoji-dialog {
width: 245px;
height: 270px;