ui: improve button gap consistency

This commit is contained in:
0ko 2024-06-28 13:11:32 +05:00
parent 7299b2def4
commit dc0d3a40ab
3 changed files with 15 additions and 12 deletions

View file

@ -108,7 +108,7 @@
<span class="help">{{ctx.Locale.Tr "repo.release.hide_archive_links_helper"}}</span>
{{end}}
<div class="divider tw-mt-0"></div>
<div class="tw-flex tw-justify-end">
<div class="tw-flex tw-justify-end button-row">
{{if .PageIsEditRelease}}
<a class="ui small button" href="{{.RepoLink}}/releases">
{{ctx.Locale.Tr "repo.release.cancel"}}

View file

@ -11,6 +11,7 @@
{{end}}
</h2>
</div>
<div class="button-row">
{{if .EnableFeed}}
<a class="ui small button" href="{{.RepoLink}}/{{if .PageIsTagList}}tags{{else}}releases{{end}}.rss">
{{svg "octicon-rss" 16}} {{ctx.Locale.Tr "rss_feed"}}
@ -22,6 +23,7 @@
</a>
{{end}}
</div>
</div>
<div class="divider"></div>
{{else if $canReadCode}}
{{/* if the "repo.releases" unit is disabled, only show the "commits / branches / tags" sub menu */}}

View file

@ -601,7 +601,8 @@ td .commit-summary {
align-items: center;
}
.repository.view.issue .button-row {
.repository.view.issue .button-row,
.repository.releases .button-row {
display: flex;
}