Small fix for 3rd party containers

- Fix orange text "not available" to use the default text colour.
This commit is contained in:
Christoph Hummer
2024-09-23 21:19:04 +02:00
committed by GitHub
parent 8f656e87b1
commit 020ed9a07f

View File

@@ -175,7 +175,7 @@ foreach ($containers as $ct) {
echo "<span style='white-space:nowrap;'><i class='fa fa-unlink'></i> "._('not available')."</span>";
} else {
echo "<div><span><i class='fa fa-docker fa-fw'/></i> 3rd Party</span></div>";
echo "<span class='orange-text' style='white-space:nowrap;'><i class='fa fa-unlink'></i> "._('not available')."</span>";
echo "<span style='white-space:nowrap;'><i class='fa fa-unlink'></i> "._('not available')."</span>";
}
break;
}