diff options
author | Anna Koskinen <Ansku@users.noreply.github.com> | 2020-05-19 15:21:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 15:21:56 +0300 |
commit | 452357791fe20aae1e9b650c646bc70e8446d86c (patch) | |
tree | 81a34e50adad631562e564826277675f27a9eda2 /themes | |
parent | 0645a86e5b6951de0e5b170657a2eaf74a7e9b77 (diff) | |
download | vaadin-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.scss | 1 |
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); } |