diff options
author | silverwind <me@silverwind.io> | 2021-05-23 02:45:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 08:45:39 +0800 |
commit | b4d10598c9be1ba8008c5a47ef1cd3612e99331a (patch) | |
tree | 6740ce6a49eed31d91d66dd8a18b481c3abe12a2 /templates/repo/settings | |
parent | 308b562b3c0440e800dc63b0ef2eb6777a1e0026 (diff) | |
download | gitea-b4d10598c9be1ba8008c5a47ef1cd3612e99331a.tar.gz gitea-b4d10598c9be1ba8008c5a47ef1cd3612e99331a.zip |
Remove fomantic accordion module (#15951)
Replace it with native <detail> element. Did some slight restyling on
the release downloads, new behaviour should be exactly the same
otherwise.
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/repo/settings')
-rw-r--r-- | templates/repo/settings/options.tmpl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 012bff317d..fb4b65dbad 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -94,12 +94,11 @@ <input id="mirror_address" name="mirror_address" value="{{MirrorFullAddress .Mirror}}" required> <p class="help">{{.i18n.Tr "repo.mirror_address_desc"}}</p> </div> - <div class="ui accordion optional field"> - <label class="ui title {{if .Err_Auth}}text red active{{end}}"> - <i class="icon dropdown"></i> - <label for="">{{.i18n.Tr "repo.need_auth"}}</label> - </label> - <div class="content {{if .Err_Auth}}active{{else if (MirrorUserName .Mirror)}}active{{end}}"> + <details class="ui optional field" {{if .Err_Auth}}open{{else if (MirrorUserName .Mirror)}}open{{end}}> + <summary class="p-2"> + {{.i18n.Tr "repo.need_auth"}} + </summary> + <div class="p-2"> <div class="inline field {{if .Err_Auth}}error{{end}}"> <label for="mirror_username">{{.i18n.Tr "username"}}</label> <input id="mirror_username" name="mirror_username" value="{{MirrorUserName .Mirror}}" {{if not .mirror_username}}data-need-clear="true"{{end}}> @@ -110,7 +109,7 @@ <input id="mirror_password" name="mirror_password" type="password" value="{{MirrorPassword .Mirror}}" {{if not .mirror_password}}data-need-clear="true"{{end}} autocomplete="off"> </div> </div> - </div> + </details> {{if .LFSStartServer}} <div class="inline field"> |