From 1b02e2e23d7a6148bf96633dc933a68af349617e Mon Sep 17 00:00:00 2001 From: Marc Englund Date: Tue, 27 May 2008 08:17:14 +0000 Subject: [PATCH] Fixed double-scrollbar issue (IE,SA). Should now work as planned both w/ generated body and embedded. svn changeset:4643/svn branch:trunk --- WebContent/ITMILL/themes/default/common/common.css | 4 ++-- WebContent/ITMILL/themes/default/styles.css | 2 +- .../toolkit/terminal/gwt/server/ApplicationServlet.java | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/WebContent/ITMILL/themes/default/common/common.css b/WebContent/ITMILL/themes/default/common/common.css index c68d18a625..d449aa5ba4 100644 --- a/WebContent/ITMILL/themes/default/common/common.css +++ b/WebContent/ITMILL/themes/default/common/common.css @@ -5,7 +5,7 @@ height:100%; border:0; margin:0; - overflow:auto; + overflow:hidden; } .i-app { background: #e9eced; @@ -24,7 +24,7 @@ outline: none; margin-top:-1px; border-top:1px solid transparent; -} +} .i-view:active, .i-view:focus { outline: none; diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 3c6a7b3cf0..8a7058c1d6 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -96,7 +96,7 @@ height:100%; border:0; margin:0; - overflow:auto; + overflow:hidden; } .i-app { background: #e9eced; diff --git a/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java b/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java index 27972119ba..bcaedf111b 100644 --- a/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java +++ b/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java @@ -794,7 +794,8 @@ public class ApplicationServlet extends HttpServlet { writeTestingToolsScripts(page, request); } - page.write("\n\n\n"); + page + .write("\n\n\n"); } String appId = appUrl; -- 2.39.5