mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	1. There is already `gt-ac`, so no need to introduce `flex-item-center`
2. The `flex-item-baseline` and `.flex-item-icon svg { margin-top: 1px
}` seem to be a tricky patch, they don't resolve the root problem, and
still cause misalignment in some cases.
* The root problem is: the "icon" needs to align with the sibling
"title"
    * So, make the "icon" and the "title" both have the same height 
3. `flex-text-inline` could only be used if the element is really
"inline", otherwise its `vertical-align` would make the box size change.
In most cases, `flex-text-block` is good enough.

---------
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Giteabot <teabot@gitea.io>
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
<h4 class="ui top attached header">
 | 
						|
	{{.locale.Tr "actions.variables.management"}}
 | 
						|
	<div class="ui right">
 | 
						|
		<button class="ui primary tiny button show-modal"
 | 
						|
			data-modal="#edit-variable-modal"
 | 
						|
			data-modal-form.action="{{.Link}}/new"
 | 
						|
			data-modal-header="{{.locale.Tr "actions.variables.creation"}}"
 | 
						|
			data-modal-dialog-variable-name=""
 | 
						|
			data-modal-dialog-variable-data=""
 | 
						|
		>
 | 
						|
			{{.locale.Tr "actions.variables.creation"}}
 | 
						|
		</button>
 | 
						|
	</div>
 | 
						|
</h4>
 | 
						|
<div class="ui attached segment">
 | 
						|
	{{if .Variables}}
 | 
						|
	<div class="flex-list">
 | 
						|
		{{range .Variables}}
 | 
						|
		<div class="flex-item gt-ac">
 | 
						|
			<div class="flex-item-leading">
 | 
						|
				{{svg "octicon-pencil" 32}}
 | 
						|
			</div>
 | 
						|
			<div class="flex-item-main">
 | 
						|
				<div class="flex-item-title">
 | 
						|
					{{.Name}}
 | 
						|
				</div>
 | 
						|
				<div class="flex-item-body">
 | 
						|
					{{.Data}}
 | 
						|
				</div>
 | 
						|
			</div>
 | 
						|
			<div class="flex-item-trailing">
 | 
						|
				<span class="color-text-light-2">
 | 
						|
					{{$.locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix) | Safe}}
 | 
						|
				</span>
 | 
						|
				<button class="btn interact-bg gt-p-3 show-modal"
 | 
						|
					data-tooltip-content="{{$.locale.Tr "variables.edit"}}"
 | 
						|
					data-modal="#edit-variable-modal"
 | 
						|
					data-modal-form.action="{{$.Link}}/{{.ID}}/edit"
 | 
						|
					data-modal-header="{{$.locale.Tr "actions.variables.edit"}}"
 | 
						|
					data-modal-dialog-variable-name="{{.Name}}"
 | 
						|
					data-modal-dialog-variable-data="{{.Data}}"
 | 
						|
				>
 | 
						|
					{{svg "octicon-pencil"}}
 | 
						|
				</button>
 | 
						|
				<button class="btn interact-bg gt-p-3 link-action"
 | 
						|
					data-tooltip-content="{{$.locale.Tr "actions.variables.deletion"}}"
 | 
						|
					data-url="{{$.Link}}/{{.ID}}/delete"
 | 
						|
					data-modal-confirm="{{$.locale.Tr "actions.variables.deletion.description"}}"
 | 
						|
				>
 | 
						|
					{{svg "octicon-trash"}}
 | 
						|
				</button>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		{{end}}
 | 
						|
	</div>
 | 
						|
	{{else}}
 | 
						|
		{{.locale.Tr "actions.variables.none"}}
 | 
						|
	{{end}}
 | 
						|
</div>
 | 
						|
 | 
						|
{{/** Edit variable dialog */}}
 | 
						|
<div class="ui small modal" id="edit-variable-modal">
 | 
						|
	<div class="header"></div>
 | 
						|
	<form class="ui form form-fetch-action" method="post">
 | 
						|
		<div class="content">
 | 
						|
			{{.CsrfTokenHtml}}
 | 
						|
			<div class="field">
 | 
						|
				{{.locale.Tr "actions.variables.description"}}
 | 
						|
			</div>
 | 
						|
			<div class="field">
 | 
						|
				<label for="dialog-variable-name">{{.locale.Tr "name"}}</label>
 | 
						|
				<input autofocus required
 | 
						|
					name="name"
 | 
						|
					id="dialog-variable-name"
 | 
						|
					value="{{.name}}"
 | 
						|
					pattern="^[a-zA-Z_][a-zA-Z0-9_]*$"
 | 
						|
					placeholder="{{.locale.Tr "secrets.creation.name_placeholder"}}"
 | 
						|
				>
 | 
						|
			</div>
 | 
						|
			<div class="field">
 | 
						|
				<label for="dialog-variable-data">{{.locale.Tr "value"}}</label>
 | 
						|
				<textarea required
 | 
						|
					name="data"
 | 
						|
					id="dialog-variable-data"
 | 
						|
					placeholder="{{.locale.Tr "secrets.creation.value_placeholder"}}"
 | 
						|
				></textarea>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		{{template "base/modal_actions_confirm" (dict "locale" $.locale "ModalButtonTypes" "confirm")}}
 | 
						|
	</form>
 | 
						|
</div>
 | 
						|
 |