diff options
author | Artur Signell <artur.signell@itmill.com> | 2009-01-08 13:10:33 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2009-01-08 13:10:33 +0000 |
commit | 89eb83dc413eb76adda8b36ee32f0c333b367cc8 (patch) | |
tree | 405d4f2b60465c6934912badf6bdf23071aaa96b /WebContent/ITMILL/themes/default | |
parent | dbdc297a3aac51c495ca80db70e6f158d213360d (diff) | |
download | vaadin-framework-89eb83dc413eb76adda8b36ee32f0c333b367cc8.tar.gz vaadin-framework-89eb83dc413eb76adda8b36ee32f0c333b367cc8.zip |
Fix for #2435 - Separate stylenames for VerticalLayout, HorizontalLayout and OrderedLayout
svn changeset:6457/svn branch:trunk
Diffstat (limited to 'WebContent/ITMILL/themes/default')
-rw-r--r-- | WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css | 14 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 16 |
2 files changed, 14 insertions, 16 deletions
diff --git a/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css b/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css index 5f606f7487..d7fd10365f 100644 --- a/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css +++ b/WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css @@ -1,29 +1,29 @@ -.i-orderedlayout { +.i-horizontallayout, .i-verticallayout { overflow: hidden; } -.i-orderedlayout-margin-top { +.i-horizontallayout-margin-top, .i-verticallayout-margin-top { padding-top: 15px; } -.i-orderedlayout-margin-right { +.i-horizontallayout-margin-right, .i-verticallayout-margin-right { padding-right: 18px; } -.i-orderedlayout-margin-bottom { +.i-horizontallayout-margin-bottom, .i-verticallayout-margin-bottom { padding-bottom: 15px; } -.i-orderedlayout-margin-left { +.i-horizontallayout-margin-left, .i-verticallayout-margin-left { padding-left: 18px; } -.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-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 2bf27bcf4a..85c2020292 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -386,8 +386,6 @@ input.i-modified, cursor: default; } - - .i-link img { vertical-align: middle; } @@ -955,32 +953,32 @@ input.i-modified, } /* ./WebContent/ITMILL/themes/default/orderedlayout/orderedlayout.css */ -.i-orderedlayout { +.i-horizontallayout, .i-verticallayout { overflow: hidden; } -.i-orderedlayout-margin-top { +.i-horizontallayout-margin-top, .i-verticallayout-margin-top { padding-top: 15px; } -.i-orderedlayout-margin-right { +.i-horizontallayout-margin-right, .i-verticallayout-margin-right { padding-right: 18px; } -.i-orderedlayout-margin-bottom { +.i-horizontallayout-margin-bottom, .i-verticallayout-margin-bottom { padding-bottom: 15px; } -.i-orderedlayout-margin-left { +.i-horizontallayout-margin-left, .i-verticallayout-margin-left { padding-left: 18px; } -.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-orderedlayout-spacing-off { +.i-horizontallayout-spacing-off, .i-verticallayout-spacing-off { padding-top: 0px; padding-left: 0px; } |