diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2010-11-10 11:52:20 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2010-11-10 11:52:20 +0000 |
commit | ec944703231894b2a4bcd80448cb98f1f976461c (patch) | |
tree | b02c04274abdcefda65de8a17a080a5bdf4f4700 /WebContent/VAADIN/themes/sampler/layouts | |
parent | 4b8b3ea5c086b68e860254fa1ee98e7068314abe (diff) | |
download | vaadin-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.png | bin | 0 -> 20223 bytes | |||
-rw-r--r-- | WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png | bin | 0 -> 20173 bytes | |||
-rw-r--r-- | WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png | bin | 0 -> 20173 bytes | |||
-rw-r--r-- | WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png | bin | 0 -> 20223 bytes | |||
-rw-r--r-- | WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css | 14 |
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 Binary files differnew file mode 100644 index 0000000000..11511f6d34 --- /dev/null +++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-bottom.png diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png Binary files differnew file mode 100644 index 0000000000..94cc431687 --- /dev/null +++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-left.png diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png Binary files differnew file mode 100644 index 0000000000..ce38258c8e --- /dev/null +++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-right.png diff --git a/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png Binary files differnew file mode 100644 index 0000000000..cb27085e0e --- /dev/null +++ b/WebContent/VAADIN/themes/sampler/layouts/images/measured-from-top.png 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; |