diff options
author | Artur Signell <artur.signell@itmill.com> | 2009-01-21 13:15:41 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2009-01-21 13:15:41 +0000 |
commit | 122449a2e6415db6f10f9c65817c6fdc6e7c9c6e (patch) | |
tree | 2b7b7e57a43d295a23db26f5fb0405a4a816d60e /WebContent/ITMILL/themes | |
parent | 3bc99647a64939f49ebc066b2fc97ce012cc5d77 (diff) | |
download | vaadin-framework-122449a2e6415db6f10f9c65817c6fdc6e7c9c6e.tar.gz vaadin-framework-122449a2e6415db6f10f9c65817c6fdc6e7c9c6e.zip |
Fix for #2463 - OrderedLayout backwards compatibility CSS issue
svn changeset:6609/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes')
-rw-r--r-- | WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css | 14 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css b/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css index d7fd10365f..01d9a78c5c 100644 --- a/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css +++ b/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css @@ -1,29 +1,29 @@ -.i-horizontallayout, .i-verticallayout { +.i-orderedlayout, .i-horizontallayout, .i-verticallayout { overflow: hidden; } -.i-horizontallayout-margin-top, .i-verticallayout-margin-top { +.i-orderedlayout-margin-top, .i-horizontallayout-margin-top, .i-verticallayout-margin-top { padding-top: 15px; } -.i-horizontallayout-margin-right, .i-verticallayout-margin-right { +.i-orderedlayout-margin-right, .i-horizontallayout-margin-right, .i-verticallayout-margin-right { padding-right: 18px; } -.i-horizontallayout-margin-bottom, .i-verticallayout-margin-bottom { +.i-orderedlayout-margin-bottom, .i-horizontallayout-margin-bottom, .i-verticallayout-margin-bottom { padding-bottom: 15px; } -.i-horizontallayout-margin-left, .i-verticallayout-margin-left { +.i-orderedlayout-margin-left, .i-horizontallayout-margin-left, .i-verticallayout-margin-left { padding-left: 18px; } -.i-horizontallayout-spacing-on, .i-verticallayout-spacing-on { +.i-orderedlayout-spacing-on, .i-horizontallayout-spacing-on, .i-verticallayout-spacing-on { padding-top: 8px; padding-left: 8px; } /** This can be used to define spacing if spacing is off server side */ -.i-horizontallayout-spacing-off, .i-verticallayout-spacing-off { +.i-orderedlayout-spacing-off, .i-horizontallayout-spacing-off, .i-verticallayout-spacing-off { padding-top: 0px; padding-left: 0px; } diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 19468d0eea..d925d9ad16 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -961,32 +961,32 @@ input.i-modified, } /* ./WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css */ -.i-horizontallayout, .i-verticallayout { +.i-orderedlayout, .i-horizontallayout, .i-verticallayout { overflow: hidden; } -.i-horizontallayout-margin-top, .i-verticallayout-margin-top { +.i-orderedlayout-margin-top, .i-horizontallayout-margin-top, .i-verticallayout-margin-top { padding-top: 15px; } -.i-horizontallayout-margin-right, .i-verticallayout-margin-right { +.i-orderedlayout-margin-right, .i-horizontallayout-margin-right, .i-verticallayout-margin-right { padding-right: 18px; } -.i-horizontallayout-margin-bottom, .i-verticallayout-margin-bottom { +.i-orderedlayout-margin-bottom, .i-horizontallayout-margin-bottom, .i-verticallayout-margin-bottom { padding-bottom: 15px; } -.i-horizontallayout-margin-left, .i-verticallayout-margin-left { +.i-orderedlayout-margin-left, .i-horizontallayout-margin-left, .i-verticallayout-margin-left { padding-left: 18px; } -.i-horizontallayout-spacing-on, .i-verticallayout-spacing-on { +.i-orderedlayout-spacing-on, .i-horizontallayout-spacing-on, .i-verticallayout-spacing-on { padding-top: 8px; padding-left: 8px; } /** This can be used to define spacing if spacing is off server side */ -.i-horizontallayout-spacing-off, .i-verticallayout-spacing-off { +.i-orderedlayout-spacing-off, .i-horizontallayout-spacing-off, .i-verticallayout-spacing-off { padding-top: 0px; padding-left: 0px; } |