diff options
Diffstat (limited to 'source/features/file-finder-buffer.tsx')
-rw-r--r-- | source/features/file-finder-buffer.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/features/file-finder-buffer.tsx b/source/features/file-finder-buffer.tsx index c6b48803..aca68739 100644 --- a/source/features/file-finder-buffer.tsx +++ b/source/features/file-finder-buffer.tsx @@ -14,7 +14,7 @@ const getBufferField = onetime((): HTMLInputElement => ( style={{ backgroundColor: 'transparent', outline: 0, - color: 'var(--color-fg-default, var(--color-text-primary))', + color: 'var(--color-fg-default)', }} placeholder="Search fileā¦" /> as unknown as HTMLInputElement @@ -30,7 +30,7 @@ function pjaxStartHandler(event: CustomEvent): void { bufferField.value = ''; select('.pagehead h1 strong, [itemprop="name"]')!.after( - <span className="mr-1 ml-n1 flex-self-stretch color-text-secondary color-fg-muted">/</span>, + <span className="mr-1 ml-n1 flex-self-stretch color-fg-muted">/</span>, <span className="flex-self-stretch mr-2">{bufferField}</span>, ); bufferField.focus(); |