When the rows are being loaded, and if you scroll to the right, the loading placeholder is drawn above the leftmost cell.

It's due to
Two ideas:
- use
z-index: -1 on td.pending so that it's drawn below the left cell
- change the markup a bit with a
div wrapper around the absolute element. Not sure if it's doable in CSS only with content.
When the rows are being loaded, and if you scroll to the right, the loading placeholder is drawn above the leftmost cell.
It's due to
hightable/src/HighTable.css
Line 143 in 2c1e1d2
Two ideas:
z-index: -1ontd.pendingso that it's drawn below the left celldivwrapper around the absolute element. Not sure if it's doable in CSS only withcontent.