universal.css icon indicating copy to clipboard operation
universal.css copied to clipboard

๐Ÿ’ก Icons support?

Open ChALkeR opened this issue 9 years ago โ€ข 2 comments

Example:

.universal-๐ŸŽ‰::before {
    display: inline;
    content: '๐ŸŽ‰';
}

<i class="universal-๐ŸŽ‰"></i> would show ยซ๐ŸŽ‰ยป. Isn't that great? And users could restyle that with any images they want (e.g. ยซ๐ŸŽ‰ยป)! Finally, universal portable icons for everyone.

Bonus: no more unobvious names, you won't have to remember those anymore.

ChALkeR avatar May 23 '16 17:05 ChALkeR

Why not directly :

๐Ÿป::before {
    display: inline-block;
    content: '๐Ÿป';
}

Shnoulle avatar May 25 '16 06:05 Shnoulle

@Shnoulle That would be perfect.

ChALkeR avatar Jul 28 '16 08:07 ChALkeR