aboutsummaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorAnna Koskinen <Ansku@users.noreply.github.com>2020-05-19 15:21:56 +0300
committerGitHub <noreply@github.com>2020-05-19 15:21:56 +0300
commit452357791fe20aae1e9b650c646bc70e8446d86c (patch)
tree81a34e50adad631562e564826277675f27a9eda2 /themes
parent0645a86e5b6951de0e5b170657a2eaf74a7e9b77 (diff)
downloadvaadin-framework-452357791fe20aae1e9b650c646bc70e8446d86c.tar.gz
vaadin-framework-452357791fe20aae1e9b650c646bc70e8446d86c.zip
Fix scrolling problem in table in Chrome 56+ (#12015)
* Fix scrolling problem in table in Chrome 56+ Issue #8707, slightly modified cherry-pick of #10492
Diffstat (limited to 'themes')
-rw-r--r--themes/src/main/themes/VAADIN/themes/valo/components/_table.scss1
1 files changed, 1 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_table.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_table.scss
index 4a88c925ff..8443438fe2 100644
--- a/themes/src/main/themes/VAADIN/themes/valo/components/_table.scss
+++ b/themes/src/main/themes/VAADIN/themes/valo/components/_table.scss
@@ -268,6 +268,7 @@ $v-table-background-color: null !default;
.#{$primary-stylename}-body {
border: $v-table-border-width solid $border-color;
+ overflow-anchor: none; /* In Chrome 56+ */
@include user-select(text);
}