1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-06-16 04:58:12 +02:00

Set text color for popups

Fixes #226.
This commit is contained in:
kkapsner 2018-08-19 23:25:19 +02:00
parent 0d5c9beeb3
commit 212cce2ed3
4 changed files with 7 additions and 10 deletions

View File

@ -18,6 +18,7 @@ div {
z-index: 1; z-index: 1;
position: relative; position: relative;
white-space: nowrap; white-space: nowrap;
color: #505050;
} }
.action + .action { .action + .action {

View File

@ -54,20 +54,14 @@
"page": "options/options.html" "page": "options/options.html"
}, },
"browser_action": { "browser_action": {
"browser_style": true, "browser_style": false,
"default_icon": { "default_icon": "icons/browserAction-notPrinted.svg",
"19": "icons/browserAction-notPrinted.svg",
"38": "icons/browserAction-notPrinted.svg"
},
"default_title": "CanvasBlocker", "default_title": "CanvasBlocker",
"default_popup": "browserAction/browserAction.html" "default_popup": "browserAction/browserAction.html"
}, },
"page_action": { "page_action": {
"browser_style": true, "browser_style": false,
"default_icon": { "default_icon": "icons/pageAction-printed.svg",
"19": "icons/pageAction-printed.svg",
"38": "icons/pageAction-printed.svg"
},
"default_popup": "pageAction/pageAction.html" "default_popup": "pageAction/pageAction.html"
}, },
"author": "Korbinian Kapsner", "author": "Korbinian Kapsner",

View File

@ -8,6 +8,7 @@ body {
padding-right: 23px; padding-right: 23px;
white-space: nowrap; white-space: nowrap;
position: relative; position: relative;
color: black;
} }
#prints { #prints {

View File

@ -10,6 +10,7 @@ Version 0.5.3:
fixes: fixes:
- CSP did not work properly for worker-src - CSP did not work properly for worker-src
- detection if the options page was displayed in a separate tab did not work reliably - detection if the options page was displayed in a separate tab did not work reliably
- popup text not readable in some dark themes
known issues: known issues:
- if a data URL is blocked the page action button does not appear - if a data URL is blocked the page action button does not appear