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 56078713..34cd1c6f 100644 --- a/scripts/pi-hole/js/db_queries.js +++ b/scripts/pi-hole/js/db_queries.js @@ -238,31 +238,31 @@ $(document).ready(function() { blocked = true; color = "red"; fieldtext = "Blocked (gravity)"; - buttontext = ""; + buttontext = ""; break; case 2: blocked = false; color = "green"; fieldtext = "OK (forwarded)"; - buttontext = ""; + buttontext = ""; break; case 3: blocked = false; color = "green"; fieldtext = "OK (cached)"; - buttontext = ""; + buttontext = ""; break; case 4: blocked = true; color = "red"; fieldtext = "Blocked (regex/wildcard)"; - buttontext = ""; + buttontext = ""; break; case 5: blocked = true; color = "red"; fieldtext = "Blocked (blacklist)"; - buttontext = ""; + buttontext = ""; break; case 6: blocked = true; diff --git a/scripts/pi-hole/js/queries.js b/scripts/pi-hole/js/queries.js index 1618cdc9..8e181b77 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; }