When the mouse is not moved very carefully exactly on the handle while dragging the handle, content surrounding the slider gets highlighted (i.e. "blue"/selected). I can create a PR to fix this if you like but it's just one line to be added in index.less (add user-select: none; at line 62), so probably not worth the hassle.
(Observed in Microsoft Edge browser in Windows 10)
Yes, I also encountered this problem.
I added this to my own stylesheets:
.rc-slider {
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
}
This is still persisting on Safari
Has anyone found a fix for safari?
Most helpful comment
Yes, I also encountered this problem.
I added this to my own stylesheets: