Fix cursor on downloader

This commit is contained in:
Ryan Huffman 2016-01-15 15:13:51 -08:00
parent 12c9278d44
commit 40a9efb248
2 changed files with 7 additions and 8 deletions

View file

@ -17,6 +17,7 @@ body {
font-size: 14pt;
-webkit-touch-callout: none;
-webkit-user-select: none;
cursor: default;
}
#error-message {
@ -24,8 +25,12 @@ body {
color: #EB4C5F;
padding: 20px;
margin: 20px 120px 0 120px;
}
.selectable {
-webkit-touch-callout: text;
-webkit-user-select: text;
cursor: text;
}
progress {

View file

@ -7,19 +7,13 @@
</head>
<body onload="ready()">
<div id="state-downloading" class="state">
<h1>Downloading<span class="one">.</span><span class="two">.</span><span class="three">.</span></h1>
<progress max="100" value="80" id="download-progress"></progress>
<div id="cancel-area">
<a id="cancel" href="#">Cancel</a>
</div>
</div>
<div id="state-installing" class="state">
<div id="state-installing" class="state">
<h1>Installing<span class="one">.</span><span class="two">.</span><span class="three">.</span></h1>
<em>Just a moment</em>
</div>
<div id="state-complete" class="state">
@ -31,7 +25,7 @@
<h1>Houston...</h1>
<em>An unfortunate error has occurred:</em>
<div id="error-message">
<div id="error-message" class="selectable">
</div>
</body>
</html>