diff options
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 10 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/window/window.css | 10 |
2 files changed, 20 insertions, 0 deletions
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; |