diff --git a/scripts/pi-hole/js/auditlog.js b/scripts/pi-hole/js/auditlog.js
index 10261a84..6d5de9f8 100644
--- a/scripts/pi-hole/js/auditlog.js
+++ b/scripts/pi-hole/js/auditlog.js
@@ -41,7 +41,7 @@ function updateTopLists() {
domain = escapeHtml(domain);
url = ""+domain+"";
domaintable.append("
| " + url +
- " | " + data.top_queries[domain] + " | |
");
+ " " + data.top_queries[domain] + " | | ");
}
}
@@ -54,13 +54,13 @@ function updateTopLists() {
{
url = ""+printdomain+" (wildcard blocked)";
adtable.append(" | " + url +
- " | " + data.top_ads[domain] + " | |
");
+ " " + data.top_ads[domain] + " | | ");
}
else
{
url = ""+printdomain+"";
adtable.append(" | " + url +
- " | " + data.top_ads[domain] + " | |
");
+ " " + data.top_ads[domain] + " | | ");
}
}
}
diff --git a/scripts/pi-hole/js/db_queries.js b/scripts/pi-hole/js/db_queries.js
index 54b32d4c..2822f98d 100644
--- a/scripts/pi-hole/js/db_queries.js
+++ b/scripts/pi-hole/js/db_queries.js
@@ -237,27 +237,27 @@ $(document).ready(function() {
case 1:
color = "red";
fieldtext = "Blocked (gravity)";
- buttontext = "";
+ buttontext = "";
break;
case 2:
color = "green";
fieldtext = "OK
(forwarded)";
- buttontext = "";
+ buttontext = "";
break;
case 3:
color = "green";
fieldtext = "OK
(cached)";
- buttontext = "";
+ buttontext = "";
break;
case 4:
color = "red";
fieldtext = "Blocked
(regex/wildcard)";
- buttontext = "";
+ buttontext = "";
break;
case 5:
color = "red";
fieldtext = "Blocked
(blacklist)";
- buttontext = "";
+ buttontext = "";
break;
case 6:
color = "red";
diff --git a/scripts/pi-hole/js/queries.js b/scripts/pi-hole/js/queries.js
index 02811d76..ae788530 100644
--- a/scripts/pi-hole/js/queries.js
+++ b/scripts/pi-hole/js/queries.js
@@ -170,31 +170,31 @@ $(document).ready(function() {
blocked = true;
colorClass = "text-red";
fieldtext = "Blocked (gravity)";
- buttontext = "";
+ buttontext = "";
break;
case "2":
blocked = false;
colorClass = "text-green";
fieldtext = "OK
(forwarded)"+dnssec_status;
- buttontext = "";
+ buttontext = "";
break;
case "3":
blocked = false;
colorClass = "text-green";
fieldtext = "OK
(cached)"+dnssec_status;
- buttontext = "";
+ buttontext = "";
break;
case "4":
blocked = true;
colorClass = "text-red";
fieldtext = "Blocked
(regex/wildcard)";
- buttontext = "";
+ buttontext = "";
break;
case "5":
blocked = true;
colorClass = "text-red";
fieldtext = "Blocked
(blacklist)";
- buttontext = "";
+ buttontext = "";
break;
case "6":
blocked = true;
diff --git a/style/pi-hole.css b/style/pi-hole.css
index 13353a4f..419db78f 100644
--- a/style/pi-hole.css
+++ b/style/pi-hole.css
@@ -216,10 +216,6 @@
}
/* Utilities */
-.text-nowrap {
- white-space: nowrap !important;
-}
-
.text-black {
color: #000 !important;
}