diff --git a/mods/tweaks/mod.js b/mods/tweaks/mod.js index e753536..c514e56 100644 --- a/mods/tweaks/mod.js +++ b/mods/tweaks/mod.js @@ -78,12 +78,17 @@ module.exports = { key: 'indentation_lines', label: 'indentation lines for bullets', desc: - "adds vertical indentation/relationship lines to make bullet trees\ + "adds vertical indentation or relationship lines to make bullet trees\ easier to follow", + type: 'select', + value: ['none', 'solid', 'dashed', 'dotted', 'soft'], }, { key: 'scroll_db_toolbars', label: 'scroll database toolbars', + desc: + "allows scrolling database toolbars horizontally if\ + part of the toolbar is hidden (hold shift while scrolling)", type: 'toggle', value: false, }, @@ -99,7 +104,6 @@ module.exports = { 'spaced_lines', 'hide_help', 'condensed_bullets', - 'indentation_lines', 'scroll_db_toolbars' ] .filter((tweak) => store()[tweak]) @@ -119,6 +123,9 @@ module.exports = { }; window.addEventListener('resize', addResponsiveBreakpoint); addResponsiveBreakpoint(); + if (store().indentation_lines !== 'none') { + document.body.dataset.tweaks += `[indentation_lines_${store().indentation_lines}]` + } }); }, }, diff --git a/mods/tweaks/styles.css b/mods/tweaks/styles.css index 218d0e2..15013eb 100644 --- a/mods/tweaks/styles.css +++ b/mods/tweaks/styles.css @@ -54,10 +54,30 @@ margin-bottom: -1.5px !important; } -[data-tweaks*='[indentation_lines]'] - div.notion-selectable.notion-bulleted_list-block - > div > div > div.notion-selectable.notion-bulleted_list-block { - border-left: 1px dashed var(--theme--text_ui_info); +[data-tweaks*='[indentation_lines'] +div.notion-selectable.notion-bulleted_list-block > div > div:last-child { + position: relative; +} +[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;"],