From 3c5e66294220f7ac346e353a88dab10c55f16838 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 24 Oct 2012 11:54:30 -0700 Subject: [PATCH] Remove auto margin-left/margin-right from arbitrary descendants of display - should only be direct children of display. --- guacamole/src/main/webapp/styles/client.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guacamole/src/main/webapp/styles/client.css b/guacamole/src/main/webapp/styles/client.css index e54768a5b..f910e5fe6 100644 --- a/guacamole/src/main/webapp/styles/client.css +++ b/guacamole/src/main/webapp/styles/client.css @@ -157,6 +157,9 @@ div.dialog p { div#display * { position: relative; +} + +div#display > * { margin-left: auto; margin-right: auto; }