bootstrap 5 WIP

This commit is contained in:
Eugene Pankov
2023-02-04 20:50:11 +01:00
parent 0a2011acba
commit 153d11cfe2
44 changed files with 244 additions and 695 deletions

View File

@@ -1,5 +1,5 @@
ng-container(*ngIf='!argvMode')
.form-group
.mb-3
label(translate) Command line
.input-group
.input-group-prepend
@@ -15,7 +15,7 @@ ng-container(*ngIf='!argvMode')
)
ng-container(*ngIf='argvMode')
.form-group
.mb-3
label(translate) Program
.input-group
.input-group-prepend
@@ -30,7 +30,7 @@ ng-container(*ngIf='argvMode')
[(ngModel)]='_model.command',
)
.form-group
.mb-3
label(translate) Arguments
.input-group(
*ngFor='let arg of _model.args; index as i; trackBy: trackByIndex',
@@ -45,5 +45,5 @@ ng-container(*ngIf='argvMode')
.mt-2
button.btn.btn-secondary((click)='_model.args.push("")')
i.fas.fa-plus.mr-2
i.fas.fa-plus.me-2
span(translate) Add

View File

@@ -10,11 +10,11 @@
.d-flex
button.btn.btn-secondary((click)='addEnvironmentVar()')
i.fas.fa-plus.mr-2
i.fas.fa-plus.me-2
span(translate) Add
.ml-auto
.ms-auto
.text-muted(translate) Substitutions allowed.
.d-flex.ml-1(*ngIf='shouldShowExample()')
.d-flex.ms-1(*ngIf='shouldShowExample()')
.text-muted(translate) Example:
a.ml-1((click)='addExample()', href='#') extend PATH
a.ms-1((click)='addExample()', href='#') extend PATH

View File

@@ -7,7 +7,7 @@ command-line-editor([model]='profile.options')
[(ngModel)]='profile.options.runAsAdministrator',
)
.form-group
.mb-3
label(translate) Working directory
.input-group
@@ -20,7 +20,7 @@ command-line-editor([model]='profile.options')
button.btn.btn-secondary((click)='pickWorkingDirectory()')
i.fas.fa-folder-open
.form-group
.mb-3
label(translate) Environment
environment-editor(
type='text',

View File

@@ -11,7 +11,7 @@ h3.mb-3(translate) Shell
)
.alert.alert-info.d-flex.align-items-center(*ngIf='config.store.terminal.useConPTY && isConPTYAvailable && !isConPTYStable')
.mr-auto(translate) Windows 10 build 18309 or above is recommended for ConPTY
.me-auto(translate) Windows 10 build 18309 or above is recommended for ConPTY
.alert.alert-info.d-flex.align-items-center(*ngIf='config.store.terminal.profile.startsWith("WSL") && (!config.store.terminal.useConPTY)')
.mr-auto(translate) WSL terminal only supports TrueColor with ConPTY
.me-auto(translate) WSL terminal only supports TrueColor with ConPTY