diff --git a/groups-lists.lp b/groups-lists.lp
index 59e5a402..b82204ea 100644
--- a/groups-lists.lp
+++ b/groups-lists.lp
@@ -46,7 +46,7 @@ mg.include('scripts/lua/header_authenticated.lp','r')
Hints:
- Please run
pihole -g or update your gravity list online after modifying your lists.
- - Multiple lists can be added by separating each unique URL with a space or comma
+ - Multiple lists can be added by separating each unique URL with a space or comma
- Click on the icon in the first column to get additional information about your lists. The icons correspond to the health of the list.
diff --git a/scripts/js/settings-dns-records.js b/scripts/js/settings-dns-records.js
index 93c7d475..041499e7 100644
--- a/scripts/js/settings-dns-records.js
+++ b/scripts/js/settings-dns-records.js
@@ -264,5 +264,7 @@ $(document).ready(function () {
});
// Add a small legend below the CNAME table
- $("#cnameRecords-Table").after("
* TTL in seconds (optional)");
+ $("#cnameRecords-Table").after(
+ "
* TTL in seconds (optional)"
+ );
});
diff --git a/scripts/js/taillog.js b/scripts/js/taillog.js
index 01c1e48e..aba2765b 100644
--- a/scripts/js/taillog.js
+++ b/scripts/js/taillog.js
@@ -26,10 +26,10 @@ function formatDnsmasq(line) {
if (line.includes("denied") || line.includes("gravity blocked")) {
// Red bold text for blocked domains
- txt = `
${txt}`;
+ txt = `
${txt}`;
} else if (line.includes("query[A") || line.includes("query[DHCP")) {
// Bold text for initial query lines
- txt = `
${txt}`;
+ txt = `
${txt}`;
} else {
// Grey text for all other lines
txt = `
${txt}`;
diff --git a/settings-dnsrecords.lp b/settings-dnsrecords.lp
index ce3c745d..742b8eab 100644
--- a/settings-dnsrecords.lp
+++ b/settings-dnsrecords.lp
@@ -100,7 +100,7 @@ mg.include('scripts/lua/settings_header.lp','r')
Note:
The target of a CNAME must be a domain that the Pi-hole already has in its cache or is authoritative for. This is a universal limitation of CNAME records.
The reason for this is that Pi-hole will not send additional queries upstream when serving CNAME replies. As consequence, if you set a target that isn't already known, the reply to the client may be incomplete. Pi-hole just returns the information it knows at the time of the query. This results in certain limitations for CNAME targets,
- for instance, only active DHCP leases work as targets - mere DHCP leases aren't sufficient as they aren't (yet) valid DNS records.
+ for instance, only
active DHCP leases work as targets - mere DHCP
leases aren't sufficient as they aren't (yet) valid DNS records.
Additionally, you can't CNAME external domains (bing.com to google.com) successfully as this could result in invalid SSL certificate errors when the target server does not serve content for the requested domain.
Adding/removing local CNAME records will restart the DNS server.
diff --git a/style/themes/high-contrast-dark.css b/style/themes/high-contrast-dark.css
index 1b75ff8e..44dbcdc9 100644
--- a/style/themes/high-contrast-dark.css
+++ b/style/themes/high-contrast-dark.css
@@ -621,7 +621,7 @@ kbd {
background: #181c20;
font-size: 14px;
}
-#output b.log-red {
+#output .log-red {
background: #b23;
color: #fff;
}
diff --git a/style/themes/high-contrast.css b/style/themes/high-contrast.css
index d51e6118..da7e6eed 100644
--- a/style/themes/high-contrast.css
+++ b/style/themes/high-contrast.css
@@ -294,7 +294,7 @@ a:hover {
#output {
font-size: 14px;
}
-#output b.log-red {
+#output .log-red {
background: #c00;
color: #fff;
}