diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-04-01 07:57:27 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-04-01 07:57:27 +0000 |
commit | 7c92012175b929b9fa14d18a03e666e8947806a3 (patch) | |
tree | 2fd0e709c6aacde615fb96ba2fb5935c10c5257a | |
parent | 0e1c9479660d91825dc39fd282f236fb803b1b54 (diff) | |
download | vaadin-framework-7c92012175b929b9fa14d18a03e666e8947806a3.tar.gz vaadin-framework-7c92012175b929b9fa14d18a03e666e8947806a3.zip |
Fixes #3505 Sample: AbsoluteLayout
svn changeset:12269/svn branch:6.3
-rw-r--r-- | WebContent/VAADIN/themes/sampler/layouts/absoluteexample.css | 3 | ||||
-rw-r--r-- | WebContent/VAADIN/themes/sampler/styles.css | 2 | ||||
-rw-r--r-- | WebContent/index.html | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/sampler/layouts/absoluteexample.css b/WebContent/VAADIN/themes/sampler/layouts/absoluteexample.css new file mode 100644 index 0000000000..76250553ec --- /dev/null +++ b/WebContent/VAADIN/themes/sampler/layouts/absoluteexample.css @@ -0,0 +1,3 @@ +.v-absolutelayout-border { + border: 1px solid #ddd; +}
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/sampler/styles.css b/WebContent/VAADIN/themes/sampler/styles.css index 33b714cb8b..d69e982f1c 100644 --- a/WebContent/VAADIN/themes/sampler/styles.css +++ b/WebContent/VAADIN/themes/sampler/styles.css @@ -16,6 +16,8 @@ @import url(layouts/cssexample.css); +@import url(layouts/absoluteexample.css); + @import url(table/styles.css); @import url(misc/item-styles.css);
\ No newline at end of file diff --git a/WebContent/index.html b/WebContent/index.html index 43a46288b1..0a09d48bc8 100644 --- a/WebContent/index.html +++ b/WebContent/index.html @@ -55,7 +55,7 @@ <h2>Sampler</h2> <p>The Sampler contains examples of all Vaadin core components and their features with example source code available for copy-pasting.</p> <strong class="start">Start Sampler »</strong> - <strong class="new"><em>Notable In This Release</em> • Drag'n'drop • Keyboard Shortcuts • AbsoluteLayout • GWT 2.0</strong> + <strong class="new"><em>Notable In This Release</em> • Drag'n'drop • Keyboard Shortcuts • AbsoluteLayout • GWT 2.0</strong> </a> </div> </div> <!-- /upfront --> |