diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2008-09-15 14:09:20 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2008-09-15 14:09:20 +0000 |
commit | 0aa27946d9b815b71cbd29e53d4bd4415b8f7678 (patch) | |
tree | 60ced5f0914489342694a7280831427d880c5c74 | |
parent | d4c0436c97b6137a9e4763ec38885a10e168e801 (diff) | |
download | vaadin-framework-0aa27946d9b815b71cbd29e53d4bd4415b8f7678.tar.gz vaadin-framework-0aa27946d9b815b71cbd29e53d4bd4415b8f7678.zip |
Partial fix for #1106 (Flash content is drawn over sub window borders).
svn changeset:5402/svn branch:trunk
-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; |