diff options
author | heper <heper@users.noreply.github.com> | 2015-11-02 19:38:44 +0100 |
---|---|---|
committer | heper <heper@users.noreply.github.com> | 2015-11-02 19:38:44 +0100 |
commit | 92c0709b9320533416a3f105d37a320202b07dc3 (patch) | |
tree | 7828630d8977807454d8e2cef4fec56345c07e91 /src | |
parent | a5855731c0276b72585c3a23378c85370f7ebf33 (diff) | |
download | pfsense-92c0709b9320533416a3f105d37a320202b07dc3.zip pfsense-92c0709b9320533416a3f105d37a320202b07dc3.tar.gz |
convert diag_confbak to fa
are the icons for revert & download ok ?
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/diag_confbak.php | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/usr/local/www/diag_confbak.php b/src/usr/local/www/diag_confbak.php index 7f87123..810d104 100644 --- a/src/usr/local/www/diag_confbak.php +++ b/src/usr/local/www/diag_confbak.php @@ -280,16 +280,9 @@ if (is_array($confvers)): <td><?= format_bytes($version['filesize']) ?></td> <td><?= htmlspecialchars($version['description']) ?></td> <td> - <a href="diag_confbak.php?newver=<?=$version['time']?>" class="btn btn-xs btn-success" - onclick="return confirm('<?=gettext("Are you sure you want to replace the current configuration with this backup?")?>')"> - <?=gettext("Revert")?> - </a> - <a href="diag_confbak.php?rmver=<?=$version['time']?>" class="btn btn-xs btn-danger"> - <?=gettext("Delete")?> - </a> - <a href="diag_confbak.php?getcfg=<?=$version['time']?>" class="btn btn-xs btn-default"> - <?=gettext("Download")?> - </a> + <a class="fa fa-undo" title="<?=gettext('Revert config')?>" href="diag_confbak.php?newver=<?=$version['time']?>" onclick="return confirm('<?=gettext("Are you sure you want to replace the current configuration with this backup?")?>')"></a> + <a class="fa fa-download" title="<?=gettext('Download config')?>" href="diag_confbak.php?getcfg=<?=$version['time']?>"></a> + <a class="fa fa-trash" title="<?=gettext('Delete config')?>" href="diag_confbak.php?rmver=<?=$version['time']?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this config?")?>')"></a> </td> </tr> <?php |