File: emoticons.scss

package info (click to toggle)
libjs-jsxc 3.0.0%2Bdfsg3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 16,856 kB
  • ctags: 2,731
  • sloc: makefile: 13; sh: 1
file content (16 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.jsxc_emoticon {
    display: inline-block;
    width: 19px;
    height: 19px;
    background-size: contain;
    border: 0;
    vertical-align: bottom;
}

$emoticons: angel, angry, smile, grin, sad, wink, tonguesmile, surpised, kiss, sunglassess, crysad, doubt, zip, thumbsup, thumbsdown, beer, devil, kissing, rose, music, love, tired, surprised;

@each $emoticon in $emoticons {
    .jsxc_#{$emoticon} {
        background: image-url("emotions/#{$emoticon}.png");
    }
}