summaryrefslogtreecommitdiffstats
path: root/templates/repo/release
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2021-05-23 02:45:39 +0200
committerGitHub <noreply@github.com>2021-05-23 08:45:39 +0800
commitb4d10598c9be1ba8008c5a47ef1cd3612e99331a (patch)
tree6740ce6a49eed31d91d66dd8a18b481c3abe12a2 /templates/repo/release
parent308b562b3c0440e800dc63b0ef2eb6777a1e0026 (diff)
downloadgitea-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/release')
-rw-r--r--templates/repo/release/list.tmpl55
1 files changed, 26 insertions, 29 deletions
diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl
index d98e441644..f9bc0ebb02 100644
--- a/templates/repo/release/list.tmpl
+++ b/templates/repo/release/list.tmpl
@@ -139,39 +139,36 @@
<div class="markup desc">
{{Str2html .Note}}
</div>
- <div class="ui accordion download">
- <h2 class="title {{if eq $idx 0}}active{{end}} df ac mb-0">
- {{svg "octicon-triangle-right" 14 "dropdown icon"}}
+ <details class="download border-secondary-top mt-4 pt-4" {{if eq $idx 0}}open{{end}}>
+ <summary class="mb-4">
{{$.i18n.Tr "repo.release.downloads"}}
- </h2>
- <div class="content {{if eq $idx 0}}active{{end}}">
- <ul class="list">
- {{if and (not .IsDraft) ($.Permission.CanRead $.UnitTypeCode)}}
- <li>
- <a class="archive-link" data-url="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.zip" rel="nofollow"><strong>{{svg "octicon-file-zip" 16 "mr-2"}}{{$.i18n.Tr "repo.release.source_code"}} (ZIP)</strong></a>
- </li>
+ </summary>
+ <ul class="list">
+ {{if and (not .IsDraft) ($.Permission.CanRead $.UnitTypeCode)}}
+ <li>
+ <a class="archive-link" data-url="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.zip" rel="nofollow"><strong>{{svg "octicon-file-zip" 16 "mr-2"}}{{$.i18n.Tr "repo.release.source_code"}} (ZIP)</strong></a>
+ </li>
+ <li>
+ <a class="archive-link" data-url="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.tar.gz"><strong>{{svg "octicon-file-zip" 16 "mr-2"}}{{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</strong></a>
+ </li>
+ {{end}}
+ {{if .Attachments}}
+ {{range .Attachments}}
<li>
- <a class="archive-link" data-url="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.tar.gz"><strong>{{svg "octicon-file-zip" 16 "mr-2"}}{{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</strong></a>
- </li>
- {{end}}
- {{if .Attachments}}
- {{range .Attachments}}
- <li>
- <span class="ui text middle aligned right">
- <span class="ui text grey">{{.Size | FileSize}}</span>
- <span class="poping up" data-content="{{$.i18n.Tr "repo.release.download_count" (.DownloadCount | PrettyNumber)}}">
- {{svg "octicon-info"}}
- </span>
+ <span class="ui text middle aligned right">
+ <span class="ui text grey">{{.Size | FileSize}}</span>
+ <span class="poping up" data-content="{{$.i18n.Tr "repo.release.download_count" (.DownloadCount | PrettyNumber)}}">
+ {{svg "octicon-info"}}
</span>
- <a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
- <strong><span class="ui image" title='{{.Name}}'>{{svg "octicon-package" 16 "mr-2"}}</span>{{.Name}}</strong>
- </a>
- </li>
- {{end}}
+ </span>
+ <a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
+ <strong><span class="ui image" title='{{.Name}}'>{{svg "octicon-package" 16 "mr-2"}}</span>{{.Name}}</strong>
+ </a>
+ </li>
{{end}}
- </ul>
- </div>
- </div>
+ {{end}}
+ </ul>
+ </details>
{{end}}
<span class="dot">&nbsp;</span>
</div>