summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/sampler/layouts
diff options
context:
space:
mode:
authorJohn Alhroos <john.ahlroos@itmill.com>2010-11-10 11:52:20 +0000
committerJohn Alhroos <john.ahlroos@itmill.com>2010-11-10 11:52:20 +0000
commitec944703231894b2a4bcd80448cb98f1f976461c (patch)
treeb02c04274abdcefda65de8a17a080a5bdf4f4700 /WebContent/VAADIN/themes/sampler/layouts
parent4b8b3ea5c086b68e860254fa1ee98e7068314abe (diff)
downloadvaadin-framework-ec944703231894b2a4bcd80448cb98f1f976461c.tar.gz
vaadin-framework-ec944703231894b2a4bcd80448cb98f1f976461c.zip
Some enhancements to the SplitPanel positioning sample.
svn changeset:15951/svn branch:6.5
Diffstat (limited to 'WebContent/VAADIN/themes/sampler/layouts')
-rw-r--r--WebContent/VAADIN/themes/sampler/layouts/images/measured-from-bottom.pngbin0 -> 20223 bytes
-rw-r--r--WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.pngbin0 -> 20173 bytes
-rw-r--r--WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.pngbin0 -> 20173 bytes
-rw-r--r--WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.pngbin0 -> 20223 bytes
-rw-r--r--WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css14
5 files changed, 10 insertions, 4 deletions
diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-bottom.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-bottom.png
new file mode 100644
index 0000000000..11511f6d34
--- /dev/null
+++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-bottom.png
Binary files differ
diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png
new file mode 100644
index 0000000000..94cc431687
--- /dev/null
+++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png
Binary files differ
diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png
new file mode 100644
index 0000000000..ce38258c8e
--- /dev/null
+++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png
Binary files differ
diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png
new file mode 100644
index 0000000000..cb27085e0e
--- /dev/null
+++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png
Binary files differ
diff --git a/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css b/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css
index 750e4a99ac..30321bf24b 100644
--- a/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css
+++ b/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css
@@ -1,5 +1,6 @@
.split-panel-positioning-example .measured-from-left{
- background-color: #4899b9;
+ background-image: url("images/measured-from-left.png");
+ background-repeat: repeat-y;
text-align: center;
vertical-align: middle;
-moz-opacity:.50;
@@ -7,7 +8,9 @@
opacity:.50;
}
.split-panel-positioning-example .measured-from-right{
- background-color: #4899b9 ;
+ background-image: url("images/measured-from-right.png");
+ background-position: right;
+ background-repeat: repeat-y;
text-align: center;
vertical-align: middle;
-moz-opacity:.50;
@@ -15,7 +18,8 @@
opacity:.50;
}
.split-panel-positioning-example .measured-from-top{
- background-color: #48b952 ;
+ background-image: url("images/measured-from-top.png");
+ background-repeat: repeat-x;
text-align: center;
vertical-align: middle;
-moz-opacity:.50;
@@ -23,7 +27,9 @@
opacity:.50;
}
.split-panel-positioning-example .measured-from-bottom{
- background-color: #48b952 ;
+ background-image: url("images/measured-from-bottom.png");
+ background-position: bottom;
+ background-repeat: repeat-x;
text-align: center;
vertical-align: middle;
-moz-opacity:.50;