From 35f243b03272a7b20bdcfdaf5ad0315ed621c5d4 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Wed, 29 May 2024 12:45:45 +1000 Subject: [PATCH] style(tweaks): hide floating button --- src/core/islands/FloatingButton.mjs | 2 +- src/core/islands/Panel.mjs | 4 ++-- src/extensions/focus/client.css | 21 +++++++++++---------- src/extensions/scroller/mod.json | 2 +- src/extensions/tweaks/client.css | 10 ++++++---- src/extensions/tweaks/mod.json | 4 ++-- 6 files changed, 23 insertions(+), 20 deletions(-) diff --git a/src/core/islands/FloatingButton.mjs b/src/core/islands/FloatingButton.mjs index 63940df..61f9e44 100644 --- a/src/core/islands/FloatingButton.mjs +++ b/src/core/islands/FloatingButton.mjs @@ -6,7 +6,7 @@ let __$wrapper; const setupWrapper = () => { - const notionAi = ".notion-ai-button", + const notionAi = ".notion-help-button, .notion-ai-button", { html, addMutationListener } = globalThis.__enhancerApi, { removeMutationListener } = globalThis.__enhancerApi; return (__$wrapper ??= new Promise((res) => { diff --git a/src/core/islands/Panel.mjs b/src/core/islands/Panel.mjs index 0de928d..26f00d0 100644 --- a/src/core/islands/Panel.mjs +++ b/src/core/islands/Panel.mjs @@ -304,10 +304,10 @@ function Panel({ }, 100); }); - // moves help button out of the way of open panel. + // moves ai/q&a button out of the way of open panel. // normally would place outside of an island, but in // this case is necessary for syncing up animations - const notionAi = ".notion-ai-button", + const notionAi = ".notion-help-button, .notion-ai-button", floatingButtons = ".notion-enhancer--floating-buttons", repositionCorner = async (offset) => { const $help = document.querySelector(notionAi), diff --git a/src/extensions/focus/client.css b/src/extensions/focus/client.css index e88c8e0..22a2964 100644 --- a/src/extensions/focus/client.css +++ b/src/extensions/focus/client.css @@ -6,19 +6,20 @@ */ /* hide topbar and ai */ -.notion-sidebar-container[aria-hidden] ~ div .notion-topbar, -.notion-sidebar-container[aria-hidden] ~ div .notion-ai-button { - opacity: 0 !important; - transition: opacity 200ms ease-in-out !important; -} -.notion-sidebar-container[aria-hidden] ~ div .notion-topbar:hover { - opacity: 1 !important; +.notion-sidebar-container[aria-hidden] ~ div { + :is(.notion-topbar, .notion-help-button, .notion-ai-button) { + opacity: 0 !important; + transition: opacity 200ms ease-in-out !important; + } + .notion-topbar:hover { + opacity: 1 !important; + } } /* hide tabs */ body > #root.sidebar-collapsed { transition: opacity 200ms ease-in-out; -} -body > #root.sidebar-collapsed:not(:hover) { - opacity: 0; + &:not(:hover) { + opacity: 0; + } } diff --git a/src/extensions/scroller/mod.json b/src/extensions/scroller/mod.json index 07b91e5..2d72388 100644 --- a/src/extensions/scroller/mod.json +++ b/src/extensions/scroller/mod.json @@ -27,7 +27,7 @@ { "type": "toggle", "key": "showScrollToBottom", - "description": "Adds a button to the bottom right corner of the screen (beside the help button) to jump directly to the bottom of a page.", + "description": "Adds a button to the bottom right corner of the screen to jump directly to the bottom of a page.", "value": false }, { diff --git a/src/extensions/tweaks/client.css b/src/extensions/tweaks/client.css index b508f50..646ce9a 100644 --- a/src/extensions/tweaks/client.css +++ b/src/extensions/tweaks/client.css @@ -7,6 +7,12 @@ */ /* interface */ +body[data-tweaks*=",hideFloatingButton,"] { + .notion-help-button, + .notion-ai-button { + display: none !important; + } +} /* pages */ @@ -55,10 +61,6 @@ body[data-tweaks*=",normalisedDatabaseScrolling,"] { opacity: 1 !important; } -.enhancer--tweak-hide_help .notion-help-button { - display: none !important; -} - .enhancer--tweak-hide_slash_for_commands [contenteditable]:empty:after { content: " " !important; } diff --git a/src/extensions/tweaks/mod.json b/src/extensions/tweaks/mod.json index 467e367..54af975 100644 --- a/src/extensions/tweaks/mod.json +++ b/src/extensions/tweaks/mod.json @@ -15,8 +15,8 @@ { "type": "heading", "label": "Interface" }, { "type": "toggle", - "key": "hideHelp", - "description": "Hide the help button floating at the bottom right of the interface.", + "key": "hideFloatingButton", + "description": "Hide the Q&A/Ask AI/Help button floating at the bottom right of the interface.", "value": false }, {