Skip to content

Commit

Permalink
Ensure emoji render with regular font-weight (go-gitea#11541)
Browse files Browse the repository at this point in the history
Emoji characters don't support bold attributes and may do weird things
like rendering monochrome when bolded.
  • Loading branch information
silverwind authored and Yohann Delafollye committed Jul 31, 2020
1 parent 32fa7f0 commit 6e81518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web_src/less/_base.less
Original file line number Diff line number Diff line change
Expand Up @@ -1257,9 +1257,9 @@ i.icon.centerlock {
.reaction {
font-size: 1.5em;
line-height: 1.2;
font-weight: 400;
font-style: normal !important;
font-weight: normal !important;
vertical-align: middle;
font-style: normal;
}

#issue-title > .emoji {
Expand Down

0 comments on commit 6e81518

Please sign in to comment.