diff options
Diffstat (limited to 'WebContent/VAADIN/themes/base/common')
-rw-r--r-- | WebContent/VAADIN/themes/base/common/common.css | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.css b/WebContent/VAADIN/themes/base/common/common.css index 8734aee63f..b3bf6084be 100644 --- a/WebContent/VAADIN/themes/base/common/common.css +++ b/WebContent/VAADIN/themes/base/common/common.css @@ -31,9 +31,12 @@ div.v-app-loading { width: 100%; /* avoid scrollbars with margins in root layout */ outline: none; + position: relative; +} +/* Prevent margin collapse */ +.v-view.v-view-embedded { margin-top: -1px; border-top: 1px solid transparent; - position: relative; } /** * Try to handle printing somehow. Reasonable printing support @@ -89,7 +92,15 @@ div.v-app-loading { border: none; padding: 0; margin: 0; + height: 100%; +} +.v-form-content { + height: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } + /* Field modified */ /* Disabled by default .v-modified, .v-richtextarea.v-modified iframe.gwt-RichTextArea, @@ -230,6 +241,10 @@ div.v-app-loading { cursor: default; } +.v-clip { + overflow: hidden; +} + .v-scrollable { overflow: auto; -}
\ No newline at end of file +} |