Modified tweak: Indentation lines (#215)

* Update mod.js

Changed indentation lines to a select option

* Update styles.css

Styling for each line type

* Update mod.js

Re-added description

* Update mod.js

Added a description to the scroll database toolbars tweak
This commit is contained in:
Ryo Hilmawan 2020-11-06 10:01:19 +07:00 committed by GitHub
parent 50fcc2604b
commit 29be14801c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 6 deletions

View File

@ -78,12 +78,17 @@ module.exports = {
key: 'indentation_lines', key: 'indentation_lines',
label: 'indentation lines for bullets', label: 'indentation lines for bullets',
desc: desc:
"adds vertical indentation/relationship lines to make bullet trees\ "adds vertical indentation or relationship lines to make bullet trees\
easier to follow", easier to follow",
type: 'select',
value: ['none', 'solid', 'dashed', 'dotted', 'soft'],
}, },
{ {
key: 'scroll_db_toolbars', key: 'scroll_db_toolbars',
label: 'scroll database toolbars', label: 'scroll database toolbars',
desc:
"allows scrolling database toolbars horizontally if\
part of the toolbar is hidden (hold shift while scrolling)",
type: 'toggle', type: 'toggle',
value: false, value: false,
}, },
@ -99,7 +104,6 @@ module.exports = {
'spaced_lines', 'spaced_lines',
'hide_help', 'hide_help',
'condensed_bullets', 'condensed_bullets',
'indentation_lines',
'scroll_db_toolbars' 'scroll_db_toolbars'
] ]
.filter((tweak) => store()[tweak]) .filter((tweak) => store()[tweak])
@ -119,6 +123,9 @@ module.exports = {
}; };
window.addEventListener('resize', addResponsiveBreakpoint); window.addEventListener('resize', addResponsiveBreakpoint);
addResponsiveBreakpoint(); addResponsiveBreakpoint();
if (store().indentation_lines !== 'none') {
document.body.dataset.tweaks += `[indentation_lines_${store().indentation_lines}]`
}
}); });
}, },
}, },

View File

@ -54,10 +54,30 @@
margin-bottom: -1.5px !important; margin-bottom: -1.5px !important;
} }
[data-tweaks*='[indentation_lines]'] [data-tweaks*='[indentation_lines']
div.notion-selectable.notion-bulleted_list-block div.notion-selectable.notion-bulleted_list-block > div > div:last-child {
> div > div > div.notion-selectable.notion-bulleted_list-block { position: relative;
border-left: 1px dashed var(--theme--text_ui_info); }
[data-tweaks*='[indentation_lines']
div.notion-selectable.notion-bulleted_list-block > div > div:last-child::before {
content: "";
position: absolute;
height: calc(100% - 2em);
top: 2em;
left: -14.48px;
border-left: 1px solid;
}
[data-tweaks*='[indentation_lines_dashed]']
div.notion-selectable.notion-bulleted_list-block > div > div:last-child::before {
border-left-style: dashed;
}
[data-tweaks*='[indentation_lines_dotted]']
div.notion-selectable.notion-bulleted_list-block > div > div:last-child::before {
border-left-style: dotted;
}
[data-tweaks*='[indentation_lines_soft]']
div.notion-selectable.notion-bulleted_list-block > div > div:last-child::before {
opacity: 0.25;
} }
[data-tweaks*='[scroll_db_toolbars]'] .notion-frame > .notion-scroller > [style*="overflow: visible;"], [data-tweaks*='[scroll_db_toolbars]'] .notion-frame > .notion-scroller > [style*="overflow: visible;"],