1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-30 23:52:11 +01:00

Fix: Header TD elements need an outline of none to stop of focus flicker (matching TH elements which already have this)

This commit is contained in:
Allan Jardine 2012-09-19 07:27:52 +01:00
parent b4cd9f11c6
commit bd6bb74967
2 changed files with 4 additions and 2 deletions

View File

@ -201,7 +201,8 @@ table.display td.center {
background: url('../images/sort_desc_disabled.png') no-repeat center right;
}
th:active {
table.display thead th:active,
table.display thead td:active {
outline: none;
}

View File

@ -201,7 +201,8 @@ table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
.sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }
.sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }
table.dataTable th:active {
table.dataTable thead th:active,
table.dataTable thead td:active {
outline: none;
}