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

hyeminHwang picture hyeminHwang  路  3Comments

miraage picture miraage  路  4Comments

ms007 picture ms007  路  4Comments

iChip picture iChip  路  3Comments

SBoudrias picture SBoudrias  路  3Comments