2023-06-20 18:52:02 +08:00
|
|
|
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;
|
2023-06-20 22:44:12 +08:00
|
|
|
|
2023-06-22 20:33:16 +08:00
|
|
|
th {
|
2023-06-20 22:44:12 +08:00
|
|
|
box-sizing: border-box;
|
2023-06-22 20:33:16 +08:00
|
|
|
min-width: 140px;
|
2023-06-20 22:44:12 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-06-22 20:33:16 +08:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.width-out-of-bounds {
|
|
|
|
width: 140px !important;
|
|
|
|
}
|
2023-06-20 22:44:12 +08:00
|
|
|
}
|
2023-06-20 18:52:02 +08:00
|
|
|
}
|