4

I'm restyling the jQuery UI Slider widget by overriding the CSS classes provided by jQuery UI. I cant seem to get the blue border that shows up around the handle when I click on the handle to disappear.

It looks like so: slider handle

Any suggestions on how I could remove that with css?

jmcharnes
  • 707
  • 12
  • 23

3 Answers3

5

try

outline: 0 none !important;

on the input style

4

That blue border is chrome specific, firefox doesn't show it. Chrome adds the border to links. Because the button is a link you are seeing the border.

How to remove the border highlight on an input text element

Community
  • 1
  • 1
ShaggyInjun
  • 2,880
  • 2
  • 31
  • 52
0

Override it using !important after the attribute value in css.

Chintan Bhatt
  • 257
  • 1
  • 3
  • 9