Commit 53df54fc authored by Franco Fichtner's avatar Franco Fichtner

www: s/gray/text-muted/g

parent db9fe75e
......@@ -652,7 +652,7 @@ $( document ).ready(function() {
?>
<tr>
<td colspan="11" align="center" valign="middle">
<span class="gray">
<span class="text-muted">
<?php if ($selected_if == "FloatingRules"): ?>
<?=gettext("No floating rules are currently defined."); ?><br /><br />
<?php else: ?>
......
......@@ -90,7 +90,7 @@ $main_buttons = array(
foreach ($iflist as $if => $ifdesc) {
if ($rfc2136['interface'] == $if) {
if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">{$ifdesc}</span>";
echo "<span class=\"text-muted\">{$ifdesc}</span>";
else
echo "{$ifdesc}";
break;
......@@ -101,7 +101,7 @@ $main_buttons = array(
<td class="listr">
<?php
if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">" . htmlspecialchars($rfc2136['server']) . "</span>";
echo "<span class=\"text-muted\">" . htmlspecialchars($rfc2136['server']) . "</span>";
else
echo htmlspecialchars($rfc2136['server']);
?>
......@@ -109,7 +109,7 @@ $main_buttons = array(
<td class="listr">
<?php
if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">" . htmlspecialchars($rfc2136['host']) . "</span>";
echo "<span class=\"text-muted\">" . htmlspecialchars($rfc2136['host']) . "</span>";
else
echo htmlspecialchars($rfc2136['host']);
?>
......@@ -154,7 +154,7 @@ $main_buttons = array(
<td class="listbg">
<?php
if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">" . htmlspecialchars($rfc2136['descr']) . "</span>";
echo "<span class=\"text-muted\">" . htmlspecialchars($rfc2136['descr']) . "</span>";
else
echo htmlspecialchars($rfc2136['descr']);
?>
......
......@@ -88,7 +88,7 @@ if ($_REQUEST['getdyndnsstatus']) {
foreach ($iflist as $if => $ifdesc) {
if ($dyndns['interface'] == $if) {
if (!isset($dyndns['enable'])) {
echo "<span class=\"gray\">{$ifdesc}</span>";
echo "<span class=\"text-muted\">{$ifdesc}</span>";
} else {
echo "{$ifdesc}";
}
......@@ -99,7 +99,7 @@ if ($_REQUEST['getdyndnsstatus']) {
foreach ($groupslist as $if => $group) {
if ($dyndns['interface'] == $if) {
if (!isset($dyndns['enable'])) {
echo "<span class=\"gray\">{$if}</span>";
echo "<span class=\"text-muted\">{$if}</span>";
} else {
echo "{$if}";
}
......@@ -113,7 +113,7 @@ if ($_REQUEST['getdyndnsstatus']) {
$types = services_dyndns_list();
if (isset($types[$dyndns['type']])) {
if (!isset($dyndns['enable'])) {
echo '<span class="gray">' . htmlspecialchars($types[$dyndns['type']]) . '</span>';
echo '<span class="text-muted">' . htmlspecialchars($types[$dyndns['type']]) . '</span>';
} else {
echo htmlspecialchars($types[$dyndns['type']]);
}
......@@ -123,7 +123,7 @@ if ($_REQUEST['getdyndnsstatus']) {
<td class="listr">
<?php
if (!isset($dyndns['enable'])) {
echo "<span class=\"gray\">".htmlspecialchars($dyndns['host'])."</span>";
echo "<span class=\"text-muted\">".htmlspecialchars($dyndns['host'])."</span>";
} else {
echo htmlspecialchars($dyndns['host']);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment