GUAC-810: Reorganize client view to support text input. Handle text input choice in menu.

This commit is contained in:
Michael Jumper
2014-12-20 16:07:57 -08:00
parent 50d5a79031
commit a89101acaf
5 changed files with 117 additions and 137 deletions

View File

@@ -27,18 +27,6 @@ body.client {
overflow: hidden;
}
/* Viewport Clone */
#viewportClone {
display: table;
height: 100%;
width: 100%;
position: fixed;
left: 0;
top: 0;
visibility: hidden;
}
#preload {
visibility: hidden;
position: absolute;
@@ -48,3 +36,21 @@ body.client {
height: 0;
overflow: hidden;
}
.client-view {
display: table;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.client-view .client-body {
display: table-row;
}
.client-view .client-bottom {
display: table-row;
height: 0;
}