2021-10-27 06:58:55 +00:00
|
|
|
.@{table-prefix-cls}-resize-handle {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
height: 100% !important;
|
|
|
|
bottom: 0;
|
|
|
|
left: auto !important;
|
|
|
|
right: -8px;
|
|
|
|
cursor: col-resize;
|
|
|
|
touch-action: none;
|
|
|
|
user-select: auto;
|
|
|
|
width: 16px;
|
|
|
|
z-index: 1;
|
|
|
|
&-line {
|
|
|
|
display: block;
|
2021-10-29 07:28:59 +00:00
|
|
|
width: 1px;
|
2021-10-27 06:58:55 +00:00
|
|
|
margin-left: 7px;
|
|
|
|
height: 100% !important;
|
|
|
|
background-color: @primary-color;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
&:hover &-line {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dragging .@{table-prefix-cls}-resize-handle-line {
|
|
|
|
opacity: 1;
|
|
|
|
}
|