mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-25 19:17:39 +03:00
fixed #8100 - search box layout issues in the new theme
This commit is contained in:
parent
8cba805522
commit
0f71618cb8
@ -28,24 +28,27 @@ ng-container(*ngIf='state.resultCount > 0')
|
||||
|
||||
.me-2
|
||||
|
||||
button.btn.btn-link(
|
||||
button.btn(
|
||||
(click)='options.caseSensitive = !options.caseSensitive; saveSearchOptions()',
|
||||
[class.btn-link]='!options.caseSensitive',
|
||||
[class.btn-info]='options.caseSensitive',
|
||||
ngbTooltip='Case sensitivity',
|
||||
placement='bottom',
|
||||
[fastHtmlBind]='icons.case'
|
||||
)
|
||||
|
||||
button.btn.btn-link(
|
||||
button.btn(
|
||||
(click)='options.regex = !options.regex; saveSearchOptions()',
|
||||
[class.btn-link]='!options.regex',
|
||||
[class.btn-info]='options.regex',
|
||||
ngbTooltip='Regular expression',
|
||||
placement='bottom',
|
||||
[fastHtmlBind]='icons.regexp'
|
||||
)
|
||||
|
||||
button.btn.btn-link(
|
||||
button.btn(
|
||||
(click)='options.wholeWord = !options.wholeWord; saveSearchOptions()',
|
||||
[class.btn-link]='!options.wholeWord',
|
||||
[class.btn-info]='options.wholeWord',
|
||||
ngbTooltip='Whole word',
|
||||
placement='bottom',
|
||||
|
@ -21,3 +21,7 @@
|
||||
font-size: 0.7rem;
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
svg {
|
||||
height: 16px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user