Override Bootstrap styles that affect Tabs.

This commit is contained in:
CJ Cenizal 2017-02-23 16:14:47 -08:00
parent 603d019b17
commit bcc30cd5c2
2 changed files with 10 additions and 0 deletions

View file

@ -30,6 +30,11 @@
}
}
&:active {
outline: none !important; /* 1 */
box-shadow: none; /* 1 */
}
&:focus {
outline: none; /* 1 */
}

View file

@ -1512,6 +1512,11 @@ body {
.kuiTab + .kuiTab:focus:not(.kuiTab-isSelected):not(:active) {
margin-left: -1px;
/* 2 */ }
.kuiTab:active {
outline: none !important;
/* 1 */
box-shadow: none;
/* 1 */ }
.kuiTab:focus {
outline: none;
/* 1 */ }