Underline clickable regex links on Query Log page.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2020-02-15 12:25:07 +01:00
parent 88eb4c85b8
commit 09c7ba99fa
2 changed files with 11 additions and 2 deletions

View File

@@ -288,7 +288,8 @@ $(document).ready(function() {
new_tab.focus();
}
});
$("td:eq(4)", row).css("cursor", "pointer");
$("td:eq(4)", row).addClass("underline");
$("td:eq(4)", row).addClass("pointer");
}
// Add domain in CNAME chain causing the query to have been blocked

View File

@@ -242,4 +242,12 @@
td.highlight {
background-color: yellow;
}
}
.underline {
text-decoration: underline;
}
.pointer {
cursor: pointer;
}