From c25d4bd76889f07cebcb9eb0061e0eb6ee8ca5bc Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sat, 23 Oct 2021 19:17:43 +0200 Subject: [PATCH] ui tweaks --- .../src/components/commandLineEditor.component.pug | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tabby-local/src/components/commandLineEditor.component.pug b/tabby-local/src/components/commandLineEditor.component.pug index 901743bc..a5f70e68 100644 --- a/tabby-local/src/components/commandLineEditor.component.pug +++ b/tabby-local/src/components/commandLineEditor.component.pug @@ -3,7 +3,11 @@ ng-container(*ngIf='!argvMode') label Command line .input-group .input-group-prepend - button.btn.btn-secondary((click)='switchToArgv()', title='Switch to split arguments') + a.input-group-text( + (click)='switchToArgv()', + ngbTooltip='Split into unescaped arguments', + href='#' + ) i.fas.fa-fw.fa-caret-right input.form-control.text-monospace( [(ngModel)]='command', @@ -15,7 +19,11 @@ ng-container(*ngIf='argvMode') label Program .input-group .input-group-prepend - button.btn.btn-secondary((click)='switchToCommand()', title='Switch to a single-line command') + a.input-group-text( + (click)='switchToCommand()', + ngbTooltip='Combine into a single escaped command', + href='#' + ) i.fas.fa-fw.fa-caret-down input.form-control.text-monospace( type='text',