diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-06 14:37:59 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-06 22:28:16 +0100 |
commit | 4b8868a7f1162c3aa724e34d73024e5879b85476 (patch) | |
tree | 940561bfea0aff59f20df1cd08444b0ad1d6fc4b /apps/files | |
parent | 834f70fd7acefe76e2bf5475347d65a7c705d061 (diff) | |
download | nextcloud-server-4b8868a7f1162c3aa724e34d73024e5879b85476.tar.gz nextcloud-server-4b8868a7f1162c3aa724e34d73024e5879b85476.zip |
feat(theming): Provide CSS variable for favorite color and adjust for dark mode
Co-authored-by: Simon L <szaimen@e.mail.de>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/components/FileEntry/FavoriteIcon.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FavoriteIcon.vue b/apps/files/src/components/FileEntry/FavoriteIcon.vue index 40eff17fe9b..d5b73cc22a6 100644 --- a/apps/files/src/components/FileEntry/FavoriteIcon.vue +++ b/apps/files/src/components/FileEntry/FavoriteIcon.vue @@ -65,7 +65,7 @@ export default defineComponent({ <style lang="scss" scoped> .favorite-marker-icon { - color: #a08b00; + color: var(--color-favorite); // Override NcIconSvgWrapper defaults (clickable area) min-width: unset !important; min-height: unset !important; |