mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-30 22:11:07 +00:00 
			
		
		
		
	Close #22847 This PR: * introduce Gitea's own `showElem` and related functions * remove jQuery show/hide * remove .hide class * remove inline style=display:none From now on: do not use: * "[hidden]" attribute: it's too weak, can not be applied to an element with "display: flex" * ".hidden" class: it has been polluted by Fomantic UI in many cases * inline style="display: none": it's difficult to tweak * jQuery's show/hide/toggle: it can not show/hide elements with "display: xxx !important" only use: * this ".gt-hidden" class * showElem/hideElem/toggleElem functions in "utils/dom.js" cc: @silverwind , this is the all-in-one PR
		
			
				
	
	
		
			54 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{if and (not .Issue.IsPull) (not .PageIsComparePull)}}
 | |
| <input id="ref_selector" name="ref" type="hidden" value="{{.Reference}}">
 | |
| <input id="editing_mode" name="edit_mode" type="hidden" value="{{(or .IsIssueWriter .HasIssuesOrPullsWritePermission)}}">
 | |
| <form method="POST" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/ref" id="update_issueref_form">
 | |
| 	{{$.CsrfTokenHtml}}
 | |
| </form>
 | |
| 
 | |
| <div class="ui {{if not .HasIssuesOrPullsWritePermission}}disabled{{end}} floating filter select-branch dropdown" data-no-results="{{.locale.Tr "repo.pulls.no_results"}}">
 | |
| 	<div class="ui basic small button">
 | |
| 		<span class="text branch-name">{{if .Reference}}{{$.RefEndName}}{{else}}{{.locale.Tr "repo.issues.no_ref"}}{{end}}</span>
 | |
| 		{{if .HasIssuesOrPullsWritePermission}}{{svg "octicon-triangle-down" 14 "dropdown icon"}}{{end}}
 | |
| 	</div>
 | |
| 	<div class="menu">
 | |
| 		<div class="ui icon search input">
 | |
| 			<i class="icon gt-df gt-ac gt-jc gt-m-0">{{svg "octicon-filter" 16}}</i>
 | |
| 			<input name="search" placeholder="{{.locale.Tr "repo.filter_branch_and_tag"}}...">
 | |
| 		</div>
 | |
| 		<div class="header">
 | |
| 			<div class="ui grid">
 | |
| 				<div class="two column row">
 | |
| 					<a class="reference column" href="#" data-target="#branch-list">
 | |
| 						<span class="text black">
 | |
| 							{{svg "octicon-git-branch" 16 "gt-mr-2"}}{{.locale.Tr "repo.branches"}}
 | |
| 						</span>
 | |
| 					</a>
 | |
| 					<a class="reference column" href="#" data-target="#tag-list">
 | |
| 						<span class="text">
 | |
| 							{{svg "octicon-tag" 16 "gt-mr-2"}}{{.locale.Tr "repo.tags"}}
 | |
| 						</span>
 | |
| 					</a>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<div id="branch-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}">
 | |
| 			{{if .Reference}}
 | |
| 				<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{$.locale.Tr "repo.clear_ref"}}</a></strong></div>
 | |
| 			{{end}}
 | |
| 			{{range .Branches}}
 | |
| 				<div class="item" data-id="refs/heads/{{.}}" data-name="{{.}}" data-id-selector="#ref_selector">{{.}}</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 		<div id="tag-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}} gt-hidden">
 | |
| 			{{if .Reference}}
 | |
| 				<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{.locale.Tr "repo.clear_ref"}}</a></strong></div>
 | |
| 			{{end}}
 | |
| 			{{range .Tags}}
 | |
| 				<div class="item" data-id="refs/tags/{{.}}" data-name="tags/{{.}}" data-id-selector="#ref_selector">{{.}}</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| <div class="ui divider"></div>
 | |
| {{end}}
 |