diff options
Diffstat (limited to 'WebContent/VAADIN/themes/runo')
-rw-r--r-- | WebContent/VAADIN/themes/runo/styles.css | 21 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/runo/window/window.css | 7 |
2 files changed, 24 insertions, 4 deletions
diff --git a/WebContent/VAADIN/themes/runo/styles.css b/WebContent/VAADIN/themes/runo/styles.css index 5d6f3dce9a..d694f6d1a1 100644 --- a/WebContent/VAADIN/themes/runo/styles.css +++ b/WebContent/VAADIN/themes/runo/styles.css @@ -1444,6 +1444,7 @@ div.v-window-header { } .v-window-footer { overflow: hidden; + zoom: 1; } .v-window-resizebox { display: inline; /* fix IE6 double float margin bug */ @@ -1454,6 +1455,19 @@ div.v-window-header { background: #ddd; overflow: hidden; } +/* IE7 fails with the float:right */ +.v-ie7 .v-window-footer { + position: relative; + height: 10px; +} +.v-ie7 .v-window-resizebox { + position: absolute; + float: none; + right: 0; +} +.v-ie7 .v-window-footer-noresize { + height: 0; +} .v-window-resizebox-disabled { cursor: default; display: none; @@ -3114,12 +3128,15 @@ textarea.v-textarea-prompt { .v-window-footer { height: 8px; margin-left: 9px; - background: transparent url(window/img/bottom-right.png) no-repeat right top; + background: transparent url(window/img/bottom-right.png) no-repeat right top; + overflow: visible; } .v-ie7 .v-window-footer { position: relative; + overflow: visible; } -.v-window-resizebox { +.v-window-resizebox, +.v-ie7 .v-window-resizebox { position: absolute; /* Needed to position the element over ScrollPanel, which is relatively positioned */ right: 5px; width: 10px; diff --git a/WebContent/VAADIN/themes/runo/window/window.css b/WebContent/VAADIN/themes/runo/window/window.css index 5cee309ae0..082a956ff2 100644 --- a/WebContent/VAADIN/themes/runo/window/window.css +++ b/WebContent/VAADIN/themes/runo/window/window.css @@ -32,12 +32,15 @@ .v-window-footer { height: 8px; margin-left: 9px; - background: transparent url(img/bottom-right.png) no-repeat right top; + background: transparent url(img/bottom-right.png) no-repeat right top; + overflow: visible; } .v-ie7 .v-window-footer { position: relative; + overflow: visible; } -.v-window-resizebox { +.v-window-resizebox, +.v-ie7 .v-window-resizebox { position: absolute; /* Needed to position the element over ScrollPanel, which is relatively positioned */ right: 5px; width: 10px; |