diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-12 12:35:03 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-12 12:35:08 +0300 |
commit | cfd704350030e3f61e656e5541d99b50bf8c40e2 (patch) | |
tree | 973f07cb8852a5f9f5a8427bd2f9b6df00387c02 /WebContent/VAADIN/themes | |
parent | d2fb55ba41f7bd1d52cd54a3ce7e9cbec3cc6652 (diff) | |
download | vaadin-framework-cfd704350030e3f61e656e5541d99b50bf8c40e2.tar.gz vaadin-framework-cfd704350030e3f61e656e5541d99b50bf8c40e2.zip |
Fixed previously broken gridlayout margins and spacings.
Diffstat (limited to 'WebContent/VAADIN/themes')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/layouts/layouts.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/layouts/layouts.scss b/WebContent/VAADIN/themes/reindeer/layouts/layouts.scss index c0204ec041..24747a56b4 100644 --- a/WebContent/VAADIN/themes/reindeer/layouts/layouts.scss +++ b/WebContent/VAADIN/themes/reindeer/layouts/layouts.scss @@ -36,19 +36,19 @@ } /* Different for historical reasons: previously was inherited directly from Base theme */ /* TODO unify these values in version 7 */ -.v-gridlayout-margin-top { +.v-gridlayout.v-layout-margin-top { padding-top: 24px; } -.v-gridlayout-margin-bottom { +.v-gridlayout.v-layout-margin-bottom { padding-bottom: 24px; } -.v-gridlayout-margin-left { +.v-gridlayout.v-layout-margin-left { padding-left: 24px; } -.v-gridlayout-margin-right { +.v-gridlayout.v-layout-margin-right { padding-right: 24px; } -.v-gridlayout-spacing-on { +.v-gridlayout .v-layout-spacing-on { padding-left: 12px; padding-top: 12px; } |