aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/presenters/FocusPresenter.ts2
-rw-r--r--src/content/site-style.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/content/presenters/FocusPresenter.ts b/src/content/presenters/FocusPresenter.ts
index 4d70a6e..3591039 100644
--- a/src/content/presenters/FocusPresenter.ts
+++ b/src/content/presenters/FocusPresenter.ts
@@ -11,7 +11,7 @@ export class FocusPresenterImpl implements FocusPresenter {
.map((type) => `input[type=${type}]`)
.join(",");
const targets = window.document.querySelectorAll(
- inputSelector + ",textarea"
+ inputSelector + ",input:not([type]),textarea"
);
const target = Array.from(targets).find(doms.isVisible);
if (target instanceof HTMLInputElement) {
diff --git a/src/content/site-style.ts b/src/content/site-style.ts
index 0c335fc..3748c6b 100644
--- a/src/content/site-style.ts
+++ b/src/content/site-style.ts
@@ -8,8 +8,8 @@ export default `
height: 100%;
position: fixed;
z-index: 2147483647;
- border: none;
- background-color: unset;
+ border: none !important;
+ background-color: unset !important;
pointer-events:none;
}