hi,
I want to keep the same order as http://emojione.com/. The Emoji & Also categories should be order from Top used to less used.
Could we re-order it on plugin dashboard?
hi,
I want to keep the same order as http://emojione.com/. The Emoji & Also categories should be order from Top used to less used.
Could we re-order it on plugin dashboard?
Re: Change upvote/downvote icons?
Hi All,
I make this CSS based on Above topic. And it work well on my Test Forum 1.16.2. Not Voted and Voted will have differnt Icon.
span.votes {
// not voted is outline
.fa-chevron-up:before {
content: "\f087";
}
// upvoted is solid
.upvoted .fa-chevron-up:before {
content: "\f164";
}
.fa-chevron-down:before {
content: "\f088";
}
.downvoted .fa-chevron-down:before {
content: "\f165";
}
}
Result:
However on my NodeBB hosted service v 1.18.5 The Icon before vote doesnt appear. If I use same icon for Voted and Not Voted it will appear (Down Vote is using same Icon so it appear).
After Vote
Could you guy please help me fix this CSS. I just want 2 "state" Icon for not voted and voted!
Thanks