diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index e4e34ed4a5..15c2cad339 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -3470,6 +3470,8 @@ var ZoteroPane = new function() // Adjust labels document.l10n.setAttributes(m.editSelectedCollection, 'collections-menu-edit-saved-search'); m.duplicate.setAttribute('label', Zotero.getString('pane.collections.menu.duplicate.savedSearch')); + m.duplicate.classList.add('zotero-menuitem-duplicate-saved-search'); + m.duplicate.classList.remove('zotero-menuitem-duplicate-collection'); m.deleteCollection.setAttribute('label', Zotero.getString('pane.collections.menu.delete.savedSearch')); m.exportCollection.setAttribute('label', Zotero.getString('pane.collections.menu.export.savedSearch')); m.createBibCollection.setAttribute('label', Zotero.getString('pane.collections.menu.createBib.savedSearch')); @@ -4121,6 +4123,7 @@ var ZoteroPane = new function() }); // Disable for already top-level collections libraryMenuItem.disabled = !selected.parentID; + libraryMenuItem.classList.add('menuitem-iconic'); popup.appendChild(libraryMenuItem); popup.appendChild(document.createXULElement("menuseparator")); diff --git a/chrome/skin/default/zotero/16/universal/copy-collection.svg b/chrome/skin/default/zotero/16/universal/copy-collection.svg new file mode 100644 index 0000000000..695f19ac0d --- /dev/null +++ b/chrome/skin/default/zotero/16/universal/copy-collection.svg @@ -0,0 +1,4 @@ + + + + diff --git a/chrome/skin/default/zotero/16/universal/move-collection.svg b/chrome/skin/default/zotero/16/universal/move-collection.svg new file mode 100644 index 0000000000..1831f0b0c4 --- /dev/null +++ b/chrome/skin/default/zotero/16/universal/move-collection.svg @@ -0,0 +1,3 @@ + + + diff --git a/chrome/skin/default/zotero/16/universal/publications.svg b/chrome/skin/default/zotero/16/universal/publications.svg new file mode 100644 index 0000000000..927be1dce8 --- /dev/null +++ b/chrome/skin/default/zotero/16/universal/publications.svg @@ -0,0 +1,3 @@ + + + diff --git a/scss/components/_menu.scss b/scss/components/_menu.scss index 3549b02590..a6bfd072fa 100644 --- a/scss/components/_menu.scss +++ b/scss/components/_menu.scss @@ -65,6 +65,10 @@ $menu-icons: ( expand-all: "expand-all", collapse-others: "collapse-others", change-top-level-item: "change-top-level-item", + show-publications: 'publications', + duplicate-saved-search: 'duplicate', + copy-collection: 'copy-collection', + move-collection: 'move-collection', ); @each $cls, $icon in $menu-icons {