mirror of
https://github.com/go-gitea/gitea
synced 2025-12-07 13:28:25 +00:00
Co-Author: @wxiaoguang This PR is to fix https://github.com/go-gitea/gitea/issues/23318#issuecomment-1506275446 . The way to fix this in this PR is to use `delete_modal_actions.tmpl` here both to fix this issue and keep ui consistency (as suggested by [TODO here](https://github.com/go-gitea/gitea/blob/4299c3b7db61f8741eca0ba3d663bb65745a4acc/templates/projects/view.tmpl#L161)) And this PR also refactors `delete_modal_actions.tmpl` and its related styles, and use the template for more modal actions: 1. Added template attributes: * locale * ModalButtonStyle: "yes" (default) or "confirm" * ModalButtonCancelText * ModalButtonOkText 2. Rename `delete_modal_actions.tmpl` template to `modal_actions_confirm.tmpl` because it is not only used for action modals deletion now. 3. Refactored css related to modals into `web_src/css/modules/modal.css` and improved the styles. 4. Also use the template for PR deletion modal and remove issue dependency modal. 5. Some modals should also use the template, but not sure how to open them, so mark these modal actions by `{{/* TODO: Convert to base/modal_actions_confirm */}}` After (Also tested on arc green): Hovering on the left buttons <img width="711" alt="Screen Shot 2023-04-23 at 15 17 12" src="https://user-images.githubusercontent.com/17645053/233825650-76307e65-9255-44bb-80e8-7062f58ead1b.png"> <img width="786" alt="Screen Shot 2023-04-23 at 15 17 21" src="https://user-images.githubusercontent.com/17645053/233825652-4dc6f7d1-a180-49fb-a468-d60950eaee0d.png"> Test for functionalities: https://user-images.githubusercontent.com/17645053/233826857-76376fda-022c-42d0-b0f3-339c17ca4e59.mov --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
65 lines
2.3 KiB
Handlebars
65 lines
2.3 KiB
Handlebars
<div class="ui gitea-confirm-modal delete modal">
|
|
<div class="header">
|
|
{{svg "octicon-trash"}}
|
|
{{.locale.Tr "repo.issues.label_deletion"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{.locale.Tr "repo.issues.label_deletion_desc"}}</p>
|
|
</div>
|
|
{{template "base/modal_actions_confirm" .}}
|
|
</div>
|
|
|
|
<div class="ui small edit-label modal">
|
|
<div class="header">
|
|
{{.locale.Tr "repo.issues.label_modify"}}
|
|
</div>
|
|
<div class="content">
|
|
<form class="ui edit-label form ignore-dirty" action="{{$.Link}}/edit" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<input id="label-modal-id" name="id" type="hidden">
|
|
<div class="required field">
|
|
<label for="name">{{.locale.Tr "repo.issues.label_title"}}</label>
|
|
<div class="ui small input">
|
|
<input class="label-name-input" name="title" placeholder="{{.locale.Tr "repo.issues.new_label_placeholder"}}" autofocus required maxlength="50">
|
|
</div>
|
|
</div>
|
|
<div class="field label-exclusive-input-field">
|
|
<div class="ui checkbox">
|
|
<input class="label-exclusive-input" name="exclusive" type="checkbox">
|
|
<label>{{.locale.Tr "repo.issues.label_exclusive"}}</label>
|
|
</div>
|
|
<br>
|
|
<small class="desc">{{.locale.Tr "repo.issues.label_exclusive_desc" | Safe}}</small>
|
|
<div class="desc gt-ml-2 gt-mt-3 gt-hidden label-exclusive-warning">
|
|
{{svg "octicon-alert"}} {{.locale.Tr "repo.issues.label_exclusive_warning" | Safe}}
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<label for="description">{{.locale.Tr "repo.issues.label_description"}}</label>
|
|
<div class="ui small fluid input">
|
|
<input class="label-desc-input" name="description" placeholder="{{.locale.Tr "repo.issues.new_label_desc_placeholder"}}" maxlength="200">
|
|
</div>
|
|
</div>
|
|
<div class="field color-field">
|
|
<label for="color">{{$.locale.Tr "repo.issues.label_color"}}</label>
|
|
<div class="color picker column">
|
|
<input class="color-picker" name="color" value="#70c24a" required maxlength="7">
|
|
<div class="column precolors">
|
|
{{template "repo/issue/label_precolors"}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="actions">
|
|
<button class="ui secondary small basic cancel button">
|
|
{{svg "octicon-x"}}
|
|
{{.locale.Tr "cancel"}}
|
|
</button>
|
|
<button class="ui primary small approve button">
|
|
<i class="save icon"></i>
|
|
{{.locale.Tr "save"}}
|
|
</button>
|
|
</div>
|
|
</div>
|