scinote-web/app/assets/stylesheets/shared/datatables.scss
2023-06-20 16:44:12 +02:00

31 lines
527 B
SCSS

table.dataTable thead th.dt-colresizable-hover {
cursor: col-resize;
position: relative;
+ th {
cursor: col-resize;
}
&::before {
background-color: $color-silver-chalice;
content: "";
display: block;
height: 100%;
position: absolute;
right: 0;
top: 0;
width: 2px;
}
}
table.dataTable.table--resizable-columns {
table-layout: fixed;
thead tr th:not(:first-child) {
box-sizing: border-box;
min-width: 120px;
overflow: hidden;
text-overflow: ellipsis;
}
}