diff --git a/scripts/js/interfaces.js b/scripts/js/interfaces.js
index 18e0ae32..1398c8f3 100644
--- a/scripts/js/interfaces.js
+++ b/scripts/js/interfaces.js
@@ -54,12 +54,13 @@ $(function () {
}
// Show an icon for indenting slave interfaces
- const indentIcon = master === null ? "" : " ";
+ const indentIcon =
+ master === null ? "" : " ⤷ ";
var obj = {
text: indentIcon + interface.name + " - " + status,
class: gateways.has(interface.name) ? "text-bold" : null,
- icon: "fa fa-network-wired fa-fw",
+ icon: master === null ? "fa fa-network-wired fa-fw" : "",
nodes: [],
};
diff --git a/style/pi-hole.css b/style/pi-hole.css
index 70fbc282..f0d1a6aa 100644
--- a/style/pi-hole.css
+++ b/style/pi-hole.css
@@ -1584,3 +1584,7 @@ textarea.field-sizing-content {
.bstreeview .list-group-item:hover {
background-color: rgba(127, 127, 127, 0.18);
}
+.child-interface-icon {
+ line-height: 0.5em;
+ font-size: 1.7em;
+}