diff options
author | David Svantesson <davidsvantesson@gmail.com> | 2020-01-18 12:30:35 +0100 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2020-01-18 12:30:35 +0100 |
commit | 0641965860bc5ebcb1c85067976099986d0136c6 (patch) | |
tree | b884c147eb58db14e31d829157d4c114cb07ff72 | |
parent | aac8250b473600549105e8fd499a8d18f5bb3dd0 (diff) | |
download | gitea-0641965860bc5ebcb1c85067976099986d0136c6.tar.gz gitea-0641965860bc5ebcb1c85067976099986d0136c6.zip |
Change won't sign information text to black. (#9843)
* Change won't sign information text to black.
* icon and text same color
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
-rw-r--r-- | templates/repo/issue/view_content/pull.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/issue/view_content/pull.tmpl b/templates/repo/issue/view_content/pull.tmpl index d15237137d..e0a48442e0 100644 --- a/templates/repo/issue/view_content/pull.tmpl +++ b/templates/repo/issue/view_content/pull.tmpl @@ -129,7 +129,7 @@ {{$.i18n.Tr "repo.pulls.require_signed_wont_sign"}} </div> <div class="item text yellow"> - <i class="icon unlock grey"></i> + <i class="icon unlock"></i> {{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }} </div> {{end}} @@ -152,8 +152,8 @@ {{$.i18n.Tr "repo.signing.will_sign" .SigningKey}} </div> {{else if .IsSigned}} - <div class="item text yellow"> - <i class="icon unlock grey"></i> + <div class="item text"> + <i class="icon unlock"></i> {{$.i18n.Tr (printf "repo.signing.wont_sign.%s" .WontSignReason) }} </div> {{end}} |