mirror of
https://github.com/pi-hole/web.git
synced 2025-12-24 20:55:28 +00:00
Change cursor style to magnifying glass when hovering single-click searching capable entries to highlight the new feature
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
@@ -190,10 +190,13 @@ $(document).ready(function() {
|
||||
var api = this.api();
|
||||
// Query type IPv4 / IPv6
|
||||
api.$('td:eq(1)').click( function () { api.search( this.innerHTML ).draw(); $('#resetButton').show(); } );
|
||||
api.$("td:eq(1)").css("cursor","zoom-in");
|
||||
// Domain
|
||||
api.$('td:eq(2)').click( function () { api.search( this.innerHTML ).draw(); $('#resetButton').show(); } );
|
||||
api.$("td:eq(2)").css("cursor","zoom-in");
|
||||
// Client
|
||||
api.$('td:eq(3)').click( function () { api.search( this.innerHTML ).draw(); $('#resetButton').show(); } );
|
||||
api.$("td:eq(3)").css("cursor","zoom-in");
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user