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:
parent
a0ee82fe4b
commit
182998a7c5
@ -153,8 +153,6 @@ table.display thead th {
|
|||||||
padding: 3px 18px 3px 10px;
|
padding: 3px 18px 3px 10px;
|
||||||
border-bottom: 1px solid black;
|
border-bottom: 1px solid black;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table.display tfoot th {
|
table.display tfoot th {
|
||||||
@ -180,6 +178,12 @@ table.display td.center {
|
|||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
* DataTables sorting
|
* 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 {
|
.sorting_asc {
|
||||||
background: url('../images/sort_asc.png') no-repeat center right;
|
background: url('../images/sort_asc.png') no-repeat center right;
|
||||||
|
@ -12,8 +12,6 @@ table.dataTable thead th {
|
|||||||
padding: 3px 18px 3px 10px;
|
padding: 3px 18px 3px 10px;
|
||||||
border-bottom: 1px solid black;
|
border-bottom: 1px solid black;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table.dataTable tfoot th {
|
table.dataTable tfoot th {
|
||||||
@ -194,6 +192,13 @@ table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
|
|||||||
/*
|
/*
|
||||||
* Sorting
|
* 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 { background: url('../images/sort_both.png') no-repeat center right; }
|
||||||
.sorting_asc { background: url('../images/sort_asc.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; }
|
.sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user