2

I have this annoying blue border around the Kendo Tabstrip whenever it is selected.

Possibly something to do with aria?

enter image description here

Does anyone know how to remove it?

mgh75
  • 77
  • 3
  • 11

1 Answers1

3

The kendo css includes a box shadow when the tabstrip has focus. You can override it by adding the following css:

.k-tabstrip:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
ezanker
  • 24,628
  • 1
  • 20
  • 35