diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-09-21 23:54:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 15:54:26 +0000 |
commit | 1f026bcb7eecad0b98d65089bb7fe5986b337d7d (patch) | |
tree | 78e2db54778674a4f9f84b361bfa0ead2894f9ea /templates/admin/repo | |
parent | c2cabe7b285684eb3197f99aa91bb184674e8461 (diff) | |
download | gitea-1f026bcb7eecad0b98d65089bb7fe5986b337d7d.tar.gz gitea-1f026bcb7eecad0b98d65089bb7fe5986b337d7d.zip |
Fix dropdown icon position (#27175)
According to https://fomantic-ui.com/modules/dropdown.html and our
"devtest" page, many dropdown elements has incorrect "icon" position.
This PR fixes all of them. Fix #27173
Diffstat (limited to 'templates/admin/repo')
-rw-r--r-- | templates/admin/repo/search.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin/repo/search.tmpl b/templates/admin/repo/search.tmpl index 0d98e3e4f2..fa39e0b40a 100644 --- a/templates/admin/repo/search.tmpl +++ b/templates/admin/repo/search.tmpl @@ -9,8 +9,8 @@ <div class="ui dropdown type jump item gt-mr-0"> <span class="text"> {{.locale.Tr "repo.issues.filter_sort"}} - {{svg "octicon-triangle-down" 14 "dropdown icon"}} </span> + {{svg "octicon-triangle-down" 14 "dropdown icon"}} <div class="menu"> <a class="{{if or (eq .SortType "oldest") (not .SortType)}}active {{end}}item" href="{{$.Link}}?sort=oldest&q={{$.Keyword}}">{{.locale.Tr "repo.issues.filter_sort.oldest"}}</a> <a class="{{if eq .SortType "newest"}}active {{end}}item" href="{{$.Link}}?sort=newest&q={{$.Keyword}}">{{.locale.Tr "repo.issues.filter_sort.latest"}}</a> |