summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/runo
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2009-05-25 11:19:59 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2009-05-25 11:19:59 +0000
commit371ab070a466e2d60ca32105a4506e350160152e (patch)
treea35657b9052bb7e8b3ece30c8502b01bc46af0c1 /WebContent/VAADIN/themes/runo
parent0f3e18635c4525538cfebc7dd8ef448be8a2f4c6 (diff)
downloadvaadin-framework-371ab070a466e2d60ca32105a4506e350160152e.tar.gz
vaadin-framework-371ab070a466e2d60ca32105a4506e350160152e.zip
Black window style for Reindeer theme.
Multiple other fixes to Reindeer theme. Some fixes to base and Runo themes involving window styles. svn changeset:7988/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN/themes/runo')
-rw-r--r--WebContent/VAADIN/themes/runo/styles.css21
-rw-r--r--WebContent/VAADIN/themes/runo/window/window.css7
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;