fontawesome 5

This commit is contained in:
Eugene Pankov
2018-12-21 21:37:34 +01:00
parent c204f6d5a4
commit 9aaf670092
16 changed files with 61 additions and 60 deletions

View File

@@ -57,7 +57,7 @@ h3.mb-3 Appearance
(click)='deleteScheme(config.store.terminal.colorScheme)',
*ngIf='isCustomScheme(config.store.terminal.colorScheme)'
)
i.fa.fa-trash-o
i.fas.fa-trash
.form-group(*ngIf='editingColorScheme')
label Editing

View File

@@ -25,11 +25,11 @@
)
.input-group-btn
button.btn.btn-secondary((click)='profile.sessionOptions.args.splice(i, 1)')
i.fa.fa-trash-o
i.fas.fa-trash
.mt-2
button.btn.btn-secondary((click)='profile.sessionOptions.args.push("")')
i.fa.fa-plus.mr-2
i.fas.fa-plus.mr-2
| Add
.form-group

View File

@@ -5,8 +5,8 @@
.input-group-text =
input.form-control.w-50.mr-1([(ngModel)]='pair.value', (blur)='emitUpdate()', placeholder='Value')
button.btn.btn-secondary((click)='removeEnvironmentVar(pair.key)')
i.fa.fa-trash-o
i.fas.fa-trash
button.btn.btn-secondary((click)='addEnvironmentVar()')
i.fa.fa-plus.mr-2
i.fas.fa-plus.mr-2
span Add

View File

@@ -50,7 +50,7 @@ h3.mb-3 Shell
)
.input-group-btn
button.btn.btn-secondary((click)='pickWorkingDirectory()')
i.fa.fa-folder-open
i.fas.fa-folder-open
.form-line.align-items-start
.header
@@ -70,11 +70,11 @@ h3.mt-3 Saved Profiles
div {{profile.name}}
.text-muted {{profile.sessionOptions.command}}
button.btn.btn-outline-danger.ml-1((click)='$event.stopPropagation(); deleteProfile(profile)')
i.fa.fa-trash-o
i.fas.fa-trash
div(ngbDropdown, placement='top-left')
button.btn.btn-primary(ngbDropdownToggle)
i.fa.fa-fw.fa-plus
i.fas.fa-fw.fa-plus
| New profile
div(ngbDropdownMenu)
button.dropdown-item(*ngFor='let shell of shells', (click)='newProfile(shell)') {{shell.name}}