# HG changeset patch # User Guido Berhoerster # Date 1544952139 -3600 # Node ID 38b20de704a08714b91e76cbcbaa2647d98f55f2 # Parent 66e18d77739d26b3f4c80302a59512a79837614d Use seperate grey icon for the page action This does not stand out so much as the orange icon espeacially when using dark themes and should be readable on any theme since there is no transparency. Currently there is neither a way for addons to specify themed icons for page actions nor is it possible to use the browser's foreground and background color as native page action icons do. diff -r 66e18d77739d -r 38b20de704a0 Makefile --- a/Makefile Thu Dec 13 12:55:03 2018 +0100 +++ b/Makefile Sun Dec 16 10:22:19 2018 +0100 @@ -40,6 +40,7 @@ content_scripts/feed-probe.js \ content_scripts/feed-readers.js \ icons/feed-preview.svg \ + icons/feed-preview-action.svg \ $(BITMAP_ICONS) \ js/background.js \ js/feed-parser.js \ diff -r 66e18d77739d -r 38b20de704a0 icons/feed-preview-action.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/icons/feed-preview-action.svg Sun Dec 16 10:22:19 2018 +0100 @@ -0,0 +1,17 @@ + + + + + + + + + + + diff -r 66e18d77739d -r 38b20de704a0 manifest.json.in --- a/manifest.json.in Thu Dec 13 12:55:03 2018 +0100 +++ b/manifest.json.in Sun Dec 16 10:22:19 2018 +0100 @@ -40,7 +40,7 @@ ], "page_action": { "browser_style": true, - "default_icon": "icons/feed-preview.svg", + "default_icon": "icons/feed-preview-action.svg", "default_title": "Feeds", "default_popup": "popup/feed-selection.html" },