summaryrefslogtreecommitdiffstats
path: root/templates/admin
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2020-05-12 20:08:43 +0100
committerGitHub <noreply@github.com>2020-05-12 15:08:43 -0400
commitaa29f1c2b9150e45392c925e174af0471bf41b66 (patch)
treeff7f10d49c03e6468d876dbb950d09786424967c /templates/admin
parentb00e62c12b5aca49e523f9d8c91b22fd590ce577 (diff)
downloadgitea-aa29f1c2b9150e45392c925e174af0471bf41b66.tar.gz
gitea-aa29f1c2b9150e45392c925e174af0471bf41b66.zip
Ensure search action button coalesced to adjacent input (#11385)
Fomantic-ui's action button syntax requires that the button is the next sibling of the input it is attached to and that they are both children of a div.action. Fix #11375 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates/admin')
-rw-r--r--templates/admin/emails/list.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin/emails/list.tmpl b/templates/admin/emails/list.tmpl
index e9bef3c3b8..64b7603e2e 100644
--- a/templates/admin/emails/list.tmpl
+++ b/templates/admin/emails/list.tmpl
@@ -24,8 +24,8 @@
</div>
<form class="ui form ignore-dirty" style="max-width: 90%">
<div class="ui fluid action input">
- <input name="q" value="{{.Keyword}}" placeholder="{{.i18n.Tr "explore.search"}}..." autofocus>
- <button class="ui blue button">{{.i18n.Tr "explore.search"}}</button>
+ <input name="q" value="{{.Keyword}}" placeholder="{{.i18n.Tr "explore.search"}}..." autofocus>
+ <button class="ui blue button">{{.i18n.Tr "explore.search"}}</button>
</div>
</form>
</div>