summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy White <jwhite@codeweavers.com>2019-02-14 12:44:06 -0600
committerJeremy White <jwhite@codeweavers.com>2019-02-14 12:47:06 -0600
commitd75dc564401a4166f7d2c58185f0f5a8549259a8 (patch)
treea4d406e812de17185810916dea1a188fec2074e0
parenta2d39ea67237e8bfe6524fbcad3df6a980365625 (diff)
Hide the message console by default.spice-html5-0.2.0
-rw-r--r--spice.css2
-rw-r--r--spice.html2
2 files changed, 3 insertions, 1 deletions
diff --git a/spice.css b/spice.css
index 4c61cb3..968ba16 100644
--- a/spice.css
+++ b/spice.css
@@ -103,6 +103,8 @@ body
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
+ /* We default the message box to hidden. */
+ display: none;
}
.spice-message p {
margin-bottom: 0em;
diff --git a/spice.html b/spice.html
index d744ef9..177cfc2 100644
--- a/spice.html
+++ b/spice.html
@@ -176,7 +176,7 @@
<label for="host">Host:</label> <input type='text' id='host' value='localhost'> <!-- localhost -->
<label for="port">Port:</label> <input type='text' id='port' value='5959'>
<label for="password">Password:</label> <input type='password' id='password' value=''>
- <label for="show_console">Show console </label><input type="checkbox" id="show_console" value="1"" checked>
+ <label for="show_console">Show console </label><input type="checkbox" id="show_console" value="1"">
<button id="connectButton">Start</button>
</div>