Commit 0ee61e72 authored by zheng yu's avatar zheng yu Committed by cinwell.li

fix: fixed losing focus when drag slider button fast or right click slider button. (#1723)

parent 22b70373
...@@ -200,6 +200,7 @@ ...@@ -200,6 +200,7 @@
this.setPosition(this.newPos); this.setPosition(this.newPos);
window.removeEventListener('mousemove', this.onDragging); window.removeEventListener('mousemove', this.onDragging);
window.removeEventListener('mouseup', this.onDragEnd); window.removeEventListener('mouseup', this.onDragEnd);
window.removeEventListener('contextmenu', this.onDragEnd);
} }
}, },
...@@ -208,6 +209,7 @@ ...@@ -208,6 +209,7 @@
this.onDragStart(event); this.onDragStart(event);
window.addEventListener('mousemove', this.onDragging); window.addEventListener('mousemove', this.onDragging);
window.addEventListener('mouseup', this.onDragEnd); window.addEventListener('mouseup', this.onDragEnd);
window.addEventListener('contextmenu', this.onDragEnd);
} }
}, },
......
...@@ -79,6 +79,7 @@ ...@@ -79,6 +79,7 @@
transform: translateX(-50%); transform: translateX(-50%);
background-color: transparent; background-color: transparent;
text-align: center; text-align: center;
user-select: none;
.el-tooltip { .el-tooltip {
line-height: 1; line-height: 1;
...@@ -113,6 +114,7 @@ ...@@ -113,6 +114,7 @@
background-color: var(--slider-main-background-color); background-color: var(--slider-main-background-color);
border-radius: 50%; border-radius: 50%;
transition: .2s; transition: .2s;
user-select: none;
&:hover, &:hover,
&.hover, &.hover,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment