From ed66433323dced20fff0bc9a298fbbb68a19d9d1 Mon Sep 17 00:00:00 2001 From: Cole Peters Date: Tue, 11 Oct 2016 18:27:00 +0100 Subject: [PATCH] Use white background on webviews: Most web clients apply a default white background to web pages, so some websites omit explicitly setting their page backgrounds to white. The default black background on the webview component was making some sites unreadable. This commit just changes it from black to white. --- lib/components/term.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/term.js b/lib/components/term.js index 1f860e92..a2e9ea13 100644 --- a/lib/components/term.js +++ b/lib/components/term.js @@ -290,7 +290,7 @@ export default class Term extends Component { src={this.props.url} onFocus={this.handleFocus} style={{ - background: '#000', + background: '#fff', position: 'absolute', top: 0, left: 0,