diff options
Diffstat (limited to 'src')
-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> |