diff options
author | Garrit Franke <32395585+garritfra@users.noreply.github.com> | 2021-04-29 19:05:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 13:05:07 -0400 |
commit | f67e36097a79df36c676e9caf73acd3e78c32cae (patch) | |
tree | a154e4091957cea6d4c8f882736af99f3a531adc | |
parent | d7dbe4feebac7805a4ca184f0989f58de8063d96 (diff) | |
download | gitea-f67e36097a79df36c676e9caf73acd3e78c32cae.tar.gz gitea-f67e36097a79df36c676e9caf73acd3e78c32cae.zip |
fix(settings): misaligned buttons (#15656)
Co-authored-by: 6543 <6543@obermui.de>
-rw-r--r-- | templates/repo/settings/lfs.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/settings/lfs.tmpl b/templates/repo/settings/lfs.tmpl index ab3d0211b6..38f74b8a9c 100644 --- a/templates/repo/settings/lfs.tmpl +++ b/templates/repo/settings/lfs.tmpl @@ -7,8 +7,8 @@ <h4 class="ui top attached header"> {{.i18n.Tr "repo.settings.lfs_filelist"}} ({{.i18n.Tr "admin.total" .Total}}) <div class="ui right"> - <a class="ui tiny show-panel button" href="{{.Link}}/locks"><span class="octicon-tiny">{{svg "octicon-lock"}}</span>{{.i18n.Tr "repo.settings.lfs_locks"}}</a> - <a class="ui primary tiny show-panel button" href="{{.Link}}/pointers"><span class="octicon-tiny">{{svg "octicon-search"}}</span> {{.i18n.Tr "repo.settings.lfs_findpointerfiles"}}</a> + <a class="ui tiny show-panel button" href="{{.Link}}/locks">{{.i18n.Tr "repo.settings.lfs_locks"}}</a> + <a class="ui primary tiny show-panel button" href="{{.Link}}/pointers"> {{.i18n.Tr "repo.settings.lfs_findpointerfiles"}}</a> </div> </h4> <table id="lfs-files-table" class="ui attached segment single line table"> |