1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-06 17:37:15 +03:00

ui tweaks

This commit is contained in:
Eugene Pankov 2021-10-23 19:17:43 +02:00
parent 9f8f2966d9
commit c25d4bd768
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -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',