mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
outliner: add option to show indentation lines
This commit is contained in:
parent
b7e80cf25b
commit
3b08e51dcb
@ -49,3 +49,18 @@
|
||||
.outline-header.notion-sub_sub_header-block a {
|
||||
text-indent: 36px;
|
||||
}
|
||||
|
||||
.outliner[lined] .notion-sub_header-block::before,
|
||||
.outliner[lined] .notion-sub_sub_header-block::before {
|
||||
content: "";
|
||||
border-left: solid 1px;
|
||||
height: 2.2em;
|
||||
opacity: 0.25;
|
||||
position: absolute;
|
||||
left: 18px;
|
||||
pointer-events: none;
|
||||
}
|
||||
.outliner[lined] .notion-sub_sub_header-block::before {
|
||||
border-right: solid 1px;
|
||||
width: 18px;
|
||||
}
|
||||
|
@ -17,6 +17,12 @@ module.exports = {
|
||||
version: '1.0.0',
|
||||
author: 'CloudHill',
|
||||
options: [
|
||||
{
|
||||
key: 'lined',
|
||||
label: 'indentation lines',
|
||||
type: 'toggle',
|
||||
value: true
|
||||
},
|
||||
{
|
||||
key: 'fullHeight',
|
||||
label: 'full height',
|
||||
|
@ -64,6 +64,7 @@ module.exports = (store) => {
|
||||
const outline = document.querySelector('.outliner');
|
||||
if (!outline) return;
|
||||
outline.textContent = '';
|
||||
if (store.lined) outline.setAttribute('lined', '');
|
||||
|
||||
const pageContent = document.querySelector('.notion-page-content');
|
||||
const headerBlocks = pageContent.querySelectorAll('[class*="header-block"]');
|
||||
@ -77,7 +78,6 @@ module.exports = (store) => {
|
||||
placeholder="${placeholder}">${block.innerText}</a>
|
||||
</div>
|
||||
`);
|
||||
|
||||
outline.append(header);
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user