feat(outliner): hide builtin floating toc when outliner is enabled

This commit is contained in:
dragonwocky 2024-11-15 15:03:41 +11:00
parent 7dde3b8b3c
commit d651b5ceea
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 24 additions and 3 deletions

View File

@ -40,6 +40,17 @@ export default async (api, db) => {
</section>`, </section>`,
}); });
const replaceFloatingOutline = await db.get("replaceFloatingOutline");
if (replaceFloatingOutline) {
document.head.append(html`<style>
.hide-scrollbar.ignore-scrolling-container:has(
div:empty[style*="width"]
) {
display: none !important;
}
</style>`);
}
let $page, $scroller; let $page, $scroller;
const getHeadings = () => { const getHeadings = () => {
if (!$page) return []; if (!$page) return [];

View File

@ -3,7 +3,9 @@
"version": "0.5.0", "version": "0.5.0",
"id": "87e077cc-5402-451c-ac70-27cc4ae65546", "id": "87e077cc-5402-451c-ac70-27cc4ae65546",
"description": "Adds a table of contents to the side panel to overview and navigate the current page's headings and subheadings.", "description": "Adds a table of contents to the side panel to overview and navigate the current page's headings and subheadings.",
"tags": ["panel"], "tags": [
"panel"
],
"authors": [ "authors": [
{ {
"name": "dragonwocky", "name": "dragonwocky",
@ -28,7 +30,15 @@
"key": "equationRendering", "key": "equationRendering",
"description": "Attempts to render special symbols from inline equations in headings. Note that position- and size-based formatting will be lost when displaying equations in the Outliner's table of contents. Disable this to display the raw TeX equation instead.", "description": "Attempts to render special symbols from inline equations in headings. Note that position- and size-based formatting will be lost when displaying equations in the Outliner's table of contents. Disable this to display the raw TeX equation instead.",
"value": true "value": true
},
{
"type": "toggle",
"key": "replaceFloatingOutline",
"description": "Disables Notion's builtin floating table of contents for a complete switch to the Outliner.",
"value": true
} }
], ],
"clientScripts": ["client.mjs"] "clientScripts": [
} "client.mjs"
]
}