1
0
Fork 0
forked from forgejo/forgejo

[BUG] Render emojis in labels in issue info popup

- Currently emojis that are part of the label's name aren't rendered
when shown in the popup that you get when you hover over issue
references.
- This patch fixes that by rendering the emoji.
- Adds CSS to not make the emoji big in the label.
- Resolves #1531
This commit is contained in:
Gusted 2024-03-29 20:41:13 +01:00
parent 053ab13f99
commit ddc24177dd
No known key found for this signature in database
GPG key ID: FD821B732837125F
6 changed files with 221 additions and 13 deletions

View file

@ -3010,3 +3010,7 @@ tbody.commit-list {
margin-top: -1px;
border-top: 1px solid var(--color-secondary);
}
#issue-info-popup .emoji {
font-size: inherit;
line-height: inherit;
}