gui: Prevent log bar from flashing up while page is loading

The log bar is hidden by CSS, but will appear briefly while the page is
loading (after the html is fetched, but before dev.css is fetched).

Hide it by using an inline style instead, so this does not happen.

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3220
This commit is contained in:
Antony Male 2016-05-30 13:16:15 +00:00 committed by Audrius Butkevicius
parent 46fa5a374b
commit 56b6383407
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
.dev-top-bar{
display: none;
background-color: yellow;
}

View File

@ -1,4 +1,4 @@
<div class="dev-top-bar" id="dev-top-bar">
<div class="dev-top-bar" id="dev-top-bar" style="display: none">
<link href="assets/css/dev.css" rel="stylesheet">
<div class="row">
<div class="col-xs-4"><b>DEV</b></div>