diff options
author | Marko Grönroos <magi@iki.fi> | 2009-01-09 12:17:08 +0000 |
---|---|---|
committer | Marko Grönroos <magi@iki.fi> | 2009-01-09 12:17:08 +0000 |
commit | 190d079bc1cf1f147db7646ff466e6d1dcc40ac1 (patch) | |
tree | b128dd81b00b7458225a5d84aeb37d97338783ac /WebContent/ITMILL/themes/sampler | |
parent | 91e6aa019792937b0c315e8c321488829f8ad298 (diff) | |
download | vaadin-framework-190d079bc1cf1f147db7646ff466e6d1dcc40ac1.tar.gz vaadin-framework-190d079bc1cf1f147db7646ff466e6d1dcc40ac1.zip |
Sampler: Added layout alignment example. For #2432.
svn changeset:6476/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes/sampler')
-rw-r--r-- | WebContent/ITMILL/themes/sampler/layouts/styles.css | 23 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/sampler/styles.css | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/WebContent/ITMILL/themes/sampler/layouts/styles.css b/WebContent/ITMILL/themes/sampler/layouts/styles.css new file mode 100644 index 0000000000..b56cdb9d1e --- /dev/null +++ b/WebContent/ITMILL/themes/sampler/layouts/styles.css @@ -0,0 +1,23 @@ +/**************************************************************************** + * sampler/layouts/styles.css + * + * Styles for the layout examples in Sampler. + * + ****************************************************************************/ + +/**************************************************************************** + * Layout alignment example + ****************************************************************************/ + +.i-gridlayout-example-alignment { + background: blue; +} + +.i-gridlayout-example-alignment .i-gridlayout-margin { + padding: 3px; +} + +div.i-gridlayout-example-alignment > div.i-gridlayout-margin > div > div { + padding: 3px; + background: yellow; +} diff --git a/WebContent/ITMILL/themes/sampler/styles.css b/WebContent/ITMILL/themes/sampler/styles.css index ec764f8763..cd8b0f5c69 100644 --- a/WebContent/ITMILL/themes/sampler/styles.css +++ b/WebContent/ITMILL/themes/sampler/styles.css @@ -6,3 +6,4 @@ @import url(prominentprimaryaction/styles.css); +@import url(layouts/styles.css); |