ui: improve branch/tag dropdown selector consistency (#7187)

Improve consistency of these tag/branch selector menus between these areas: repo file/dir view, issue branch selection, compare page.

Improve the look slightly by aligning icons properly, adding consistent gap and ensuring consistent vertical gaps with no excessive space waste.

Preview:
https://codeberg.org/attachments/0740a811-d6bf-4c27-a16d-bdc7e2aa63eb

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7187
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
0ko 2025-03-13 18:11:01 +00:00
parent d53dfcbccb
commit 3c014a8f0e
4 changed files with 36 additions and 58 deletions

View file

@ -39,21 +39,13 @@
<i class="icon">{{svg "octicon-filter" 16}}</i> <i class="icon">{{svg "octicon-filter" 16}}</i>
<input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}..."> <input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}...">
</div> </div>
<div class="header"> <div class="branch-tag-tab">
<div class="ui grid"> <a class="branch-tag-item muted" href="#" data-target=".base-branch-list">
<div class="two column row"> {{svg "octicon-git-branch"}}{{ctx.Locale.Tr "repo.branches"}}
<a class="reference column" href="#" data-target=".base-branch-list"> </a>
<span class="text black"> <a class="branch-tag-item muted" href="#" data-target=".base-tag-list">
{{svg "octicon-git-branch" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.branches"}} {{svg "octicon-tag"}}{{ctx.Locale.Tr "repo.tags"}}
</span> </a>
</a>
<a class="reference column" href="#" data-target=".base-tag-list">
<span class="text black">
{{svg "octicon-tag" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.tags"}}
</span>
</a>
</div>
</div>
</div> </div>
<div class="scrolling menu reference-list-menu base-branch-list"> <div class="scrolling menu reference-list-menu base-branch-list">
{{range .Branches}} {{range .Branches}}
@ -108,21 +100,13 @@
<i class="icon">{{svg "octicon-filter" 16}}</i> <i class="icon">{{svg "octicon-filter" 16}}</i>
<input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}..."> <input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}...">
</div> </div>
<div class="header"> <div class="branch-tag-tab">
<div class="ui grid"> <a class="branch-tag-item muted" href="#" data-target=".head-branch-list">
<div class="two column row"> {{svg "octicon-git-branch"}}{{ctx.Locale.Tr "repo.branches"}}
<a class="reference column" href="#" data-target=".head-branch-list"> </a>
<span class="text black"> <a class="branch-tag-item muted" href="#" data-target=".head-tag-list">
{{svg "octicon-git-branch" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.branches"}} {{svg "octicon-tag"}}{{ctx.Locale.Tr "repo.tags"}}
</span> </a>
</a>
<a class="reference column" href="#" data-target=".head-tag-list">
<span class="text black">
{{svg "octicon-tag" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.tags"}}
</span>
</a>
</div>
</div>
</div> </div>
<div class="scrolling menu reference-list-menu head-branch-list"> <div class="scrolling menu reference-list-menu head-branch-list">
{{range .HeadBranches}} {{range .HeadBranches}}

View file

@ -15,21 +15,13 @@
<i class="icon">{{svg "octicon-filter" 16}}</i> <i class="icon">{{svg "octicon-filter" 16}}</i>
<input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}..."> <input name="search" placeholder="{{ctx.Locale.Tr "repo.filter_branch_and_tag"}}...">
</div> </div>
<div class="header"> <div class="branch-tag-tab">
<div class="ui grid"> <a class="branch-tag-item muted" href="#" data-target="#branch-list">
<div class="two column row"> {{svg "octicon-git-branch"}}{{ctx.Locale.Tr "repo.branches"}}
<a class="reference column muted" href="#" data-target="#branch-list"> </a>
<span class="text black"> <a class="branch-tag-item muted" href="#" data-target="#tag-list">
{{svg "octicon-git-branch" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.branches"}} {{svg "octicon-tag"}}{{ctx.Locale.Tr "repo.tags"}}
</span> </a>
</a>
<a class="reference column muted" href="#" data-target="#tag-list">
<span class="text">
{{svg "octicon-tag" 16 "tw-mr-1"}}{{ctx.Locale.Tr "repo.tags"}}
</span>
</a>
</div>
</div>
</div> </div>
<div class="branch-tag-divider"></div> <div class="branch-tag-divider"></div>
<div id="branch-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}"> <div id="branch-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}">

View file

@ -1153,6 +1153,19 @@ td .commit-summary {
text-align: center; text-align: center;
} }
.branch-tag-tab {
padding: 0 10px 10px;
}
.branch-tag-item {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0 10px;
border: 1px solid transparent;
border-bottom: none;
}
.repository.compare.pull .comment.form .content::before, .repository.compare.pull .comment.form .content::before,
.repository.compare.pull .comment.form .content::after { .repository.compare.pull .comment.form .content::after {
right: 100%; right: 100%;

View file

@ -265,10 +265,10 @@ export default sfc; // activate IDE's Vue plugin
</div> </div>
<div v-if="showBranchesInDropdown" class="branch-tag-tab"> <div v-if="showBranchesInDropdown" class="branch-tag-tab">
<a class="branch-tag-item muted" :class="{active: mode === 'branches'}" href="#" @click="handleTabSwitch('branches')"> <a class="branch-tag-item muted" :class="{active: mode === 'branches'}" href="#" @click="handleTabSwitch('branches')">
<svg-icon name="octicon-git-branch" :size="16" class="tw-mr-1"/>{{ textBranches }} <svg-icon name="octicon-git-branch" :size="16"/>{{ textBranches }}
</a> </a>
<a v-if="!noTag" class="branch-tag-item muted" :class="{active: mode === 'tags'}" href="#" @click="handleTabSwitch('tags')"> <a v-if="!noTag" class="branch-tag-item muted" :class="{active: mode === 'tags'}" href="#" @click="handleTabSwitch('tags')">
<svg-icon name="octicon-tag" :size="16" class="tw-mr-1"/>{{ textTags }} <svg-icon name="octicon-tag" :size="16"/>{{ textTags }}
</a> </a>
</div> </div>
<div class="branch-tag-divider"/> <div class="branch-tag-divider"/>
@ -316,17 +316,6 @@ export default sfc; // activate IDE's Vue plugin
</div> </div>
</template> </template>
<style scoped> <style scoped>
.branch-tag-tab {
padding: 0 10px;
}
.branch-tag-item {
display: inline-block;
padding: 10px;
border: 1px solid transparent;
border-bottom: none;
}
.branch-tag-item.active { .branch-tag-item.active {
border-color: var(--color-secondary); border-color: var(--color-secondary);
background: var(--color-menu); background: var(--color-menu);