Adds a custom emote box to the quick reply form on Holotower
To adjust the height of the emote list add this to User CSS:
#emote-list { max-height:400px !important }
Emotes in posts can be made bigger with this User CSS:
.post.reply img.c_emoji {
height: 40px;
width: 40px;
}
You can use CSS to apply fun effects and animations to specific emotes:
@keyframes laugh-jump {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.c_emoji[src*="saba/_HAHA.png"] {
animation: laugh-jump 0.25s ease-in-out infinite;
}