diff options
author | Simon L <szaimen@e.mail.de> | 2022-09-29 16:16:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 16:16:53 +0200 |
commit | b4708fb9f003a306edcfe0346e25f9583c4c162a (patch) | |
tree | 8f0fa6e55792f5116d252ae36352b23d352eb6b7 /core | |
parent | d647025f616c95137be269cc7467c23671a08aa2 (diff) | |
parent | eb6ed7dcfdc8d02ced67858710f00cbf7394f077 (diff) | |
download | nextcloud-server-b4708fb9f003a306edcfe0346e25f9583c4c162a.tar.gz nextcloud-server-b4708fb9f003a306edcfe0346e25f9583c4c162a.zip |
Merge pull request #34327 from nextcloud/fix/favourite
Fix starred favourite icon
Diffstat (limited to 'core')
-rw-r--r-- | core/src/icons.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/src/icons.js b/core/src/icons.js index 33ca22cae77..3cd685dce8c 100644 --- a/core/src/icons.js +++ b/core/src/icons.js @@ -138,6 +138,10 @@ const iconsColor = { path: path.join(__dirname, '../img', 'actions', 'star-dark.svg'), color: 'yellow', }, + 'star': { + path: path.join(__dirname, '../img', 'actions', 'star-dark.svg'), + color: 'grey', + }, 'delete-color': { path: path.join(__dirname, '../img', 'actions', 'delete.svg'), color: 'red', @@ -170,8 +174,8 @@ const iconsAliases = { 'icon-star:hover': 'icon-starred', 'icon-star:focus': 'icon-starred', // Un-starring action - 'icon-starred:hover': 'icon-star', - 'icon-starred:focus': 'icon-star', + 'icon-starred:hover': 'icon-star-grey', + 'icon-starred:focus': 'icon-star-grey', // Delete normal 'icon-delete.no-permission:hover': 'icon-delete-dark', 'icon-delete.no-permission:focus': 'icon-delete-dark', |