diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-02-10 12:37:35 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-02-10 12:37:35 +0000 |
commit | 4f26b843bac9d97720ab0a9743e704741335cbc6 (patch) | |
tree | ca8e94517e7a140b6a51ea20b86101aa7b696b6a /WebContent/VAADIN/themes/base/orderedlayout | |
parent | 05c3c650e2b78dc17256b5237c8a9f14eb13a554 (diff) | |
download | vaadin-framework-4f26b843bac9d97720ab0a9743e704741335cbc6.tar.gz vaadin-framework-4f26b843bac9d97720ab0a9743e704741335cbc6.zip |
Changed base theme layout margins and spacings from ems to pixels (reduce layout calculations, no conversion needed in the browser).
svn changeset:11248/svn branch:6.3
Diffstat (limited to 'WebContent/VAADIN/themes/base/orderedlayout')
-rw-r--r-- | WebContent/VAADIN/themes/base/orderedlayout/orderedlayout.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/WebContent/VAADIN/themes/base/orderedlayout/orderedlayout.css b/WebContent/VAADIN/themes/base/orderedlayout/orderedlayout.css index 6dafa2d252..9f91669385 100644 --- a/WebContent/VAADIN/themes/base/orderedlayout/orderedlayout.css +++ b/WebContent/VAADIN/themes/base/orderedlayout/orderedlayout.css @@ -1,28 +1,28 @@ .v-orderedlayout-margin-top, .v-horizontallayout-margin-top, .v-verticallayout-margin-top { - padding-top: 2em; + padding-top: 12px; } .v-orderedlayout-margin-right, .v-horizontallayout-margin-right, .v-verticallayout-margin-right { - padding-right: 2em; + padding-right: 12px; } .v-orderedlayout-margin-bottom, .v-horizontallayout-margin-bottom, .v-verticallayout-margin-bottom { - padding-bottom: 2em; + padding-bottom: 12px; } .v-orderedlayout-margin-left, .v-horizontallayout-margin-left, .v-verticallayout-margin-left { - padding-left: 2em; + padding-left: 12px; } .v-orderedlayout-spacing-on, .v-horizontallayout-spacing-on, .v-verticallayout-spacing-on { - padding-top: 1em; - padding-left: 1em; + padding-top: 6px; + padding-left: 6px; } /* This can be used to define spacing if spacing is off server side */ .v-orderedlayout-spacing-off, |