Use default cursor when sorting or pagination links are disabled
Use default cursor when sorting or pagination links are disabled
Hi Alan,
Just a quick CSS update to use the default cursor when sorting or pagination links are disabled:
[code]
18a19,23
> table.dataTable thead th.sorting_disabled {
> cursor: default;
> *cursor: default;
> }
>
172a178,183
> .pagination ul > .disabled > a,
> .pagination ul > .disabled > a:hover,
> .pagination ul > .disabled > a:focus {
> cursor: default;
> *cursor: default;
> }
[/code]
Thank for your amazing work,
- Sébastien Grosjean - ZenCocoon
Just a quick CSS update to use the default cursor when sorting or pagination links are disabled:
[code]
18a19,23
> table.dataTable thead th.sorting_disabled {
> cursor: default;
> *cursor: default;
> }
>
172a178,183
> .pagination ul > .disabled > a,
> .pagination ul > .disabled > a:hover,
> .pagination ul > .disabled > a:focus {
> cursor: default;
> *cursor: default;
> }
[/code]
Thank for your amazing work,
- Sébastien Grosjean - ZenCocoon
This discussion has been closed.
Replies
If this gets more votes than I'll include it in DataTables core, but I'm going to hang fire for the moment.
Thanks,
Allan