mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
94512ee062
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.
12 lines
541 B
Handlebars
12 lines
541 B
Handlebars
<button class="ui citation button" id="citation-copy-apa" data-text="">
|
|
APA
|
|
</button>
|
|
<button class="ui citation button" id="citation-copy-bibtex" data-text="">
|
|
BibTeX
|
|
</button>
|
|
<!-- 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>
|
|
<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"}}
|
|
</button>
|