diff options
author | silverwind <me@silverwind.io> | 2020-12-09 20:03:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 14:03:19 -0500 |
commit | c85bb6263503ebd335863f413214a775973a1fac (patch) | |
tree | 4264266101a847d0895d6c9ad6442f9cb240b1db /templates/admin/notice.tmpl | |
parent | 6edfa6bc88ed73fc5a31f1b2fe9f5587c932ada7 (diff) | |
download | gitea-c85bb6263503ebd335863f413214a775973a1fac.tar.gz gitea-c85bb6263503ebd335863f413214a775973a1fac.zip |
Replace more icons with SVG, repo search tweaks (#13860)
* Replace more icons with SVG
- Replace remaining icons on admin page with SVG
- Fix vertical menu background on arc-green
- Minor improvments to frontpage repo search
- More icon replacements here and there
* fix integration
* whitespace tweak
* add comment
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/admin/notice.tmpl')
-rw-r--r-- | templates/admin/notice.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin/notice.tmpl b/templates/admin/notice.tmpl index 3320f5884c..f9cda68df4 100644 --- a/templates/admin/notice.tmpl +++ b/templates/admin/notice.tmpl @@ -30,7 +30,7 @@ <td>{{$.i18n.Tr .TrStr}}</td> <td class="view-detail"><span class="notice-description text truncate">{{.Description}}</span></td> <td><span class="notice-created-time poping up" data-content="{{.CreatedUnix.AsTime}}" data-variation="inverted tiny">{{.CreatedUnix.FormatShort}}</span></td> - <td><a href="#"><i class="browser icon view-detail"></i></a></td> + <td><a href="#">{{svg "octicon-note" 16 "view-detail"}}</a></td> </tr> {{end}} </tbody> @@ -74,7 +74,7 @@ </div> <div class="ui modal admin" id="detail-modal"> - <i class="close icon inside"></i> + {{svg "octicon-x" 16 "close inside"}} <div class="header">{{$.i18n.Tr "admin.notices.view_detail_header"}}</div> <div class="content"> <div class="sub header"></div> |