diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-03-20 12:49:58 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-03-20 16:27:38 -0700 |
commit | 4722cbe8f507d5a72678442e0af48ab2f6b4a15b (patch) | |
tree | 4cf44a9bfc70e16efeff1099985c2a3f33a55e76 /core/src/icons.js | |
parent | 8862fbaf4dc872da1ce9e4193d977a535d8a0159 (diff) | |
download | nextcloud-server-4722cbe8f507d5a72678442e0af48ab2f6b4a15b.tar.gz nextcloud-server-4722cbe8f507d5a72678442e0af48ab2f6b4a15b.zip |
feat: Add new icon-filetype-text and icon-add-folder-description
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/src/icons.js')
-rw-r--r-- | core/src/icons.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/src/icons.js b/core/src/icons.js index 43384953905..fb8cccfe56c 100644 --- a/core/src/icons.js +++ b/core/src/icons.js @@ -125,6 +125,10 @@ const icons = { } const iconsColor = { + 'add-folder-description': { + path: path.join(__dirname, '../img', 'actions', 'add-folder-description.svg'), + color: 'grey', + }, 'settings': { path: path.join(__dirname, '../img', 'actions', 'settings.svg'), color: 'black', @@ -167,6 +171,10 @@ const iconsColor = { // TODO: replace primary ? color: 'primary', }, + 'filetype-text': { + path: path.join(__dirname, '../img', 'filetypes', 'text.svg'), + color: 'grey', + }, } // use this to define aliases to existing icons @@ -210,7 +218,6 @@ const iconsAliases = { 'icon-category-security': 'icon-password-dark', 'icon-category-search': 'icon-search-dark', 'icon-category-tools': 'icon-settings-dark', - 'icon-filetype-text': 'icon-file-grey', 'nav-icon-systemtagsfilter': 'icon-tag-dark', } |