1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-03-15 16:29:16 +01:00

Fix: Remove pointer cursor from cells which cannot be sorted - 14826

This commit is contained in:
Allan Jardine 2013-03-29 07:27:47 +00:00
parent a0ee82fe4b
commit 182998a7c5
2 changed files with 13 additions and 4 deletions

View File

@ -153,8 +153,6 @@ table.display thead th {
padding: 3px 18px 3px 10px;
border-bottom: 1px solid black;
font-weight: bold;
cursor: pointer;
* cursor: hand;
}
table.display tfoot th {
@ -180,6 +178,12 @@ table.display td.center {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables sorting
*/
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc,
table.dataTable thead th.sorting {
cursor: pointer;
*cursor: hand;
}
.sorting_asc {
background: url('../images/sort_asc.png') no-repeat center right;

View File

@ -12,8 +12,6 @@ table.dataTable thead th {
padding: 3px 18px 3px 10px;
border-bottom: 1px solid black;
font-weight: bold;
cursor: pointer;
*cursor: hand;
}
table.dataTable tfoot th {
@ -194,6 +192,13 @@ table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
/*
* Sorting
*/
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc,
table.dataTable thead th.sorting {
cursor: pointer;
*cursor: hand;
}
.sorting { background: url('../images/sort_both.png') no-repeat center right; }
.sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }
.sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }