aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base/delete_modal_actions.tmpl
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2020-10-21 23:07:33 +0200
committerGitHub <noreply@github.com>2020-10-21 22:07:33 +0100
commit83106c166d8708f6ce5fd5c65ce4a4ad6943c48d (patch)
treed083d90e21f9c18495e02c62f0e3eeeb0dd97f91 /templates/base/delete_modal_actions.tmpl
parenta06ea38207982fa5b51fc98f4107ac9bbaf97d1d (diff)
downloadgitea-83106c166d8708f6ce5fd5c65ce4a4ad6943c48d.tar.gz
gitea-83106c166d8708f6ce5fd5c65ce4a4ad6943c48d.zip
Replace footer and modal icons with SVG (#13245)
- Replace two font icons with SVG in the footer - Replace icons in delete modals with SVG - Horizontally center message text in modals
Diffstat (limited to 'templates/base/delete_modal_actions.tmpl')
-rw-r--r--templates/base/delete_modal_actions.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/base/delete_modal_actions.tmpl b/templates/base/delete_modal_actions.tmpl
index a889c67e5a..7a0760b125 100644
--- a/templates/base/delete_modal_actions.tmpl
+++ b/templates/base/delete_modal_actions.tmpl
@@ -1,10 +1,10 @@
<div class="actions">
<div class="ui red basic inverted cancel button">
- <i class="remove icon"></i>
+ {{svg "octicon-trashcan"}}
{{.i18n.Tr "modal.no"}}
</div>
<div class="ui green basic inverted ok button">
- <i class="checkmark icon"></i>
+ {{svg "octicon-check"}}
{{.i18n.Tr "modal.yes"}}
</div>
</div>