mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
prevent the outliner's styles from being overriden
This commit is contained in:
parent
790dac681c
commit
b04e3dc5f7
@ -37,21 +37,18 @@
|
|||||||
|
|
||||||
.outline-header a:empty:before {
|
.outline-header a:empty:before {
|
||||||
color: var(--theme--text_ui_info);
|
color: var(--theme--text_ui_info);
|
||||||
content: attr(placeholder);
|
content: attr(outline-placeholder);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.outline-header.notion-header-block a {
|
|
||||||
text-indent: 0;
|
.outline-header[header-level="2"] a {
|
||||||
}
|
|
||||||
.outline-header.notion-sub_header-block a {
|
|
||||||
text-indent: 18px;
|
text-indent: 18px;
|
||||||
}
|
}
|
||||||
.outline-header.notion-sub_sub_header-block a {
|
.outline-header[header-level="3"] a {
|
||||||
text-indent: 36px;
|
text-indent: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outliner[lined] .notion-sub_header-block::before,
|
.outliner[lined] .outline-header:not([header-level="1"])::before {
|
||||||
.outliner[lined] .notion-sub_sub_header-block::before {
|
|
||||||
content: "";
|
content: "";
|
||||||
border-left: solid 1px var(--theme--text_ui_info);
|
border-left: solid 1px var(--theme--text_ui_info);
|
||||||
height: 2.2em;
|
height: 2.2em;
|
||||||
@ -60,7 +57,7 @@
|
|||||||
left: 18px;
|
left: 18px;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
.outliner[lined] .notion-sub_sub_header-block::before {
|
.outliner[lined] .outline-header[header-level="3"]::before {
|
||||||
border-right: solid 1px var(--theme--text_ui_info);
|
border-right: solid 1px var(--theme--text_ui_info);
|
||||||
width: 18px;
|
width: 18px;
|
||||||
}
|
}
|
||||||
|
@ -73,9 +73,9 @@ module.exports = (store) => {
|
|||||||
const blockId = block.dataset.blockId.replace(/-/g, '');
|
const blockId = block.dataset.blockId.replace(/-/g, '');
|
||||||
const placeholder = block.querySelector('[placeholder]').getAttribute('placeholder');
|
const placeholder = block.querySelector('[placeholder]').getAttribute('placeholder');
|
||||||
const header = createElement(`
|
const header = createElement(`
|
||||||
<div class="outline-header ${block.classList[1]}">
|
<div class="outline-header" header-level="${placeholder.slice(-1)}">
|
||||||
<a href="${window.location.pathname}#${blockId}"
|
<a href="${window.location.pathname}#${blockId}"
|
||||||
placeholder="${placeholder}">${block.innerText}</a>
|
outline-placeholder="${placeholder}">${block.innerText}</a>
|
||||||
</div>
|
</div>
|
||||||
`);
|
`);
|
||||||
outline.append(header);
|
outline.append(header);
|
||||||
|
Loading…
Reference in New Issue
Block a user