Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 328
jmcharnes Avatar asked Jan 12 '23 00:01

jmcharnes


1 Answers

try

outline: 0 none !important;

on the input style

like image 165
GhettoPancake Avatar answered Jan 22 '23 19:01

GhettoPancake