From: Jouni Koivuviita Date: Mon, 15 Sep 2008 14:09:20 +0000 (+0000) Subject: Partial fix for #1106 (Flash content is drawn over sub window borders). X-Git-Tag: 6.7.0.beta1~4163 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0aa27946d9b815b71cbd29e53d4bd4415b8f7678;p=vaadin-framework.git Partial fix for #1106 (Flash content is drawn over sub window borders). svn changeset:5402/svn branch:trunk --- diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 783351c77a..e749a7b69e 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -2264,6 +2264,16 @@ input.i-modified, line-height: 18px; } +/* Partial fix for bug #1106 */ +/* Target Firefox 2 (somehow this will force almost all window borders on top of a flash object) */ +.i-window-contents, x:-moz-any-link { + overflow: hidden; +} +/* Target Firefox 3 (it doesn't need any trickery) */ +.i-window-contents, x:-moz-any-link, x:default { + overflow: visible; +} + .i-window-footer { height: 0; font-size: 0px; diff --git a/WebContent/ITMILL/themes/default/window/window.css b/WebContent/ITMILL/themes/default/window/window.css index cea46271ee..ae8ff87d1e 100644 --- a/WebContent/ITMILL/themes/default/window/window.css +++ b/WebContent/ITMILL/themes/default/window/window.css @@ -63,6 +63,16 @@ line-height: 18px; } +/* Partial fix for bug #1106 */ +/* Target Firefox 2 (somehow this will force almost all window borders on top of a flash object) */ +.i-window-contents, x:-moz-any-link { + overflow: hidden; +} +/* Target Firefox 3 (it doesn't need any trickery) */ +.i-window-contents, x:-moz-any-link, x:default { + overflow: visible; +} + .i-window-footer { height: 0; font-size: 0px;