Conflicts:
WebContent/VAADIN/themes/base/panel/panel.css
.v-view {
height: 100%;
width: 100%;
- overflow: auto;
/* 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
overflow: hidden;
}
.v-panel-content {
- overflow: auto;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+.v-panel.v-has-width > .v-panel-content {
+ width: 100%;
+}
+.v-panel.v-has-height > .v-panel-content {
+ height: 100%;
}
.v-panel-deco {
}