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() { ...@@ -652,7 +652,7 @@ $( document ).ready(function() {
?> ?>
<tr> <tr>
<td colspan="11" align="center" valign="middle"> <td colspan="11" align="center" valign="middle">
<span class="gray"> <span class="text-muted">
<?php if ($selected_if == "FloatingRules"): ?> <?php if ($selected_if == "FloatingRules"): ?>
<?=gettext("No floating rules are currently defined."); ?><br /><br /> <?=gettext("No floating rules are currently defined."); ?><br /><br />
<?php else: ?> <?php else: ?>
......
...@@ -90,7 +90,7 @@ $main_buttons = array( ...@@ -90,7 +90,7 @@ $main_buttons = array(
foreach ($iflist as $if => $ifdesc) { foreach ($iflist as $if => $ifdesc) {
if ($rfc2136['interface'] == $if) { if ($rfc2136['interface'] == $if) {
if (!isset($rfc2136['enable'])) if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">{$ifdesc}</span>"; echo "<span class=\"text-muted\">{$ifdesc}</span>";
else else
echo "{$ifdesc}"; echo "{$ifdesc}";
break; break;
...@@ -101,7 +101,7 @@ $main_buttons = array( ...@@ -101,7 +101,7 @@ $main_buttons = array(
<td class="listr"> <td class="listr">
<?php <?php
if (!isset($rfc2136['enable'])) if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">" . htmlspecialchars($rfc2136['server']) . "</span>"; echo "<span class=\"text-muted\">" . htmlspecialchars($rfc2136['server']) . "</span>";
else else
echo htmlspecialchars($rfc2136['server']); echo htmlspecialchars($rfc2136['server']);
?> ?>
...@@ -109,7 +109,7 @@ $main_buttons = array( ...@@ -109,7 +109,7 @@ $main_buttons = array(
<td class="listr"> <td class="listr">
<?php <?php
if (!isset($rfc2136['enable'])) if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">" . htmlspecialchars($rfc2136['host']) . "</span>"; echo "<span class=\"text-muted\">" . htmlspecialchars($rfc2136['host']) . "</span>";
else else
echo htmlspecialchars($rfc2136['host']); echo htmlspecialchars($rfc2136['host']);
?> ?>
...@@ -154,7 +154,7 @@ $main_buttons = array( ...@@ -154,7 +154,7 @@ $main_buttons = array(
<td class="listbg"> <td class="listbg">
<?php <?php
if (!isset($rfc2136['enable'])) if (!isset($rfc2136['enable']))
echo "<span class=\"gray\">" . htmlspecialchars($rfc2136['descr']) . "</span>"; echo "<span class=\"text-muted\">" . htmlspecialchars($rfc2136['descr']) . "</span>";
else else
echo htmlspecialchars($rfc2136['descr']); echo htmlspecialchars($rfc2136['descr']);
?> ?>
......
...@@ -88,7 +88,7 @@ if ($_REQUEST['getdyndnsstatus']) { ...@@ -88,7 +88,7 @@ if ($_REQUEST['getdyndnsstatus']) {
foreach ($iflist as $if => $ifdesc) { foreach ($iflist as $if => $ifdesc) {
if ($dyndns['interface'] == $if) { if ($dyndns['interface'] == $if) {
if (!isset($dyndns['enable'])) { if (!isset($dyndns['enable'])) {
echo "<span class=\"gray\">{$ifdesc}</span>"; echo "<span class=\"text-muted\">{$ifdesc}</span>";
} else { } else {
echo "{$ifdesc}"; echo "{$ifdesc}";
} }
...@@ -99,7 +99,7 @@ if ($_REQUEST['getdyndnsstatus']) { ...@@ -99,7 +99,7 @@ if ($_REQUEST['getdyndnsstatus']) {
foreach ($groupslist as $if => $group) { foreach ($groupslist as $if => $group) {
if ($dyndns['interface'] == $if) { if ($dyndns['interface'] == $if) {
if (!isset($dyndns['enable'])) { if (!isset($dyndns['enable'])) {
echo "<span class=\"gray\">{$if}</span>"; echo "<span class=\"text-muted\">{$if}</span>";
} else { } else {
echo "{$if}"; echo "{$if}";
} }
...@@ -113,7 +113,7 @@ if ($_REQUEST['getdyndnsstatus']) { ...@@ -113,7 +113,7 @@ if ($_REQUEST['getdyndnsstatus']) {
$types = services_dyndns_list(); $types = services_dyndns_list();
if (isset($types[$dyndns['type']])) { if (isset($types[$dyndns['type']])) {
if (!isset($dyndns['enable'])) { if (!isset($dyndns['enable'])) {
echo '<span class="gray">' . htmlspecialchars($types[$dyndns['type']]) . '</span>'; echo '<span class="text-muted">' . htmlspecialchars($types[$dyndns['type']]) . '</span>';
} else { } else {
echo htmlspecialchars($types[$dyndns['type']]); echo htmlspecialchars($types[$dyndns['type']]);
} }
...@@ -123,7 +123,7 @@ if ($_REQUEST['getdyndnsstatus']) { ...@@ -123,7 +123,7 @@ if ($_REQUEST['getdyndnsstatus']) {
<td class="listr"> <td class="listr">
<?php <?php
if (!isset($dyndns['enable'])) { if (!isset($dyndns['enable'])) {
echo "<span class=\"gray\">".htmlspecialchars($dyndns['host'])."</span>"; echo "<span class=\"text-muted\">".htmlspecialchars($dyndns['host'])."</span>";
} else { } else {
echo htmlspecialchars($dyndns['host']); 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