Refer to the attached screenshot of the toggle switch used on one of the screens in my project.
How can I disable/remove the blue rectangle/outline that appears when I click on the button?

Tried the OutlineStyle property to None, but no luck.
Refer to the attached screenshot of the toggle switch used on one of the screens in my project.
How can I disable/remove the blue rectangle/outline that appears when I click on the button?

Tried the OutlineStyle property to None, but no luck.
Resolved.Added the lines in the stylclass.css file
div.ia_toggleSwitch:focus
{
outline: none;
}