PokeMate
PokeMate copied to clipboard
Non scrollable headers
Currently the entire table scrolls, while the headers should remain stationary.
Can't reproduce this issue, I have latest commits and my platform is Windows x64.
http://i.imgur.com/caNTYEX.png
These do scroll. They shouldnt.
table {
display:block;
height: 100%;
width: 100%;
border-bottom: 0;
overflow: visible;
}
tbody{
display: block;
overflow-y:scroll;
height:100%;
width: 100%;
border-bottom:0;
}
Something like this already helps. But requires some playing with to fix heights etc...