diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-03-19 13:55:28 -0400 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-03-19 13:55:28 -0400 |
commit | df2aa83e785db4bde91225181902ab543bfe8d28 (patch) | |
tree | 13888fd6cc43f0ba859e59b828f6a4b6ca519535 /src/usr | |
parent | 1a2d6d347736a198569ea89b7e061bc0b725efdd (diff) | |
download | pfsense-df2aa83e785db4bde91225181902ab543bfe8d28.zip pfsense-df2aa83e785db4bde91225181902ab543bfe8d28.tar.gz |
Changed the button colors and icons. The fa-terminal wasn't doing it for me :)
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/diag_command.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/local/www/diag_command.php b/src/usr/local/www/diag_command.php index c0bc5d2..fb63f84 100644 --- a/src/usr/local/www/diag_command.php +++ b/src/usr/local/www/diag_command.php @@ -250,17 +250,17 @@ if (!isBlank($_POST['txtCommand'])):?> <input type="hidden" name="txtRecallBuffer" value="<?=htmlspecialchars($_POST['txtRecallBuffer']) ?>" /> <div class="btn-group"> - <button type="button" class="btn btn-default btn-sm" name="btnRecallPrev" onclick="btnRecall_onClick( this.form, -1 );" title="<?=gettext("Recall Previous Command")?>"> + <button type="button" class="btn btn-warning btn-sm" name="btnRecallPrev" onclick="btnRecall_onClick( this.form, -1 );" title="<?=gettext("Recall Previous Command")?>"> <i class="fa fa-angle-double-left"></i> </button> - <button type="submit" class="btn btn-warning btn-sm" value="EXEC" title="<?=gettext("Execute the entered command")?>"> - <i class="fa fa-terminal icon-inverse"></i> + <button type="submit" class="btn btn-success btn-sm" value="EXEC" title="<?=gettext("Execute the entered command")?>"> + <i class="fa fa-bolt"></i> <?=gettext("Execute"); ?> </button> - <button type="button" class="btn btn-default btn-sm" name="btnRecallNext" onclick="btnRecall_onClick( this.form, 1 );" title="<?=gettext("Recall Next Command")?>"> + <button type="button" class="btn btn-warning btn-sm" name="btnRecallNext" onclick="btnRecall_onClick( this.form, 1 );" title="<?=gettext("Recall Next Command")?>"> <i class="fa fa-angle-double-right"></i> </button> - <button type="button" class="btn btn-default btn-sm" onclick="return Reset_onClick( this.form );" title="<?=gettext("Clear command entry")?>"> + <button style="margin-left: 13px;" type="button" class="btn btn-default btn-sm" onclick="return Reset_onClick( this.form );" title="<?=gettext("Clear command entry")?>"> <i class="fa fa-undo"></i> <?=gettext("Clear"); ?> </button> @@ -344,8 +344,8 @@ if (!isBlank($_POST['txtCommand'])):?> <div class="content"> <textarea id="txtPHPCommand" placeholder="Command" name="txtPHPCommand" rows="9" cols="80"><?=htmlspecialchars($_POST['txtPHPCommand'])?></textarea> <br /> - <button type="submit" class="btn btn-warning btn-sm" value="<?=gettext("Execute")?>" title="<?=gettext("Execute this PHP Code")?>"> - <i class="fa fa-terminal icon-inverse"></i> + <button type="submit" class="btn btn-success btn-sm" value="<?=gettext("Execute")?>" title="<?=gettext("Execute this PHP Code")?>"> + <i class="fa fa-bolt"></i> <?=gettext("Execute")?> </button> <?=gettext("Example"); ?>: <code>print("Hello World!");</code> |