Prevent text selection and cursor changes

This commit is contained in:
MMP0 2023-08-22 16:45:34 +09:00
parent 70283a9f4a
commit 0998256fc5
2 changed files with 31 additions and 2 deletions

View File

@ -66,6 +66,11 @@
parent.insertBefore(resizeHandle, rightCol);
resizeHandle.addEventListener('mousedown', (evt) => {
evt.preventDefault();
evt.stopPropagation();
document.body.classList.add('resizing');
R.tracking = true;
R.parent = parent;
R.parentWidth = parent.offsetWidth;
@ -75,20 +80,37 @@
R.screenX = evt.screenX;
});
resizeHandle.addEventListener('dblclick', () => parent.style.gridTemplateColumns = GRID_TEMPLATE_COLUMNS);
resizeHandle.addEventListener('dblclick', (evt) => {
evt.preventDefault();
evt.stopPropagation();
parent.style.gridTemplateColumns = GRID_TEMPLATE_COLUMNS;
});
afterResize(parent);
}
window.addEventListener('mousemove', (evt) => {
if (R.tracking) {
evt.preventDefault();
evt.stopPropagation();
const delta = R.screenX - evt.screenX;
const leftColWidth = Math.max(Math.min(R.leftColStartWidth - delta, R.parent.offsetWidth - GRADIO_MIN_WIDTH - PAD), GRADIO_MIN_WIDTH);
setLeftColGridTemplate(R.parent, leftColWidth);
}
});
window.addEventListener('mouseup', () => R.tracking = false);
window.addEventListener('mouseup', (evt) => {
if (R.tracking) {
evt.preventDefault();
evt.stopPropagation();
R.tracking = false;
document.body.classList.remove('resizing');
}
});
window.addEventListener('resize', () => {

View File

@ -1061,6 +1061,13 @@ div.accordions > div.input-accordion.input-accordion-open{
top: 0.5em;
}
body.resizing {
cursor: col-resize !important;
}
body.resizing :not(.resize-handle) {
pointer-events: none !important;
}
.resize-handle {
position: relative;