jmcharnes
jmcharnes

Reputation: 727

jQuery UI Slider Handle blue border when 'focus'ed

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?

Upvotes: 4

Views: 3010

Answers (3)

GhettoPancake
GhettoPancake

Reputation: 131

try

outline: 0 none !important;

on the input style

Upvotes: 5

Chintan Bhatt
Chintan Bhatt

Reputation: 257

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

Upvotes: 0

ShaggyInjun
ShaggyInjun

Reputation: 2973

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

Upvotes: 4

Related Questions