jQuery UI - remove orange tab border on focus

border, focus, jquery, jquery-ui, tabs

Solution

li a
{
    outline-color: transparent;
}​

Problem

I am trying to remove this border: and since it shown only on focus I am not able to find which class to overwrite using the chrome console. Has anyone done this and knew what is the class that I should overwrite? Edit: I suppose this is the standard behaviour and here you can see the example. I am also using Chrome.

Original source