From 0aa27946d9b815b71cbd29e53d4bd4415b8f7678 Mon Sep 17 00:00:00 2001 From: Jouni Koivuviita Date: Mon, 15 Sep 2008 14:09:20 +0000 Subject: [PATCH] Partial fix for #1106 (Flash content is drawn over sub window borders). svn changeset:5402/svn branch:trunk --- WebContent/ITMILL/themes/default/styles.css | 10 ++++++++++ WebContent/ITMILL/themes/default/window/window.css | 10 ++++++++++ 2 files changed, 20 insertions(+) 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; -- 2.39.5