angular-slider / angularjs-slider

Slider directive for AngularJS 1.X. No dependencies and mobile friendly.
http://angular-slider.github.io/angularjs-slider
MIT License
1.23k stars 498 forks source link

A Square border box is displaying while dragging the slider in mobile #656

Closed kishoreaoe closed 6 years ago

kishoreaoe commented 6 years ago

Scenario:

  1. Include the slider in a page.
  2. Configure the Slider Options.
  3. Try to drag the slider and we could able to see SQUARE border box appearing.
ValentinH commented 6 years ago

Do you mean this border: image ?

kishoreaoe commented 6 years ago

@ValentinH , Yeah, the square border while selecting.!! is there any way to hide that with css pointer class or something.!

ValentinH commented 6 years ago

Yeap, just add:

.rz-pointer:focus {
  outline: none;
}
kishoreaoe commented 6 years ago

thanks alot. That's solved the problem 👍