diff options
author | silverwind <me@silverwind.io> | 2020-10-21 23:07:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 22:07:33 +0100 |
commit | 83106c166d8708f6ce5fd5c65ce4a4ad6943c48d (patch) | |
tree | d083d90e21f9c18495e02c62f0e3eeeb0dd97f91 /templates/org | |
parent | a06ea38207982fa5b51fc98f4107ac9bbaf97d1d (diff) | |
download | gitea-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/org')
-rw-r--r-- | templates/org/settings/delete.tmpl | 2 | ||||
-rw-r--r-- | templates/org/team/new.tmpl | 2 | ||||
-rw-r--r-- | templates/org/team/repositories.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/org/settings/delete.tmpl b/templates/org/settings/delete.tmpl index 54d60f93f0..a8d42b5476 100644 --- a/templates/org/settings/delete.tmpl +++ b/templates/org/settings/delete.tmpl @@ -32,7 +32,7 @@ <div class="ui small basic delete modal"> <div class="ui icon header"> - <i class="trash icon"></i> + {{svg "octicon-trashcan"}} {{.i18n.Tr "org.settings.delete_org_title"}} </div> <div class="content"> diff --git a/templates/org/team/new.tmpl b/templates/org/team/new.tmpl index 228f86824a..eeb9b1186a 100644 --- a/templates/org/team/new.tmpl +++ b/templates/org/team/new.tmpl @@ -116,7 +116,7 @@ <div class="ui small basic delete modal"> <div class="ui icon header"> - <i class="trash icon"></i> + {{svg "octicon-trashcan"}} {{.i18n.Tr "org.teams.delete_team_title"}} </div> <div class="content"> diff --git a/templates/org/team/repositories.tmpl b/templates/org/team/repositories.tmpl index de39fee2ea..16418b474d 100644 --- a/templates/org/team/repositories.tmpl +++ b/templates/org/team/repositories.tmpl @@ -66,7 +66,7 @@ <div class="ui small basic delete modal"> <div class="ui icon header"> - <i class="trash icon"></i> + {{svg "octicon-trashcan"}} {{.i18n.Tr "org.teams.remove_all_repos_title"}} </div> <div class="content"> |