summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN
diff options
context:
space:
mode:
authorSergey Budkin <sergey@vaadin.com>2014-10-03 12:25:37 +0300
committerVaadin Code Review <review@vaadin.com>2014-10-09 14:10:10 +0000
commit15bd3fd1dcd01f273da94e9af4461eea843f0706 (patch)
tree19b5568c1e8d15cdb3d13e3caf6714cd2219d709 /WebContent/VAADIN
parent3f728bea50824b14a3cd5eaa05a7df99e9cd3dda (diff)
downloadvaadin-framework-15bd3fd1dcd01f273da94e9af4461eea843f0706.tar.gz
vaadin-framework-15bd3fd1dcd01f273da94e9af4461eea843f0706.zip
Incorrect rendering of Panel with undefined size in Firefox (#14631).
Copied the fix from Valo. Change-Id: I677fc4cfb65a57211fd82d994d75743fd49a83a2
Diffstat (limited to 'WebContent/VAADIN')
-rw-r--r--WebContent/VAADIN/themes/base/common/common.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/common/common.scss b/WebContent/VAADIN/themes/base/common/common.scss
index 2f03561c0b..ea8b5e5aa0 100644
--- a/WebContent/VAADIN/themes/base/common/common.scss
+++ b/WebContent/VAADIN/themes/base/common/common.scss
@@ -259,6 +259,18 @@ input::-ms-clear {
-webkit-overflow-scrolling: none;
}
+/* "Unnecessary scrollbar" related fixes (#14631, copied from Valo) */
+.v-scrollable.v-panel-content > .v-widget {
+ /* This is needed for IE */
+ vertical-align: middle;
+
+ /* Needed for all browsers. Can't really show anything outside the
+ * scrolling area anyway, so we can safely hide any overflow */
+ overflow: hidden;
+}
+
+
+
&.v-overlay-container {
width: 0;
height: 0;