mirror of https://github.com/go-gitea/gitea.git
Commit search appearence fixes (#1254)
* Fix button text to be consisstent with rest of UI * Make all commits checkbox look nicer
This commit is contained in:
parent
0cee52e0d3
commit
d800305b34
|
@ -546,8 +546,8 @@ editor.upload_files_to_dir = Upload files to '%s'
|
||||||
|
|
||||||
commits.commits = Commits
|
commits.commits = Commits
|
||||||
commits.search = Search commits
|
commits.search = Search commits
|
||||||
|
commits.find = Search
|
||||||
commits.search_all = All branches
|
commits.search_all = All branches
|
||||||
commits.find = Find
|
|
||||||
commits.author = Author
|
commits.author = Author
|
||||||
commits.message = Message
|
commits.message = Message
|
||||||
commits.date = Date
|
commits.date = Date
|
||||||
|
|
|
@ -6,7 +6,11 @@
|
||||||
<div class="ui tiny search input">
|
<div class="ui tiny search input">
|
||||||
<input name="q" placeholder="{{.i18n.Tr "repo.commits.search"}}" value="{{.Keyword}}" autofocus>
|
<input name="q" placeholder="{{.i18n.Tr "repo.commits.search"}}" value="{{.Keyword}}" autofocus>
|
||||||
</div>
|
</div>
|
||||||
<input type="checkbox" name="all" id="all" value="true" {{.All}}><label for="all">{{.i18n.Tr "repo.commits.search_all"}}</label>
|
|
||||||
|
<div class="ui checkbox">
|
||||||
|
<input type="checkbox" name="all" id="all" value="true" {{.All}}>
|
||||||
|
<label for="all">{{.i18n.Tr "repo.commits.search_all"}} </label>
|
||||||
|
</div>
|
||||||
<button class="ui black tiny button" data-panel="#add-deploy-key-panel">{{.i18n.Tr "repo.commits.find"}}</button>
|
<button class="ui black tiny button" data-panel="#add-deploy-key-panel">{{.i18n.Tr "repo.commits.find"}}</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue