pmerino
pmerino

Reputation: 6130

Remove this "glare" with CSS on jQuery UI accordion

I'm using a basic accordion with jQuery UI and I was wondering how can I remove that "glare" which appears when I click on the accordion tab: glare

Thanks!

Upvotes: 2

Views: 280

Answers (1)

Ansel Santosa
Ansel Santosa

Reputation: 8454

CSS: outline: none;

It's something the browser adds to elements that have focus.

Upvotes: 3

Related Questions