PokeMate icon indicating copy to clipboard operation
PokeMate copied to clipboard

Non scrollable headers

Open SwipeX opened this issue 8 years ago • 3 comments

Currently the entire table scrolls, while the headers should remain stationary.

SwipeX avatar Jul 26 '16 14:07 SwipeX

Can't reproduce this issue, I have latest commits and my platform is Windows x64.

BurakDev avatar Jul 26 '16 14:07 BurakDev

http://i.imgur.com/caNTYEX.png

These do scroll. They shouldnt.

SwipeX avatar Jul 26 '16 14:07 SwipeX

    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...

SonnyX avatar Jul 26 '16 20:07 SonnyX