[Plugin: WP-Table Reloaded] Bad CSS declarations
-
Hi,
I’ve seen that the plugin generates some warning under Firefox that leads to not apply some CSS property that you defined.
I suggest the following patch.
File : css/datatables.css
put :
.dataTables_paginate { width: 44px; float: right; text-align: right; } .dataTables_paginate * { width: 50px; }
instead of :
.dataTables_paginate { width: 44px; * width: 50px; float: right; text-align: right; }
put :
.paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active { border: 1px solid #aaa; -webkit-border-radius: 5px; -moz-border-radius: 5px; padding: 2px 5px; margin: 0 3px; cursor: pointer; } .paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active * { cursor: pointer; }
instead of :
.paging_full_numbers span.paginate_button, .paging_full_numbers span.paginate_active { border: 1px solid #aaa; -webkit-border-radius: 5px; -moz-border-radius: 5px; padding: 2px 5px; margin: 0 3px; cursor: pointer; * cursor: hand; }
There is a trouble on that same file in order to have the zoom under firefox witch doesn’t support it. would be cleaner to use em units and not pixels ….
I hope that I’ll help you.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: WP-Table Reloaded] Bad CSS declarations’ is closed to new replies.