From 99dd992b3dccd2c0ef526410e81f017550480040 Mon Sep 17 00:00:00 2001 From: scriptPilot Date: Mon, 22 May 2017 21:44:28 +0200 Subject: [PATCH] closes 577 - Preloading screen should have same background color as icons --- CHANGELOG.md | 1 + client/index.ejs | 2 +- client/init.css | 1 - scripts/webpack-config.js | 1 + 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf7911d2..615a6c32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - [x] [#566 - App cache does not work in online mode](https://github.com/scriptPilot/app-framework/issues/566) - [x] [#571 - iOS homescreen app: Statusbar overlay but no statusbar visible in landscape mode](https://github.com/scriptPilot/app-framework/issues/571) - [x] [#575 - Icons not updated on image background color change](https://github.com/scriptPilot/app-framework/issues/575) +- [x] [#577 - Preloading screen should have same background color as icons](https://github.com/scriptPilot/app-framework/issues/577) ## Version 1.7.23 diff --git a/client/index.ejs b/client/index.ejs index 656ce9cc..8bc3f9b0 100644 --- a/client/index.ejs +++ b/client/index.ejs @@ -8,7 +8,7 @@ <%= htmlWebpackPlugin.options.title %> <%= htmlWebpackPlugin.options.iconTags %> - + diff --git a/client/init.css b/client/init.css index 941dc627..7f8aa1b8 100644 --- a/client/init.css +++ b/client/init.css @@ -11,7 +11,6 @@ html, body { } #loadingOverlay, #errorOverlay { - background: #fafafa; position: fixed; top: 0; left: 0; diff --git a/scripts/webpack-config.js b/scripts/webpack-config.js index 9cc9075a..e04d6328 100644 --- a/scripts/webpack-config.js +++ b/scripts/webpack-config.js @@ -214,6 +214,7 @@ let createConfiguration = function (mode) { template: abs(env.cache, 'index.ejs'), title: env.cfg.title, iconTags: iconTags, // favicon.ico will be loaded by browser default from root directory + iconBackgroundColor: env.cfg.iconBackgroundColor, inject: true, minify: mode === 'production' ? { removeComments: true,