React-virtualized: flextable - removing border on table/row click

Created on 9 Aug 2016  路  1Comment  路  Source: bvaughn/react-virtualized

Table/rows display a border when clicked.

Even after carefully searching using Chrome dev tools, I cannot find the CSS styles that are the culprits.

Any pointers on how to disable/override?

Thank you

Most helpful comment

How on earth did I miss this issue...

This is a focus outline. You can disable it via see if you want:

:focus {
  outline: 0;
}

But you should define an alternate focus style if you do this- in order not to harm accessibility.

>All comments

How on earth did I miss this issue...

This is a focus outline. You can disable it via see if you want:

:focus {
  outline: 0;
}

But you should define an alternate focus style if you do this- in order not to harm accessibility.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

martinpesout picture martinpesout  路  44Comments

kof picture kof  路  81Comments

jquense picture jquense  路  33Comments

kof picture kof  路  40Comments

mydearxym picture mydearxym  路  24Comments