diff --git a/terminus-terminal/src/components/searchPanel.component.pug b/terminus-terminal/src/components/searchPanel.component.pug index c94dfff8..09f14997 100644 --- a/terminus-terminal/src/components/searchPanel.component.pug +++ b/terminus-terminal/src/components/searchPanel.component.pug @@ -1,6 +1,6 @@ .input-group.w-100 input.search-input.form-control( - type='search', + type='search', [(ngModel)]='query', (ngModelChange)='notFound = false', [class.text-danger]='notFound', @@ -15,20 +15,20 @@ (click)='options.caseSensitive = !options.caseSensitive', [class.active]='options.caseSensitive', ngbTooltip='Case sensitivity', - placement='bottom' + placement='bottom' ) i.fa.fa-fw.fa-font button.btn.btn-outline-primary( (click)='options.regex = !options.regex', [class.active]='options.regex', ngbTooltip='Regular expression', - placement='bottom' + placement='bottom' ) i.fa.fa-fw.fa-asterisk button.btn.btn-outline-primary( (click)='options.wholeWord = !options.wholeWord', [class.active]='options.wholeWord', ngbTooltip='Whole word', - placement='bottom' + placement='bottom' ) - i.fa.fa-fw.fa-square + i.fa.fa-fw.fa-text-width diff --git a/terminus-terminal/src/components/searchPanel.component.scss b/terminus-terminal/src/components/searchPanel.component.scss index 1245e090..df590207 100644 --- a/terminus-terminal/src/components/searchPanel.component.scss +++ b/terminus-terminal/src/components/searchPanel.component.scss @@ -3,7 +3,7 @@ width: 400px; align-self: center; z-index: 5; - padding: 5px; + padding: 10px; border-radius: 0 0 3px 3px; - background: rgba(0, 0, 0, .25); + background: rgba(0, 0, 0, .75); }