From: Marc Englund Date: Tue, 27 May 2008 08:17:14 +0000 (+0000) Subject: Fixed double-scrollbar issue (IE,SA). Should now work as planned both w/ generated... X-Git-Tag: 6.7.0.beta1~4693 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1b02e2e23d7a6148bf96633dc933a68af349617e;p=vaadin-framework.git Fixed double-scrollbar issue (IE,SA). Should now work as planned both w/ generated body and embedded. svn changeset:4643/svn branch:trunk --- 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;