Add jquery resizableColumns library with fix for large columns table

This commit is contained in:
Lorenzo Vannucci 2023-03-31 18:57:59 +02:00
parent 334914942b
commit 7ff1604be0
2 changed files with 635 additions and 0 deletions

View file

@ -0,0 +1,18 @@
.rc-handle-container {
position: relative;
}
.rc-handle {
position: absolute;
width: 7px;
cursor: ew-resize;
margin-left: -3px;
z-index: 2;
}
table.rc-table-resizing {
cursor: ew-resize;
}
table.rc-table-resizing thead,
table.rc-table-resizing thead > th,
table.rc-table-resizing thead > th > a {
cursor: ew-resize;
}