Vuetify Version: 2.3.8
Vue Version: 2.6.10
Browsers: Google Chrome, Opera
OS: Ubuntu undefined
Click on any table row.
Ripple working inside the row
ripple target seems to be the whole table
https://codepen.io/willcolmenares/pen/vYGOWoG
Works ok in firefox. but with chrome and opera doesn't work properly.
In CSS 2.1 position: relative doesn't work on table elements: https://www.w3.org/TR/CSS21/visuren.html#propdef-position
Chrome bug: https://bugs.chromium.org/p/chromium/issues/detail?id=417223
Workaround:
tr {
transform: scale(1)
}
Most helpful comment
In CSS 2.1
position: relativedoesn't work on table elements: https://www.w3.org/TR/CSS21/visuren.html#propdef-positionChrome bug: https://bugs.chromium.org/p/chromium/issues/detail?id=417223
Workaround: