Minor style changes for the dark theme.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2020-06-03 15:36:06 +02:00
parent 9b8946ee9f
commit 55ab4f179f
3 changed files with 3 additions and 13 deletions

View File

@@ -318,7 +318,6 @@ $(function () {
replytext += '<input type="hidden" name="id" value="' + replyid + '">';
$("td:eq(5)", row).addClass("text-black");
$("td:eq(5)", row).html(replytext);
if (data.length > 7) {
@@ -488,13 +487,13 @@ function applyColumnFiltering() {
regex = "^" + value + "$";
// Add background color
tableApi.$("td:eq(" + index + ")").addClass("filter-highlight");
tableApi.$("td:eq(" + index + ")").addClass("highlight");
// Remember to show reset button
showReset = true;
} else {
// Clear background color
tableApi.$("td:eq(" + index + ")").removeClass("filter-highlight");
tableApi.$("td:eq(" + index + ")").removeClass("highlight");
}
// Apply filtering on this column (regex may be empty -> no filtering)