Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery UI Slider focus issue

I have a problem with the jQuery UI Slider. The issue also appears on the demo.

It is more obvious in Chrome - if you go to http://jqueryui.com/demos/slider/#steps

and slide the slider, you'll not see anything wrong. If you then click "New Window" or go to (http://jqueryui.com/demos/slider/steps.html) to view the demo in a new window and try sliding the slider, you'll see the handle of the slider gets a focus box around it during dragging.

I am having this problem and I cannot seem to fix it.

Can anyone point me in the right direction?

like image 860
J.C Avatar asked Dec 28 '22 22:12

J.C


1 Answers

Adding this to your CSS should do the trick.

.ui-slider-handle {
   outline: none;
}
like image 69
Shaun Humphries Avatar answered Jan 10 '23 18:01

Shaun Humphries