diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-04-09 08:41:24 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-04-09 08:41:24 +0000 |
commit | 6175ddd0c13112132665a752c8beac04de7ce8d3 (patch) | |
tree | 7f05ded1586608fe5f092196e2480425551ee129 /WebContent/ITMILL/themes | |
parent | d8a2fcb4b179e7bd3bab4c9b968216e5acddaf2b (diff) | |
download | vaadin-framework-6175ddd0c13112132665a752c8beac04de7ce8d3.tar.gz vaadin-framework-6175ddd0c13112132665a752c8beac04de7ce8d3.zip |
new component, absolutelayout (aka coordinatelayout #1267) and simple test case
svn changeset:7374/svn branch:6.0
Diffstat (limited to 'WebContent/ITMILL/themes')
-rw-r--r-- | WebContent/ITMILL/themes/default/absolutelayout/absolutelayout.css | 4 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 6 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/tests-tickets/styles.css | 12 |
3 files changed, 22 insertions, 0 deletions
diff --git a/WebContent/ITMILL/themes/default/absolutelayout/absolutelayout.css b/WebContent/ITMILL/themes/default/absolutelayout/absolutelayout.css new file mode 100644 index 0000000000..e77e380688 --- /dev/null +++ b/WebContent/ITMILL/themes/default/absolutelayout/absolutelayout.css @@ -0,0 +1,4 @@ +.i-absolutelayout-wrapper { + position: absolute; + overflow:hidden; +} diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 439f4f2aec..cc8c3fda7e 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -1,5 +1,11 @@ /* Automatically compiled css file from subdirectories. */ +/* ./WebContent/ITMILL/themes/default/absolutelayout/absolutelayout.css */ +.i-absolutelayout-wrapper { + position: absolute; + overflow:hidden; +} + /* ./WebContent/ITMILL/themes/default/accordion/accordion.css */ .i-accordion { position: relative; diff --git a/WebContent/ITMILL/themes/tests-tickets/styles.css b/WebContent/ITMILL/themes/tests-tickets/styles.css index 225bbd6d1d..2c2b359ed9 100644 --- a/WebContent/ITMILL/themes/tests-tickets/styles.css +++ b/WebContent/ITMILL/themes/tests-tickets/styles.css @@ -1276,4 +1276,16 @@ padding:2px; .i-button-nowraplink span { white-space: normal; } + +.cyan { + background:cyan; +} +.yellow { + background:yellow; +} + +.green { + background:green; +} +
\ No newline at end of file |