I have this annoying blue border around the Kendo Tabstrip whenever it is selected.
Possibly something to do with aria?
Does anyone know how to remove it?
I have this annoying blue border around the Kendo Tabstrip whenever it is selected.
Possibly something to do with aria?
Does anyone know how to remove it?
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;
}