Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/repo/release/list.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
{{end}}
{{range $att := $release.Attachments}}
<li class="item">
<a target="_blank" class="tw-flex-grow-[2] gt-ellipsis" rel="nofollow" download href="{{$att.DownloadURL}}">
<a target="_blank" class="tw-flex-1 gt-ellipsis" rel="nofollow" download href="{{$att.DownloadURL}}">
<strong class="flex-text-inline">{{svg "octicon-package" 16 "download-icon"}}<span class="gt-ellipsis">{{$att.Name}}</span></strong>
</a>
<div class="attachment-right-info flex-text-inline">
Expand Down
6 changes: 5 additions & 1 deletion web_src/css/repo/release-tag.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@
flex-wrap: wrap;
}

#release-list .release-entry .attachment-list > .item a {
min-width: 300px;
}

#release-list .release-entry .attachment-list .attachment-right-info {
flex-grow: 1;
flex-shrink: 0;
min-width: 300px;
}

Expand Down