toggle header support added

This commit is contained in:
amv146 2022-02-08 17:52:34 -08:00
parent b93f730170
commit 6c1e6ffbce
3 changed files with 30 additions and 2 deletions

View File

@ -9,6 +9,9 @@
.notion-page-content .notion-numbered_list-block > div > div:last-child, .notion-page-content .notion-numbered_list-block > div > div:last-child,
.notion-page-content .notion-to_do-block > div > div:last-child, .notion-page-content .notion-to_do-block > div > div:last-child,
.notion-page-content .notion-toggle-block > div > div:last-child, .notion-page-content .notion-toggle-block > div > div:last-child,
.notion-page-content .notion-selectable.notion-sub_header-block > div > div > div:last-child,
.notion-page-content .notion-selectable.notion-sub_sub_header-block > div > div > div:last-child,
.notion-page-content .notion-selectable.notion-sub_sub_sub_header-block > div > div > div:last-child,
.notion-page-content .notion-table_of_contents-block > div > div > a > div > div { .notion-page-content .notion-table_of_contents-block > div > div > a > div > div {
position: relative; position: relative;
} }
@ -16,7 +19,11 @@
.notion-page-content .notion-bulleted_list-block > div > div:last-child::before, .notion-page-content .notion-bulleted_list-block > div > div:last-child::before,
.notion-page-content .notion-numbered_list-block > div > div:last-child::before, .notion-page-content .notion-numbered_list-block > div > div:last-child::before,
.notion-page-content .notion-to_do-block > div > div:last-child::before, .notion-page-content .notion-to_do-block > div > div:last-child::before,
.notion-page-content .notion-toggle-block > div > div:last-child::before { .notion-page-content .notion-toggle-block > div > div:last-child::before,
.notion-page-content .notion-selectable.notion-sub_header-block > div > div > div:last-child::before,
.notion-page-content .notion-selectable.notion-sub_sub_header-block > div > div > div:last-child::before,
.notion-page-content .notion-selectable.notion-sub_sub_sub_header-block > div > div > div:last-child::before,
.notion-page-content .pseudoSelection > div > div:last-child::before {
content: ''; content: '';
position: absolute; position: absolute;
height: calc(100% - 2em); height: calc(100% - 2em);
@ -93,3 +100,4 @@
> .plus:hover { > .plus:hover {
background: var(--theme--ui_interactive-hover) !important; background: var(--theme--ui_interactive-hover) !important;
} }

View File

@ -48,7 +48,21 @@ export default async function ({ web }, db) {
} }
} }
} }
if (await db.get(['toggle_header'])) {
css += `
.notion-page-content .notion-selectable.notion-sub_sub_header-block > div > div > div:last-child::before {
border-left: 1px ${style} var(--indentation_lines--color, currentColor);
opacity: ${opacity};
}
.notion-page-content .notion-selectable.notion-sub_header-block > div > div > div:last-child::before {
border-left: 1px ${style} var(--indentation_lines--color, currentColor);
opacity: ${opacity};
}
.notion-page-content .notion-selectable.notion-sub_sub_sub_header-block > div > div > div:last-child::before {
border-left: 1px ${style} var(--indentation_lines--color, currentColor);
opacity: ${opacity};
}`;
}
if (db.get(['table_of_contents'])) { if (db.get(['table_of_contents'])) {
css += ` css += `
.notion-page-content .notion-table_of_contents-block > div > div > a > div .notion-page-content .notion-table_of_contents-block > div > div > a > div

View File

@ -50,6 +50,12 @@
"label": "toggle lists", "label": "toggle lists",
"value": true "value": true
}, },
{
"type": "toggle",
"key": "toggle_header",
"label": "toggle headers",
"value": true
},
{ {
"type": "toggle", "type": "toggle",
"key": "table_of_contents", "key": "table_of_contents",