Use style from ui.css.

This commit is contained in:
Michael Jumper
2013-11-10 17:45:43 -08:00
parent 6776eaa15e
commit 27ae6e5024
3 changed files with 5 additions and 3 deletions

View File

@@ -23,6 +23,7 @@
<head> <head>
<link rel="icon" type="image/png" href="images/guacamole-logo-64.png"/> <link rel="icon" type="image/png" href="images/guacamole-logo-64.png"/>
<link rel="stylesheet" type="text/css" href="styles/ui.css"/>
<link rel="stylesheet" type="text/css" href="styles/client.css"/> <link rel="stylesheet" type="text/css" href="styles/client.css"/>
<link rel="stylesheet" type="text/css" href="styles/keyboard.css"/> <link rel="stylesheet" type="text/css" href="styles/keyboard.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi"/>

View File

@@ -774,7 +774,7 @@ GuacUI.Download = function(filename) {
element.removeChild(progress); element.removeChild(progress);
GuacUI.addClass(element, "complete"); GuacUI.addClass(element, "complete");
var download = GuacUI.createChildElement(element, "div", "download"); var download = GuacUI.createChildElement(element, "button");
download.textContent = "Download"; download.textContent = "Download";
download.onclick = function() { download.onclick = function() {
if (guac_download.ondownload) if (guac_download.ondownload)

View File

@@ -420,13 +420,14 @@ p.hint {
height: 100%; height: 100%;
width: 0; width: 0;
box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5), box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5),
inset -1px -1px 0 rgba( 0, 0, 0, 0.1); inset -1px -1px 0 rgba( 0, 0, 0, 0.1),
1px 1px 0 gray;
} }
.upload.notification .progress, .upload.notification .progress,
.download.notification .progress { .download.notification .progress {
background: #444 url('../images/progress.png'); background: #C2C2C2 url('../images/progress.png');
background-size: 16px 16px; background-size: 16px 16px;
-moz-background-size: 16px 16px; -moz-background-size: 16px 16px;
-webkit-background-size: 16px 16px; -webkit-background-size: 16px 16px;