Using CSS for custom emojis
This commit is contained in:
parent
cd2c7f782f
commit
077a96fb28
|
@ -50,7 +50,8 @@ class Processor
|
|||
public static function replaceEmojis($emojis, $body)
|
||||
{
|
||||
foreach ($emojis as $emoji) {
|
||||
$body = str_replace($emoji['name'], '[img=16x16]' . $emoji['href'] . '[/img]', $body);
|
||||
$replace = '[class=emoji mastodon][img=' . $emoji['href'] . ']' . $emoji['name'] . '[/img][/class]';
|
||||
$body = str_replace($emoji['name'], $replace, $body);
|
||||
}
|
||||
return $body;
|
||||
}
|
||||
|
|
|
@ -602,3 +602,8 @@ img.invalid-src:after { vertical-align: top;}
|
|||
#register-explicid-content {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.emoji.mastodon img {
|
||||
height: 1.2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue