diff --git a/mods/core/css/dark.css b/mods/core/css/dark.css index aa3fb40..6ee5bc1 100644 --- a/mods/core/css/dark.css +++ b/mods/core/css/dark.css @@ -27,6 +27,22 @@ .notion-dark-theme .notion-peek-renderer > div:nth-child(2) { max-width: var(--theme_dark--preview-width) !important; } +.notion-dark-theme + .notion-peek-renderer + .notion-scroller.vertical + > div:nth-child(1) + > div, +.notion-dark-theme + .notion-peek-renderer + .notion-scroller.vertical + > div:nth-child(2), +.notion-dark-theme .notion-peek-renderer .notion-page-view-discussion, +.notion-dark-theme .notion-peek-renderer .notion-page-content { + padding-left: var(--theme_dark--preview-padding) !important; + padding-right: var(--theme_dark--preview-padding) !important; + width: 100%; +} + .notion-dark-theme .notion-peek-renderer .notion-scroller.vertical diff --git a/mods/core/css/light.css b/mods/core/css/light.css index 3851111..c27423e 100644 --- a/mods/core/css/light.css +++ b/mods/core/css/light.css @@ -28,6 +28,22 @@ .notion-light-theme .notion-peek-renderer > div:nth-child(2) { max-width: var(--theme_light--preview-width) !important; } +.notion-light-theme + .notion-peek-renderer + .notion-scroller.vertical + > div:nth-child(1) + > div, +.notion-light-theme + .notion-peek-renderer + .notion-scroller.vertical + > div:nth-child(2), +.notion-light-theme .notion-peek-renderer .notion-page-view-discussion, +.notion-light-theme .notion-peek-renderer .notion-page-content { + padding-left: var(--theme_light--preview-padding) !important; + padding-right: var(--theme_light--preview-padding) !important; + width: 100%; +} + .notion-light-theme .notion-peek-renderer .notion-scroller.vertical @@ -316,7 +332,7 @@ color: var(--theme_light--code_operator) !important; } .notion-light-theme .notion-code-block .token.important { - color: var(--theme_dark--code_important) !important; + color: var(--theme_light--code_important) !important; } .notion-light-theme .notion-code-block .token.property { color: var(--theme_light--code_property) !important; diff --git a/mods/core/css/menu.css b/mods/core/css/menu.css index 29ad6d7..27400b9 100644 --- a/mods/core/css/menu.css +++ b/mods/core/css/menu.css @@ -220,7 +220,7 @@ s { margin-right: 0.5em; } #search #tags > .selected { - background: var(--tag_colour, var(--theme_local--primary_click)); + background: var(--tag_colour, var(--theme_local--primary_hover)); } /* module meta */ diff --git a/mods/core/css/shared.css b/mods/core/css/shared.css index 6a15788..25ea068 100644 --- a/mods/core/css/shared.css +++ b/mods/core/css/shared.css @@ -62,3 +62,16 @@ .notion-collection_view_page-block [role='button'] { border-width: 0 !important; } + +/* patch inconsistent padding behaviour in preview */ +.notion-peek-renderer .notion-page-content [style*='max-width: 943px;'] { + max-width: none !important; +} +.notion-peek-renderer .notion-page-view-discussion > div { + padding-left: 0 !important; + padding-right: 0 !important; +} +.notion-peek-renderer .notion-scroller.vertical > div:nth-child(2) > div { + padding-left: 15px !important; + padding-right: 15px !important; +} diff --git a/mods/core/css/variables.css b/mods/core/css/variables.css index 13db140..6afdd5c 100644 --- a/mods/core/css/variables.css +++ b/mods/core/css/variables.css @@ -15,6 +15,7 @@ --theme_dark--overlay: rgba(15, 15, 15, 0.6); --theme_dark--dragarea: #272d2f; --theme_dark--preview-width: 977px; + --theme_dark--preview-padding: 8em; --theme_dark--preview_banner-height: 20vh; --theme_dark--page_banner-height: 30vh; @@ -113,6 +114,7 @@ --theme_light--overlay: rgba(15, 15, 15, 0.6); --theme_light--dragarea: rgba(55, 53, 47, 0.04); --theme_light--preview-width: 977px; + --theme_light--preview-padding: 8em; --theme_light--preview_banner-height: 20vh; --theme_light--page_banner-height: 30vh; diff --git a/mods/core/menu.js b/mods/core/menu.js index daa97fc..2fad8db 100644 --- a/mods/core/menu.js +++ b/mods/core/menu.js @@ -180,13 +180,13 @@ window['__start'] = async () => { } createTag( 'enabled', - (state) => [(search_query.enabled = state), search()], - 'var(--theme_local--bg_green)' + (state) => [(search_query.enabled = state), search()] + // 'var(--theme_local--bg_green)' ); createTag( 'disabled', - (state) => [(search_query.disabled = state), search()], - 'var(--theme_local--bg_red)' + (state) => [(search_query.disabled = state), search()] + // 'var(--theme_local--bg_red)' ); for (let tag of search_query.tags) createTag(`#${tag}`, (state) => [ diff --git a/mods/core/tray.js b/mods/core/tray.js index 4e98c60..15dae19 100644 --- a/mods/core/tray.js +++ b/mods/core/tray.js @@ -159,6 +159,12 @@ module.exports = (store, __exports) => { }, accelerator: 'CommandOrControl+Shift+N', }, + { + type: 'normal', + label: 'Toggle Visibility', + accelerator: store().hotkey, + click: toggleWindows, + }, { type: 'separator', }, @@ -182,12 +188,13 @@ module.exports = (store, __exports) => { windows.forEach((win) => [win.isFocused() && win.blur(), win.hide()]); if (is_mac) electron.app.hide(); } - - tray.on('click', () => { + function toggleWindows() { const windows = electron.BrowserWindow.getAllWindows(); if (windows.some((win) => win.isVisible())) hideWindows(); else showWindows(); - }); + } + + tray.on('click', toggleWindows); electron.globalShortcut.register(store().hotkey, () => { const windows = electron.BrowserWindow.getAllWindows(); if (windows.some((win) => win.isFocused() && win.isVisible())) diff --git a/mods/dark+/styles.css b/mods/dark+/styles.css index 7ae0081..d65ea46 100644 --- a/mods/dark+/styles.css +++ b/mods/dark+/styles.css @@ -46,9 +46,9 @@ --theme_dark--todo_ticked: currentColor; --theme_dark--todo_ticked-fill: white; --theme_dark--todo_ticked-background: var(--theme_dark--primary); - --theme_dark--todo_hover-background: rgb(71, 76, 80); + --theme_dark--todo_hover-background: rgb(71, 76, 80); */ - --theme_dark--danger_text: rgb(235, 87, 87); + /* --theme_dark--danger_text: rgb(235, 87, 87); --theme_dark--danger_border: rgba(235, 87, 87, 0.5); */ --theme_dark--text: rgb(228, 228, 228); @@ -84,7 +84,7 @@ --theme_dark--line_red: rgba(122, 20, 20, 0.623); --theme_dark--code_inline-text: #7dc582; - --theme_dark--code_inline-background: rgb(8, 8, 8) + --theme_dark--code_inline-background: rgb(8, 8, 8); --theme_dark--code_text: var(--theme_dark--text); --theme_dark--code-background: rgb(8, 8, 8); --theme_dark--code_function: #c7e1ff;