Does anyone know how to remove the bluish highlight which appears when dragging the jQuery slider control in webkit browsers? It appears to be a dotted highlight box in FireFox, and I'm not sure about IE, but you can view it here:
http://www.marioplanet.com/index.asp
It's on the top of the left column, and it appears after dragging it around.
Add the following to your css
.ui-slider-handle {
outline: none;
}
This will remove the outline form the slider-handle.
As Skelton says, .ui-slider-handle { outline: none; }
should do it, but it's generally not a good idea because doing so breaks keyboard navigation.
(The purpose of the outline is to indicate which element has focus, much like how native GUIs provide some kind of outline on the active widget. Without it, it takes a special kind of insanity to interact with a website via the keyboard.)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With