diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2008-12-12 07:42:56 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2008-12-12 07:42:56 +0000 |
commit | 3adccd3f230021ff9457ab85ade3a4cdea491bfa (patch) | |
tree | 952f90279c86c61862044bb46459055ccd3022d1 /WebContent/ITMILL/themes | |
parent | 78a9ea91a41be569db1d6d935dcb2e42d8e8a491 (diff) | |
download | vaadin-framework-3adccd3f230021ff9457ab85ade3a4cdea491bfa.tar.gz vaadin-framework-3adccd3f230021ff9457ab85ade3a4cdea491bfa.zip |
Fixes #2323: SubWindow size is too wide in IE7.
svn changeset:6185/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes')
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 7 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/window/window.css | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index bf646e16b2..4cb8a9a92b 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -2519,15 +2519,16 @@ input.i-modified, height: 8px; margin-left: 9px; background: transparent url(window/img/bottom-right.png) no-repeat right top; + position: relative; } .i-window-resizebox { - position: relative; /* Needed to position the element over ScrollPanel, which is also relatively positioned */ + position: absolute; /* Needed to position the element over ScrollPanel, which is also relatively positioned */ display: inline; /* fix IE6 double float margin bug */ - float: right; + right: 5px; width: 10px; height: 10px; - margin-right: 5px; + /*margin-right: 5px;*/ margin-top: -7px; cursor: se-resize; background: transparent url(window/img/resize.png); diff --git a/WebContent/ITMILL/themes/default/window/window.css b/WebContent/ITMILL/themes/default/window/window.css index 08a8f3e428..4e9ed4cd1f 100644 --- a/WebContent/ITMILL/themes/default/window/window.css +++ b/WebContent/ITMILL/themes/default/window/window.css @@ -59,15 +59,16 @@ height: 8px; margin-left: 9px; background: transparent url(img/bottom-right.png) no-repeat right top; + position: relative; } .i-window-resizebox { - position: relative; /* Needed to position the element over ScrollPanel, which is also relatively positioned */ + position: absolute; /* Needed to position the element over ScrollPanel, which is also relatively positioned */ display: inline; /* fix IE6 double float margin bug */ - float: right; + right: 5px; width: 10px; height: 10px; - margin-right: 5px; + /*margin-right: 5px;*/ margin-top: -7px; cursor: se-resize; background: transparent url(img/resize.png); |