diff options
author | Iván Valdés <iv@a.ki> | 2020-10-21 16:47:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 19:47:16 -0400 |
commit | 819901b3e9c187aed1d29f7b58599ed61075781a (patch) | |
tree | e12996844c3bc7b52ffe402431b2dfca163336b7 /templates/repo/diff/comments.tmpl | |
parent | 327f18c3b28225dcfcaa0409b880136f7e1d1bf6 (diff) | |
download | gitea-819901b3e9c187aed1d29f7b58599ed61075781a.tar.gz gitea-819901b3e9c187aed1d29f7b58599ed61075781a.zip |
Update outdated label to use Fomantic UI style (#13181)
* Update outdated label to use Fomantic UI style
* Use native labels rather than custom style
* Remove leading zero
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'templates/repo/diff/comments.tmpl')
-rw-r--r-- | templates/repo/diff/comments.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/diff/comments.tmpl b/templates/repo/diff/comments.tmpl index 097d437a6d..076d2d969e 100644 --- a/templates/repo/diff/comments.tmpl +++ b/templates/repo/diff/comments.tmpl @@ -21,11 +21,11 @@ <div class="ui right actions"> {{if and .Review}} {{if eq .Review.Type 0}} - <div class="item tag review pending"> + <div class="ui label basic small yellow"> {{$.root.i18n.Tr "repo.issues.review.pending"}} </div> {{else}} - <div class="item tag review"> + <div class="ui label basic small"> {{$.root.i18n.Tr "repo.issues.review.review"}} </div> {{end}} |