Reputation: 2457
Is there a way to remove the outline, when an user click on one of the <p:tabView>
tabs?
Set it in CSS did not help.
a {
outline: 0 none !important;
}
Here is a screenshot.
Upvotes: 1
Views: 1169
Reputation: 7501
The outline is added to the li
element because it picks up the .ui-tabs-outline
class after being clicked on. You can override the outline
property in the class instead:
li.ui-tabs-outline {
outline: none;
}
Upvotes: 3