From bb61a25166eec97f82d0afcb04a2d182bfcd0bab Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 29 Jan 2015 18:05:58 -0800 Subject: [PATCH] GUAC-1043: Position viewport and menu absolutely, not with fixed. This also solves some iOS issues with the rendering of fixed elements after rotation. --- guacamole/src/main/webapp/app/client/styles/menu.css | 2 +- guacamole/src/main/webapp/app/client/styles/viewport.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guacamole/src/main/webapp/app/client/styles/menu.css b/guacamole/src/main/webapp/app/client/styles/menu.css index 26acfbbea..dd96408cc 100644 --- a/guacamole/src/main/webapp/app/client/styles/menu.css +++ b/guacamole/src/main/webapp/app/client/styles/menu.css @@ -22,7 +22,7 @@ #menu { overflow: auto; - position: fixed; + position: absolute; top: 0; bottom: 0; max-width: 100%; diff --git a/guacamole/src/main/webapp/app/client/styles/viewport.css b/guacamole/src/main/webapp/app/client/styles/viewport.css index d22120c02..03e4743e4 100644 --- a/guacamole/src/main/webapp/app/client/styles/viewport.css +++ b/guacamole/src/main/webapp/app/client/styles/viewport.css @@ -21,7 +21,7 @@ */ .viewport { - position: fixed; + position: absolute; bottom: 0; left: 0; width: 100%;