services: start style update #2440

This commit is contained in:
Franco Fichtner 2018-06-05 17:40:51 +00:00
parent 390c0b3378
commit 93457293c9
2 changed files with 4 additions and 4 deletions

View File

@ -272,7 +272,7 @@ include("head.inc");
foreach($pconfig['timeservers_host'] as $item_idx => $timeserver):?>
<tr>
<td>
<div style="cursor:pointer;" class="act-removerow btn btn-default btn-xs" alt="remove"><span class="glyphicon glyphicon-minus"></span></div>
<div style="cursor:pointer;" class="act-removerow btn btn-default btn-xs" alt="remove"><i class="fa fa-minus fa-fw"></i></div>
</td>
<td>
<input name="timeservers_host[]" type="text" value="<?=$timeserver;?>" />
@ -290,7 +290,7 @@ include("head.inc");
<tfoot>
<tr>
<td colspan="4">
<div id="addNew" style="cursor:pointer;" class="btn btn-default btn-xs" alt="add"><span class="glyphicon glyphicon-plus"></span></div>
<div id="addNew" style="cursor:pointer;" class="btn btn-default btn-xs" alt="add"><i class="fa fa-plus fa-fw"></i></div>
</td>
</tr>
</tfoot>

View File

@ -198,8 +198,8 @@ include 'head.inc';
}
echo sprintf(
'<span class="glyphicon glyphicon-%s"></span> %s<br />',
strpos($result, 'good') === 0 ? 'ok text-success' : 'remove text-danger',
'<i class="fa fa-%s"></i> %s<br />',
strpos($result, 'good') === 0 ? 'check text-success' : 'times text-danger',
$result
);
}?>