diff options
author | Pytal <24800714+Pytal@users.noreply.github.com> | 2024-03-21 10:45:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 10:45:50 -0700 |
commit | 45efd28db7f1dfdb58d8d51513a68790e4d7d612 (patch) | |
tree | 86f8cd08154cd3d4cc15382f2de9ec54d156b718 /core/src | |
parent | a7dfec070a1dda79ade7cfea91b3dc7e74d184a6 (diff) | |
parent | 799347164f176448ad116f4faf9620fd333a407c (diff) | |
download | nextcloud-server-45efd28db7f1dfdb58d8d51513a68790e4d7d612.tar.gz nextcloud-server-45efd28db7f1dfdb58d8d51513a68790e4d7d612.zip |
Merge pull request #44368 from nextcloud/feat/new-file-menu-icon-svg
feat: Add new mdi New file menu icons
Diffstat (limited to 'core/src')
-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', } |