diff options
| author | Ed Tanous <ed.tanous@intel.com> | 2019-06-10 17:48:53 -0700 |
|---|---|---|
| committer | Gunnar Mills <gmills@us.ibm.com> | 2019-07-02 20:38:51 +0000 |
| commit | d5bf6baa758cb3e822ed6e9842308915b202d44a (patch) | |
| tree | 96b9495f536a5197047597c9df39320e42a3eebe /app/common | |
| parent | 1f690f3ebee87613ec8213922c9ca1e69e64560a (diff) | |
| download | phosphor-webui-d5bf6baa758cb3e822ed6e9842308915b202d44a.tar.gz phosphor-webui-d5bf6baa758cb3e822ed6e9842308915b202d44a.zip | |
Fix the opacity of the loading screen
Currently the loading screen has a 0.7 opacity, which leads to some
strange behaviors at times when changing screens. Old scopes pop under
new ones, leading to a page "jump" once the loading is complete.
Making the loading page fully opaque and removing the transition effect
reduces this behavior, and makes the page transitions feel cleaner.
Tested:
Loaded webui locally. Observed problem goes away when navigating
between pages. Navigated between several pages to verify, including
pages with a lot of static data.
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Change-Id: I5549d5c49901429f6e9c353524c6f7060725c2ea
Diffstat (limited to 'app/common')
| -rw-r--r-- | app/common/styles/elements/loader.scss | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/common/styles/elements/loader.scss b/app/common/styles/elements/loader.scss index 1f1cd56..7eaea60 100644 --- a/app/common/styles/elements/loader.scss +++ b/app/common/styles/elements/loader.scss @@ -48,7 +48,5 @@ background: #fefefe; height: 100%; z-index: 90; - opacity: .7; width: 100%; - -webkit-animation: fade 1s ease-in; -}
\ No newline at end of file +} |

