aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-preload/package.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-02-27 18:15:43 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-03-06 18:56:48 +0100
commitc80aad5b4ab70462f39b5073c936adf9f54c5fd3 (patch)
tree23d37d3d7564f9dcac442adeafe4ef9c7e9bedd6 /packages/service-preload/package.json
parentfeat: Location bar actions (diff)
downloadsophie-c80aad5b4ab70462f39b5073c936adf9f54c5fd3.tar.gz
sophie-c80aad5b4ab70462f39b5073c936adf9f54c5fd3.tar.zst
sophie-c80aad5b4ab70462f39b5073c936adf9f54c5fd3.zip
fix(service-preload): Browser view canvas background
Due to `BrowserView.setBackgroundColor` not working under linux, we have to inject styles to make sure our `BrowserView` is opaque. We try to cover more edge cases to avoid the interference of the injected style and the web site's own styles according to the CSS specification: https://www.w3.org/TR/css-backgrounds-3/#body-background In particular, we avoid overwriting the styles for the `html` element if `body` already has an opaque background so that the background of `body` can extend to the whole canvas. This might still interfere with the web site if it updates the background color on the fly (dark mode), but a reload should solve most of such issues. Hopefully, after https://github.com/electron/electron/issues/32898 is resolved, we can get rid of the hack entirely. Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'packages/service-preload/package.json')
-rw-r--r--packages/service-preload/package.json4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/service-preload/package.json b/packages/service-preload/package.json
index 1cfa74c..2090cf9 100644
--- a/packages/service-preload/package.json
+++ b/packages/service-preload/package.json
@@ -9,6 +9,10 @@
9 }, 9 },
10 "dependencies": { 10 "dependencies": {
11 "@sophie/service-shared": "workspace:*", 11 "@sophie/service-shared": "workspace:*",
12 "color-string": "^1.9.0",
12 "electron": "17.1.0" 13 "electron": "17.1.0"
14 },
15 "devDependencies": {
16 "@types/color-string": "^1"
13 } 17 }
14} 18}