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 /compatibility-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 'compatibility-themes')
-rw-r--r-- | compatibility-themes/src/main/themes/VAADIN/themes/base/table/table.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compatibility-themes/src/main/themes/VAADIN/themes/base/table/table.scss b/compatibility-themes/src/main/themes/VAADIN/themes/base/table/table.scss index 22ffdffa4d..64f700c882 100644 --- a/compatibility-themes/src/main/themes/VAADIN/themes/base/table/table.scss +++ b/compatibility-themes/src/main/themes/VAADIN/themes/base/table/table.scss @@ -137,6 +137,7 @@ } .#{$primaryStyleName}-body { border: 1px solid #aaa; + overflow-anchor: none; /* In Chrome 56+ */ } .#{$primaryStyleName}-row-spacer { height: 10px; |