diff options
author | EpicCoder <EpicCoder@users.noreply.github.com> | 2019-01-30 00:11:53 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-01-29 18:11:53 -0500 |
commit | c62c0b669abd44a51197f3d1b2489447ac4c5c9e (patch) | |
tree | 2ea24cc509d831453e95de6edb57ec0d479564dc /templates | |
parent | 2569363204cc3a766540b0a8db88edd001fc3497 (diff) | |
download | gitea-c62c0b669abd44a51197f3d1b2489447ac4c5c9e.tar.gz gitea-c62c0b669abd44a51197f3d1b2489447ac4c5c9e.zip |
UI: Change GPG Validation colors and remove inline CSS; fixes #5404 (#5896)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/diff/page.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/repo/diff/page.tmpl b/templates/repo/diff/page.tmpl index cc8811848e..d8489dffb9 100644 --- a/templates/repo/diff/page.tmpl +++ b/templates/repo/diff/page.tmpl @@ -51,14 +51,14 @@ </div> {{if .Commit.Signature}} {{if .Verification.Verified }} - <div class="ui bottom attached positive message" style="text-align: initial;color: black;"> + <div class="ui bottom attached positive message"> <i class="green lock icon"></i> - <span style="color: #2C662D;">{{.i18n.Tr "repo.commits.signed_by"}}:</span> + <span>{{.i18n.Tr "repo.commits.signed_by"}}:</span> <a href="{{.Verification.SigningUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong></a> <{{.Commit.Committer.Email}}> - <span class="pull-right"><span style="color: #2C662D;">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span> {{.Verification.SigningKey.KeyID}}</span> + <span class="pull-right"><span>{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span> {{.Verification.SigningKey.KeyID}}</span> </div> {{else}} - <div class="ui bottom attached message" style="text-align: initial;color: black;"> + <div class="ui bottom attached message"> <i class="grey unlock icon"></i> {{.i18n.Tr .Verification.Reason}} </div> |