GwtMaterialDesign / gwt-material

A Google Material Design wrapper for GWT
https://gwtmaterialdesign.github.io/gmd-core-demo/
Apache License 2.0
410 stars 124 forks source link

gmd-table may show two vertical scrollbars #1034

Open kawabe436 opened 1 year ago

kawabe436 commented 1 year ago

Hallo, When resizing the window, gmd-table may show two vertical scrollbars. https://gwtmaterialdesign.github.io/gmd-table-demo/#customized

Animation

By changing the "overflow-y" value of "inner-scroll" from "visible" to "hidden" in the browser's developer mode, I was able to eliminate the duplication of vertical scrolling.

gwt-material-table-2.5.0.jar/gwt\material/design/client/resources/css/style.css .inner-scroll { overflow-x: hidden; overflow-y: visible; }