diff --git a/guacamole/src/main/webapp/client.xhtml b/guacamole/src/main/webapp/client.xhtml index 003431809..1b2c5ee70 100644 --- a/guacamole/src/main/webapp/client.xhtml +++ b/guacamole/src/main/webapp/client.xhtml @@ -23,6 +23,7 @@ + diff --git a/guacamole/src/main/webapp/scripts/guac-ui.js b/guacamole/src/main/webapp/scripts/guac-ui.js index f34be263f..ccb391b6b 100644 --- a/guacamole/src/main/webapp/scripts/guac-ui.js +++ b/guacamole/src/main/webapp/scripts/guac-ui.js @@ -774,7 +774,7 @@ GuacUI.Download = function(filename) { element.removeChild(progress); GuacUI.addClass(element, "complete"); - var download = GuacUI.createChildElement(element, "div", "download"); + var download = GuacUI.createChildElement(element, "button"); download.textContent = "Download"; download.onclick = function() { if (guac_download.ondownload) diff --git a/guacamole/src/main/webapp/styles/client.css b/guacamole/src/main/webapp/styles/client.css index a2640f0f6..0de307642 100644 --- a/guacamole/src/main/webapp/styles/client.css +++ b/guacamole/src/main/webapp/styles/client.css @@ -420,13 +420,14 @@ p.hint { height: 100%; width: 0; 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, .download.notification .progress { - background: #444 url('../images/progress.png'); + background: #C2C2C2 url('../images/progress.png'); background-size: 16px 16px; -moz-background-size: 16px 16px; -webkit-background-size: 16px 16px;