From fffc0c16d1c8525bd13482df6d39faf57dfa9b24 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Tue, 28 May 2024 22:02:06 +1000 Subject: [PATCH] fix(right-to-left): #828 dir=auto per-element under toggle, not whole block --- src/extensions/right-to-left/client.mjs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/extensions/right-to-left/client.mjs b/src/extensions/right-to-left/client.mjs index 260d75d..c9e8aaa 100644 --- a/src/extensions/right-to-left/client.mjs +++ b/src/extensions/right-to-left/client.mjs @@ -9,9 +9,16 @@ export default async (api) => { const { addMutationListener } = api, pageContentSelector = ` :is([placeholder="Untitled"], - .notion-page-content > - div[data-block-id]:not(.notion-column_list-block):not(.notion-collection_view_page-block), - .notion-page-content .notion-table_of_contents-block a, + .notion-page-content :is( + div[data-block-id]:not(.notion-column_list-block, + .notion-collection_view_page-block, .notion-header-block, + .notion-sub_header-block, .notion-sub_sub_header-block + .notion-toggle-block, .notion-table_of_contents-block), + .notion-header-block [placeholder="Heading 1"], + .notion-sub_header-block [placeholder="Heading 2"], + .notion-sub_sub_header-block [placeholder="Heading 3"], + .notion-toggle-block [placeholder="Toggle"], + .notion-table_of_contents-block a), .notion-page-view-discussion [data-content-editable-leaf], .notion-column-block > div[data-block-id], .notion-collection_view-block,