diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2010-11-10 08:59:40 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2010-11-10 08:59:40 +0000 |
commit | fef0fbc279145b4730e8853b87827588e5f2f1f2 (patch) | |
tree | c338382df696bb624da2f09e76953eca1851dc92 /WebContent | |
parent | 7d7d63feb7913ea6a273e941c594d3f4722c54cf (diff) | |
download | vaadin-framework-fef0fbc279145b4730e8853b87827588e5f2f1f2.tar.gz vaadin-framework-fef0fbc279145b4730e8853b87827588e5f2f1f2.zip |
Added SplitPanel positioning example.
svn changeset:15948/svn branch:6.5
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css | 36 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/sampler/styles.css | 2 |
2 files changed, 38 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css b/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css new file mode 100644 index 0000000000..750e4a99ac --- /dev/null +++ b/WebContent/VAADIN/themes/sampler/layouts/splitpanelpositioningexample.css @@ -0,0 +1,36 @@ +.split-panel-positioning-example .measured-from-left{ + background-color: #4899b9; + text-align: center; + vertical-align: middle; + -moz-opacity:.50; + filter:alpha(opacity=50); + opacity:.50; +} +.split-panel-positioning-example .measured-from-right{ + background-color: #4899b9 ; + text-align: center; + vertical-align: middle; + -moz-opacity:.50; + filter:alpha(opacity=50); + opacity:.50; +} +.split-panel-positioning-example .measured-from-top{ + background-color: #48b952 ; + text-align: center; + vertical-align: middle; + -moz-opacity:.50; + filter:alpha(opacity=50); + opacity:.50; +} +.split-panel-positioning-example .measured-from-bottom{ + background-color: #48b952 ; + text-align: center; + vertical-align: middle; + -moz-opacity:.50; + filter:alpha(opacity=50); + opacity:.50; +} + +.split-panel-positioning-example .v-select-optiongroup .v-select-option{ + display:inline; +}
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/sampler/styles.css b/WebContent/VAADIN/themes/sampler/styles.css index 1ee032e25a..ea7215a344 100644 --- a/WebContent/VAADIN/themes/sampler/styles.css +++ b/WebContent/VAADIN/themes/sampler/styles.css @@ -21,6 +21,8 @@ @import url(layouts/clickableexample.css); +@import url(layouts/splitpanelpositioningexample.css); + @import url(table/styles.css); @import url(misc/item-styles.css); |