mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-19 02:10:04 +08:00
add icons to the Attachments menu
This commit is contained in:
parent
f7b1c3fee3
commit
d8e50a2ab8
@ -20,6 +20,13 @@ const TPL = `
|
|||||||
width: 20em;
|
width: 20em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.attachment-actions .dropdown-item .bx {
|
||||||
|
position: relative;
|
||||||
|
top: 3px;
|
||||||
|
font-size: 120%;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.attachment-actions .dropdown-item[disabled], .attachment-actions .dropdown-item[disabled]:hover {
|
.attachment-actions .dropdown-item[disabled], .attachment-actions .dropdown-item[disabled]:hover {
|
||||||
color: var(--muted-text-color) !important;
|
color: var(--muted-text-color) !important;
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
@ -32,16 +39,22 @@ const TPL = `
|
|||||||
style="position: relative; top: 3px;"></button>
|
style="position: relative; top: 3px;"></button>
|
||||||
|
|
||||||
<div class="dropdown-menu dropdown-menu-right">
|
<div class="dropdown-menu dropdown-menu-right">
|
||||||
<a data-trigger-command="openAttachment" class="dropdown-item"
|
<li data-trigger-command="openAttachment" class="dropdown-item"
|
||||||
title="${t('attachments_actions.open_externally_title')}">${t('attachments_actions.open_externally')}</a>
|
title="${t('attachments_actions.open_externally_title')}"><span class="bx bx-link-external"></span> ${t('attachments_actions.open_externally')}</li>
|
||||||
<a data-trigger-command="openAttachmentCustom" class="dropdown-item"
|
<li data-trigger-command="openAttachmentCustom" class="dropdown-item"
|
||||||
title="${t('attachments_actions.open_custom_title')}">${t('attachments_actions.open_custom')}</a>
|
title="${t('attachments_actions.open_custom_title')}"><span class="bx bx-customize"></span> ${t('attachments_actions.open_custom')}</li>
|
||||||
<a data-trigger-command="downloadAttachment" class="dropdown-item">${t('attachments_actions.download')}</a>
|
<li data-trigger-command="renameAttachment" class="dropdown-item">
|
||||||
<a data-trigger-command="renameAttachment" class="dropdown-item">${t('attachments_actions.rename_attachment')}</a>
|
<span class="bx bx-rename"></span> ${t('attachments_actions.rename_attachment')}</li>
|
||||||
<a data-trigger-command="uploadNewAttachmentRevision" class="dropdown-item">${t('attachments_actions.upload_new_revision')}</a>
|
<li data-trigger-command="copyAttachmentLinkToClipboard" class="dropdown-item"><span class="bx bx-copy">
|
||||||
<a data-trigger-command="copyAttachmentLinkToClipboard" class="dropdown-item">${t('attachments_actions.copy_link_to_clipboard')}</a>
|
</span> ${t('attachments_actions.copy_link_to_clipboard')}</li>
|
||||||
<a data-trigger-command="convertAttachmentIntoNote" class="dropdown-item">${t('attachments_actions.convert_attachment_into_note')}</a>
|
<li data-trigger-command="downloadAttachment" class="dropdown-item">
|
||||||
<a data-trigger-command="deleteAttachment" class="dropdown-item">${t('attachments_actions.delete_attachment')}</a>
|
<span class="bx bx-download"></span> ${t('attachments_actions.download')}</li>
|
||||||
|
<li data-trigger-command="uploadNewAttachmentRevision" class="dropdown-item"><span class="bx bx-upload">
|
||||||
|
</span> ${t('attachments_actions.upload_new_revision')}</li>
|
||||||
|
<li data-trigger-command="convertAttachmentIntoNote" class="dropdown-item"><span class="bx bx-note">
|
||||||
|
</span> ${t('attachments_actions.convert_attachment_into_note')}</li>
|
||||||
|
<li data-trigger-command="deleteAttachment" class="dropdown-item">
|
||||||
|
<span class="bx bx-trash"></span> ${t('attachments_actions.delete_attachment')}</li>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="file" class="attachment-upload-new-revision-input" style="display: none">
|
<input type="file" class="attachment-upload-new-revision-input" style="display: none">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user