diff --git a/chrome/content/zotero/xpcom/itemTreeView.js b/chrome/content/zotero/xpcom/itemTreeView.js index d3b731a0d..843cecf6f 100644 --- a/chrome/content/zotero/xpcom/itemTreeView.js +++ b/chrome/content/zotero/xpcom/itemTreeView.js @@ -343,18 +343,29 @@ Zotero.ItemTreeView.prototype.getImageSrc = function(row, col) case 'attachment-snapshot': case 'attachment-web-link': case 'artwork': + case 'audioRecording': + case 'blogPost': case 'book': case 'bookSection': + case 'computerProgram': + case 'email': case 'film': + case 'forumPost': case 'interview': case 'journalArticle': case 'letter': case 'magazineArticle': case 'manuscript': + case 'map': case 'newspaperArticle': case 'note': + case 'podcast': + case 'report': case 'thesis': + case 'tvBroadcast': + case 'videoRecording': case 'webpage': + return "chrome://zotero/skin/treeitem-"+itemType+".png"; } diff --git a/chrome/skin/default/zotero/treeitem-audioRecording.png b/chrome/skin/default/zotero/treeitem-audioRecording.png new file mode 100644 index 000000000..3f768da50 Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-audioRecording.png differ diff --git a/chrome/skin/default/zotero/treeitem-blogPost.png b/chrome/skin/default/zotero/treeitem-blogPost.png new file mode 100644 index 000000000..ea086b042 Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-blogPost.png differ diff --git a/chrome/skin/default/zotero/treeitem-computerProgram.png b/chrome/skin/default/zotero/treeitem-computerProgram.png new file mode 100644 index 000000000..0c76bd129 Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-computerProgram.png differ diff --git a/chrome/skin/default/zotero/treeitem-email.png b/chrome/skin/default/zotero/treeitem-email.png new file mode 100644 index 000000000..7348aed77 Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-email.png differ diff --git a/chrome/skin/default/zotero/treeitem-forumPost.png b/chrome/skin/default/zotero/treeitem-forumPost.png new file mode 100644 index 000000000..03ddd799f Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-forumPost.png differ diff --git a/chrome/skin/default/zotero/treeitem-map.png b/chrome/skin/default/zotero/treeitem-map.png new file mode 100644 index 000000000..f90ef25ec Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-map.png differ diff --git a/chrome/skin/default/zotero/treeitem-podcast.png b/chrome/skin/default/zotero/treeitem-podcast.png new file mode 100644 index 000000000..f54bf736c Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-podcast.png differ diff --git a/chrome/skin/default/zotero/treeitem-report.png b/chrome/skin/default/zotero/treeitem-report.png new file mode 100644 index 000000000..779ad58ef Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-report.png differ diff --git a/chrome/skin/default/zotero/treeitem-tvBroadcast.png b/chrome/skin/default/zotero/treeitem-tvBroadcast.png new file mode 100644 index 000000000..1738a4f10 Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-tvBroadcast.png differ diff --git a/chrome/skin/default/zotero/treeitem-videoRecording.png b/chrome/skin/default/zotero/treeitem-videoRecording.png new file mode 100644 index 000000000..b0ce7bb19 Binary files /dev/null and b/chrome/skin/default/zotero/treeitem-videoRecording.png differ