1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 09:25:48 +00:00

Fix Citation modal responsiveness and clipboard copy (#29799)

The modal was broken in two ways:

- On small screens, the input box was partially hanging outside the
modal. Fixed with flexbox and increased modal width.
- The clipboard copy was not working because the modal had both
`data-clipboard-text` and `data-clipboard-target`, while we only support
one of those. Made a small tweak in clipboard as well so that it will
still fall back to target if text is empty.
This commit is contained in:
silverwind 2024-03-15 03:38:13 +01:00 committed by GitHub
parent 256a1eeb9a
commit 94512ee062
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 20 deletions

View File

@ -6,6 +6,6 @@ BibTeX
</button> </button>
<!-- the value will be updated by initCitationFileCopyContent, the code below is used to avoid UI flicking --> <!-- the value will be updated by initCitationFileCopyContent, the code below is used to avoid UI flicking -->
<input id="citation-copy-content" value="" size="1" readonly> <input id="citation-copy-content" value="" size="1" readonly>
<button class="ui icon button" id="citation-clipboard-btn" data-tooltip-content="{{ctx.Locale.Tr "copy"}}" data-clipboard-text="" data-clipboard-target="#citation-copy-content"> <button class="ui icon button" id="citation-clipboard-btn" data-tooltip-content="{{ctx.Locale.Tr "copy"}}" data-clipboard-target="#citation-copy-content">
{{svg "octicon-copy"}} {{svg "octicon-copy"}}
</button> </button>

View File

@ -1,16 +1,14 @@
<div class="ui tiny modal" id="cite-repo-modal"> <div class="ui small modal" id="cite-repo-modal">
<div class="header"> <div class="header">
{{ctx.Locale.Tr "repo.cite_this_repo"}} {{ctx.Locale.Tr "repo.cite_this_repo"}}
</div> </div>
<div class="content"> <div class="content">
<div class="ui stackable secondary menu"> <div class="ui stackable secondary menu">
<div class="fitted item"> <div class="ui action input" id="citation-panel">
<div class="ui action input" id="citation-panel"> {{template "repo/cite/cite_buttons" .}}
{{template "repo/cite/cite_buttons" .}} <a id="goto-citation-btn" class="ui basic jump icon button" href="{{$.RepoLink}}/src/{{$.BranchName}}/CITATION.cff" data-tooltip-content="{{ctx.Locale.Tr "repo.find_file.go_to_file"}}">
<a id="goto-citation-btn" class="ui basic jump icon button" href="{{$.RepoLink}}/src/{{$.BranchName}}/CITATION.cff" data-tooltip-content="{{ctx.Locale.Tr "repo.find_file.go_to_file"}}"> {{svg "octicon-file-moved"}}
{{svg "octicon-file-moved"}} </a>
</a>
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@ -2035,13 +2035,8 @@
} }
#cite-repo-modal #citation-panel { #cite-repo-modal #citation-panel {
width: 500px; display: flex;
} width: 100%;
@media (max-width: 767.98px) {
#cite-repo-modal #citation-panel {
width: 100%;
}
} }
#cite-repo-modal #citation-panel input { #cite-repo-modal #citation-panel input {
@ -2061,6 +2056,7 @@
padding: 5px 10px; padding: 5px 10px;
font-size: 1.2em; font-size: 1.2em;
line-height: 1.4; line-height: 1.4;
flex: 1;
} }
#cite-repo-modal #citation-panel #citation-copy-apa, #cite-repo-modal #citation-panel #citation-copy-apa,

View File

@ -15,10 +15,8 @@ export function initGlobalCopyToClipboardListener() {
e.preventDefault(); e.preventDefault();
let text; let text = target.getAttribute('data-clipboard-text');
if (target.hasAttribute('data-clipboard-text')) { if (!text) {
text = target.getAttribute('data-clipboard-text');
} else {
text = document.querySelector(target.getAttribute('data-clipboard-target'))?.value; text = document.querySelector(target.getAttribute('data-clipboard-target'))?.value;
} }