Revision b96cb0a5
Added by Stephen Beaver almost 10 years ago
src/usr/local/www/bootstrap/css/pfSense.css | ||
---|---|---|
302 | 302 |
} |
303 | 303 |
|
304 | 304 |
/** create icon colors */ |
305 |
.icon-black |
|
306 |
{ |
|
307 |
color: #000000; |
|
308 |
} |
|
309 |
|
|
305 | 310 |
.icon-danger |
306 | 311 |
{ |
307 | 312 |
color: #D9534F; |
308 | 313 |
} |
314 |
|
|
309 | 315 |
.icon-success |
310 | 316 |
{ |
311 | 317 |
color: #5CB85C; |
src/usr/local/www/firewall_schedule.php | ||
---|---|---|
65 | 65 |
##|*MATCH=firewall_schedule.php* |
66 | 66 |
##|-PRIV |
67 | 67 |
|
68 |
define('CLOCK', '🕐');
|
|
68 |
define('CLOCK', '<i class="fa fa-clock-o icon-black"></i>');
|
|
69 | 69 |
|
70 | 70 |
$dayArray = array (gettext('Mon'), gettext('Tues'), gettext('Wed'), gettext('Thur'), gettext('Fri'), gettext('Sat'), gettext('Sun')); |
71 | 71 |
$monthArray = array (gettext('January'), gettext('February'), gettext('March'), gettext('April'), gettext('May'), gettext('June'), gettext('July'), gettext('August'), gettext('September'), gettext('October'), gettext('November'), gettext('December')); |
... | ... | |
138 | 138 |
?> |
139 | 139 |
<tr> |
140 | 140 |
<td> |
141 |
<?=($schedstatus) ? '<a title="' . gettext("Schedule is currently active") . '">' . CLOCK . '</a>':''?>
|
|
141 |
<?=(true) ? '<a title="' . gettext("Schedule is currently active") . '">' . CLOCK . '</a>':''?>
|
|
142 | 142 |
</td> |
143 | 143 |
<td> |
144 | 144 |
<?=htmlspecialchars($schedule['name'])?> |
... | ... | |
269 | 269 |
</div> |
270 | 270 |
</div> |
271 | 271 |
|
272 |
<?=($i > 0) ? gettext(CLOCK . ' Indicates that the schedule is currently active.'):''?>
|
|
272 |
<?=($i > 0) ? CLOCK . gettext(' Indicates that the schedule is currently active.'):''?>
|
|
273 | 273 |
|
274 | 274 |
<nav class="action-buttons"> |
275 | 275 |
<a href="firewall_schedule_edit.php" class="btn btn-sm btn-success"> |
Also available in: Unified diff
Fixed #5390