Created
June 30, 2012 23:51
-
-
Save DeviaVir/3026073 to your computer and use it in GitHub Desktop.
SASS: Add a folder with emoticons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$icon-map: sprite-map("chat/emoticons/*.png") | |
$list: angry bluecry blueshock bluexlshock crazy cry crylaugh dead grin happy kiss lovehappy no nodont nowkiss ohcrywhy ohgodno sick sleepyhappy smirk stupidhappy unhappy unhappycry what whocares wink xlangry xlhappy xlunhappy xxlhappy | |
.emoticon | |
background: $icon-map | |
width: 24px | |
height: 24px | |
background-size: 24px 744px | |
@each $smiley in $list | |
.emoticon.#{$smiley} | |
$pos: sprite-position($icon-map, #{$smiley}) | |
background-position: nth($pos, 1) / 2 nth($pos, 2) / 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment