mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-06 02:15:20 +02:00
Remove last traces of has-emoji class (#11263)
Now that emojify.js has been removed, get rid of all instances of has-emoji class that was only used for that. Support for rendering shortcodes should remain in all of these places so it should still work the same. Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
parent
1bdffefc05
commit
4ed7d2a2bb
23 changed files with 68 additions and 59 deletions
|
@ -31,11 +31,11 @@
|
|||
<li class="item">
|
||||
<div class="ui grid middle aligned">
|
||||
<div class="four wide column">
|
||||
<div class="ui label" style="color: {{.ForegroundColor}}; background-color: {{.Color}}">{{svg "octicon-tag" 16}} {{.Name | RenderEmojiPlain}}</div>
|
||||
<div class="ui label" style="color: {{.ForegroundColor}}; background-color: {{.Color}}">{{svg "octicon-tag" 16}} {{.Name | RenderEmoji}}</div>
|
||||
</div>
|
||||
<div class="six wide column">
|
||||
<div class="ui has-emoji">
|
||||
{{.Description}}
|
||||
<div class="ui">
|
||||
{{.Description | RenderEmoji}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="three wide column">
|
||||
|
@ -74,11 +74,11 @@
|
|||
<li class="item">
|
||||
<div class="ui grid middle aligned">
|
||||
<div class="three wide column">
|
||||
<div class="ui label" style="color: {{.ForegroundColor}}; background-color: {{.Color}}">{{svg "octicon-tag" 16}} {{.Name | RenderEmojiPlain}}</div>
|
||||
<div class="ui label" style="color: {{.ForegroundColor}}; background-color: {{.Color}}">{{svg "octicon-tag" 16}} {{.Name | RenderEmoji}}</div>
|
||||
</div>
|
||||
<div class="seven wide column">
|
||||
<div class="ui has-emoji">
|
||||
{{.Description}}
|
||||
<div class="ui">
|
||||
{{.Description | RenderEmoji}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="three wide column">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue