mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-20 03:20:12 +00:00
27 lines
866 B
Plaintext
27 lines
866 B
Plaintext
.modal-body
|
|
input.form-control.form-control-lg(
|
|
type='text',
|
|
[(ngModel)]='filter',
|
|
autofocus,
|
|
[placeholder]='name',
|
|
(ngModelChange)='onFilterChange()'
|
|
)
|
|
|
|
.list-group(*ngIf='filteredOptions.length')
|
|
a.list-group-item.list-group-item-action.d-flex.align-items-center(
|
|
#item,
|
|
(click)='selectOption(option)',
|
|
[class.active]='selectedIndex == i',
|
|
*ngFor='let option of filteredOptions; let i = index'
|
|
)
|
|
i.icon(
|
|
class='fa-fw {{option.icon}}',
|
|
*ngIf='!iconIsSVG(option.icon)'
|
|
)
|
|
.icon(
|
|
[fastHtmlBind]='option.icon',
|
|
*ngIf='iconIsSVG(option.icon)'
|
|
)
|
|
.mr-2.title {{getOptionText(option)}}
|
|
.text-muted {{option.description}}
|