From 74364b9d63cf40c4ee0b1b50593779d05bf3e6d8 Mon Sep 17 00:00:00 2001 From: tophf Date: Tue, 27 Oct 2020 13:00:32 +0300 Subject: [PATCH] hide incremental search textarea, 2a6850c0 fixup --- manage/incremental-search.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manage/incremental-search.js b/manage/incremental-search.js index 5fa6648b..99416784 100644 --- a/manage/incremental-search.js +++ b/manage/incremental-search.js @@ -12,6 +12,7 @@ onDOMready().then(() => { oninput: incrementalSearch, }); replaceInlineStyle({ + opacity: '0', position: 'absolute', color: 'transparent', border: '1px solid hsla(180, 100%, 100%, .5)', @@ -72,6 +73,7 @@ onDOMready().then(() => { replaceInlineStyle({ width: focusedLink.offsetWidth + 'px', height: focusedLink.offsetHeight + 'px', + opacity: '1', }); focusedLink.prepend(input); return true;