diff options
author | Denys Konovalov <kontakt@denyskon.de> | 2024-03-15 00:24:59 +0100 |
---|---|---|
committer | Shiny Nematoda <snematoda.751k2@aleeas.com> | 2024-03-20 13:31:05 +0100 |
commit | 847f03b6a65ee251bf764f54f6114737346a43b6 (patch) | |
tree | 084b009b445d87ea042780e25d31ae1c7d711212 /templates/explore/search.tmpl | |
parent | Merge pull request 'Update look of repo/org tabs on homepage' (#2593) from 0k... (diff) | |
download | forgejo-847f03b6a65ee251bf764f54f6114737346a43b6.tar.xz forgejo-847f03b6a65ee251bf764f54f6114737346a43b6.zip |
Unify search boxes (#29530)
Unify all but a few search boxes to use uniform style, uniform
translations and shared templates where possible.
Remove a few duplicated search templates, e. g. code search.
<details><summary>Example after screenshots:</summary>
![grafik](https://github.com/go-gitea/gitea/assets/47871822/e20e7d6b-c6be-4a47-b132-672766f41421)
![grafik](https://github.com/go-gitea/gitea/assets/47871822/d5b11b9c-c12f-4a29-8fb0-24e5aa511d18)
![grafik](https://github.com/go-gitea/gitea/assets/47871822/d86bb444-36c7-426d-9cf1-c634963dffb1)
![grafik](https://github.com/go-gitea/gitea/assets/47871822/a76c0319-0518-484a-a840-563d02b61198)
</details>
Also includes #29700
Co-authored-by: 6543 <6543@obermui.de>
---------
Co-authored-by: 6543 <m.huber@kithara.com>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Giteabot <teabot@gitea.io>
Conflicts:
routers/web/repo/search.go
templates/repo/home.tmpl
templates/repo/search.tmpl
templates/shared/repo_search.tmpl
Diffstat (limited to 'templates/explore/search.tmpl')
-rw-r--r-- | templates/explore/search.tmpl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/explore/search.tmpl b/templates/explore/search.tmpl index 2bb5f319d1..54d995989a 100644 --- a/templates/explore/search.tmpl +++ b/templates/explore/search.tmpl @@ -1,12 +1,13 @@ -<div class="ui secondary filter menu gt-ac gt-mx-0"> +<div class="ui small secondary filter menu gt-ac gt-mx-0"> <form class="ui form ignore-dirty gt-f1"> - <div class="ui fluid action input"> - {{template "shared/searchinput" dict "Value" .Keyword}} - <button class="ui primary button">{{ctx.Locale.Tr "explore.search"}}</button> - </div> + {{if .PageIsExploreUsers}} + {{template "shared/search/combo" dict "Value" .Keyword "Placeholder" (ctx.Locale.Tr "search.user_kind")}} + {{else}} + {{template "shared/search/combo" dict "Value" .Keyword "Placeholder" (ctx.Locale.Tr "search.org_kind")}} + {{end}} </form> <!-- Sort --> - <div class="ui dropdown type jump item gt-mr-0"> + <div class="ui small dropdown type jump item gt-mr-0"> <span class="text"> {{ctx.Locale.Tr "repo.issues.filter_sort"}} </span> |