GUAC-810: Resize client display depending only on containing element, not entire window.

This commit is contained in:
Michael Jumper
2014-12-20 16:01:06 -08:00
parent f55c3561a4
commit 50d5a79031
4 changed files with 48 additions and 6 deletions

View File

@@ -32,11 +32,21 @@
div.main {
overflow: auto;
position: fixed;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
position: relative;
}
.resize-sensor {
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
overflow: hidden;
border: none;
opacity: 0;
z-index: -1;
}
div.displayOuter {