fix #59 + clarity improvements

This commit is contained in:
dragonwocky 2020-08-28 22:37:46 +10:00
parent b94c8e7b77
commit ab7771cba9
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
13 changed files with 51 additions and 169 deletions

View File

@ -30,7 +30,6 @@ download:
```sh
git clone https://github.com/dragonwocky/notion-enhancer
cd notion-enhancer
git checkout js
npm link
```

View File

@ -15,7 +15,7 @@ for support, join the [discord server](https://discord.gg/sFWPXtA).
_to understand best how notion's app works, check out [the electron docs](https://www.electronjs.org/docs/),_
_explore the contents of your local extracted `app.asar`, and navigate the html structure with the devtools web inspector._
_look through [the existing modules](https://github.com/dragonwocky/notion-enhancer/tree/js/mods/)_
_look through [the existing modules](https://github.com/dragonwocky/notion-enhancer/tree/HEAD/mods/)_
_for examples of the stuff described below in action._
_at the moment, for ease of development and use (and security assurance), there's no way for users_

View File

@ -17,14 +17,25 @@ for support, join the [discord server](https://discord.gg/sFWPXtA).
**coming from <= v0.7.0? things are a bit different - have a read of [the update guide](UPDATING.md)**
**before following these instructions.**
1. install node.js: [windows/macOS](https://nodejs.org/en/download/), [linux/WSL](https://github.com/mklement0/n-install).
on arch linux? use the aur package:
[https://aur.archlinux.org/packages/notion-enhancer](https://aur.archlinux.org/packages/notion-enhancer)
otherwise:
1. install node.js: [windows/macOS](https://nodejs.org/en/download/), linux/WSL:
```bash
curl -sL https://deb.nodesource.com/setup_current.x | sudo -E bash -
sudo apt-get install -y nodejs
```
_a computer restart may be required here._
2. install the enhancer globally: run `npm i -g notion-enhancer` in the terminal/command prompt.
3. make sure no notion processes are running (check the task manager!), and apply the hack:
run `notion-enhancer apply` in the terminal/command prompt.
2. make sure no notion processes are running (check the task manager!), and install the enhancer globally: run `npm i -g notion-enhancer` in the terminal/command prompt.
### command-line interface
the enhancements should be automatically applied on installation
and automatically removed on uninstallation.
if you want to do things yourself, though, you can.
```
Usage:
$ notion-enhancer <command> [options]

View File

@ -9,7 +9,7 @@ rewrite and overhaul: now this is a program that makes use of a number of module
## installation dependencies
previously, python and the node.js `asar` package were both required.
previously, python and the node.js `asar` package both had to be manually installed.
node.js is the only current requirement of the enhancer.
- python is no longer a dependency: keep it, get rid of it - up to you.

View File

@ -25,6 +25,7 @@
--theme--font_heading3-size: var(--theme_dark--font_heading3-size);
--theme--font_label-size: var(--theme_dark--font_label-size);
--theme--font_body-size: var(--theme_dark--font_body-size);
--theme--font_body-size_small: var(--theme_dark--font_body-size_small);
--theme--font_code-size: var(--theme_dark--font_code-size);
--theme--font_sidebar-size: var(--theme_dark--font_sidebar-size);
--theme--scrollbar: var(--theme_dark--scrollbar);
@ -125,6 +126,7 @@
--theme--font_heading3-size: var(--theme_light--font_heading3-size);
--theme--font_label-size: var(--theme_light--font_label-size);
--theme--font_body-size: var(--theme_light--font_body-size);
--theme--font_body-size_small: var(--theme_light--font_body-size_small);
--theme--font_code-size: var(--theme_light--font_code-size);
--theme--font_sidebar-size: var(--theme_light--font_sidebar-size);
--theme--scrollbar: var(--theme_light--scrollbar);

View File

@ -164,13 +164,19 @@
font-size: var(--theme--font_title-size) !important;
}
[placeholder='Heading 1'] {
font-size: var(--theme--font_heading1-size) !important;
font-size: calc(
var(--theme--font_body-size) * (var(--theme--font_heading1-size) / 1em)
) !important;
}
[placeholder='Heading 2'] {
font-size: var(--theme--font_heading2-size) !important;
font-size: calc(
var(--theme--font_body-size) * (var(--theme--font_heading2-size) / 1em)
) !important;
}
[placeholder='Heading 3'] {
font-size: var(--theme--font_heading3-size) !important;
font-size: calc(
var(--theme--font_body-size) * (var(--theme--font_heading3-size) / 1em)
) !important;
}
.notion-frame .notion-scroller.vertical.horizontal [style*='font-size: 14px'] {
font-size: var(--theme--font_label-size) !important;
@ -178,6 +184,11 @@
.notion-frame .notion-scroller.vertical.horizontal .notion-page-content {
font-size: var(--theme--font_body-size) !important;
}
.notion-frame
.notion-scroller.vertical.horizontal
.notion-page-content[style*='font-size: 14px'] {
font-size: var(--theme--font_body-size_small) !important;
}
.notion-code-block [placeholder=' '] {
font-size: var(--theme--font_code-size) !important;
}

View File

@ -30,12 +30,13 @@
Courier, monospace;
--theme_dark--font_title-size: 40px;
--theme_dark--font_heading1-size: 30px;
--theme_dark--font_heading2-size: 24px;
--theme_dark--font_heading3-size: 20px;
--theme_dark--font_heading1-size: 1.875em;
--theme_dark--font_heading2-size: 1.5em;
--theme_dark--font_heading3-size: 1.25em;
--theme_dark--font_label-size: 14px;
--theme_dark--font_body-size: 16px;
--theme_dark--font_code-size: 12.75px;
--theme_dark--font_body-size_small: 14px;
--theme_dark--font_code-size: 0.796875em;
--theme_dark--font_sidebar-size: 14px;
--theme_dark--scrollbar: #505457;
@ -143,12 +144,13 @@
Courier, monospace;
--theme_light--font_title-size: 40px;
--theme_light--font_heading1-size: 30px;
--theme_light--font_heading2-size: 24px;
--theme_light--font_heading3-size: 20px;
--theme_light--font_heading1-size: 1.875em;
--theme_light--font_heading2-size: 1.5em;
--theme_light--font_heading3-size: 1.25em;
--theme_light--font_label-size: 14px;
--theme_light--font_body-size: 16px;
--theme_light--font_code-size: 12.75px;
--theme_light--font_body-size_small: 14px;
--theme_light--font_code-size: 0.796875em;
--theme_light--font_sidebar-size: 14px;
--theme_light--scrollbar: #d9d8d6;

View File

@ -17,6 +17,7 @@
"--theme--font_heading3-size",
"--theme--font_label-size",
"--theme--font_body-size",
"--theme--font__small",
"--theme--font_code-size",
"--theme--font_sidebar-size",
"--theme--scrollbar",

View File

@ -7,30 +7,7 @@
:root {
--theme_dark--main: rgb(5, 5, 5);
--theme_dark--sidebar: rgb(1, 1, 1);
/* --theme_dark--overlay: rgba(15, 15, 15, 0.6); */
--theme_dark--dragarea: #000;
/* --theme_dark--preview-width: 977px;
--theme_dark--preview-padding: 8rem;
--theme_dark--preview_banner-height: 20vh;
--theme_dark--page_banner-height: 30vh; */
/* --theme_dark--font_sans: -apple-system, BlinkMacSystemFont, 'Segoe UI',
Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji',
'Segoe UI Symbol';
--theme_dark--font_serif: Lyon-Text, Georgia, YuMincho, 'Yu Mincho',
'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Songti TC', 'Songti SC',
SimSun, 'Nanum Myeongjo', NanumMyeongjo, Batang, serif;
--theme_dark--font_mono: iawriter-mono, Nitti, Menlo, Courier, monospace;
--theme_dark--font_code: SFMono-Regular, Consolas, 'Liberation Mono', Menlo,
Courier, monospace; */
/* --theme_dark--font_title-size: 40px;
--theme_dark--font_heading1-size: 30px;
--theme_dark--font_heading2-size: 24px;
--theme_dark--font_heading3-size: 20px;
--theme_dark--font_label-size: 14px;
--theme_dark--font_body-size: 16px;
--theme_dark--font_code-size: 12.75px; */
--theme_dark--scrollbar: #23242599;
--theme_dark--scrollbar-border: transparent;
@ -40,25 +17,9 @@
--theme_dark--gallery: rgba(26, 26, 26, 0.3);
--theme_dark--table-border: rgba(46, 46, 46, 0.7);
--theme_dark--interactive_hover: #020202;
/* --theme_dark--interactive_hover-border: transparent;
--theme_dark--button_close: #e81123;
--theme_dark--button_close-fill: white; */
/* --theme_dark--option-color: white;
--theme_dark--option-background: transparent;
--theme_dark--option_active-color: white;
--theme_dark--option_active-background: var(--theme_dark--primary);
--theme_dark--option_hover-color: white; */
--theme_dark--option_hover-background: rgb(32, 32, 32);
/* --theme_dark--danger_text: rgb(235, 87, 87);
--theme_dark--danger_border: rgba(235, 87, 87, 0.5); */
/* --theme_dark--font_title-size: 40px;
--theme_dark--font_heading1-size: 30px;
--theme_dark--font_heading2-size: 24px;
--theme_dark--font_heading3-size: 20px; */
--theme_dark--text: rgb(228, 228, 228);
--theme_dark--text_ui: rgba(211, 211, 211, 0.637);
--theme_dark--text_ui_info: rgba(211, 211, 211, 0.466);
@ -73,7 +34,6 @@
--theme_dark--text_pink: rgb(226, 85, 161);
--theme_dark--text_red: rgb(218, 47, 35);
/* --theme_dark--bg_text: var(--theme_dark--text); */
--theme_dark--bg_gray: rgba(126, 128, 129, 0.5);
--theme_dark--bg_brown: #50331f;
--theme_dark--bg_orange: rgba(255, 155, 0, 0.58);
@ -84,7 +44,6 @@
--theme_dark--bg_pink: rgba(243, 61, 159, 0.5);
--theme_dark--bg_red: rgb(122, 20, 20);
/* --theme_dark--line_text: var(--theme_dark--text); */
--theme_dark--line_gray: rgba(126, 128, 129, 0.301);
--theme_dark--line_brown: #50331fad;
--theme_dark--line_orange: rgba(255, 153, 0, 0.315);
@ -97,7 +56,6 @@
--theme_dark--code_inline-text: #7dc582;
--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;
--theme_dark--code_keyword: #c397d8;

View File

@ -10,44 +10,22 @@
:root {
--theme_dark--main: #1e1c26;
--theme_dark--sidebar: #24222c;
/* --theme_dark--overlay: rgba(15, 15, 15, 0.6); */
--theme_dark--dragarea: #19181f;
/* --theme_dark--preview-width: 977px;
--theme_dark--preview-padding: 8rem;
--theme_dark--preview_banner-height: 20vh;
--theme_dark--page_banner-height: 30vh; */
--theme_dark--font_sans: 'Offside', -apple-system, BlinkMacSystemFont,
'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif,
'Segoe UI Emoji', 'Segoe UI Symbol';
/* --theme_dark--font_serif: Lyon-Text, Georgia, YuMincho, 'Yu Mincho',
'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Songti TC', 'Songti SC',
SimSun, 'Nanum Myeongjo', NanumMyeongjo, Batang, serif; */
--theme_dark--font_mono: 'DM Mono', iawriter-mono, Nitti, Menlo, Courier,
monospace;
--theme_dark--font_code: 'DM Mono', SFMono-Regular, Consolas,
'Liberation Mono', Menlo, Courier, monospace;
/* --theme_dark--font_title-size: 40px;
--theme_dark--font_heading1-size: 30px;
--theme_dark--font_heading2-size: 24px;
--theme_dark--font_heading3-size: 20px;
--theme_dark--font_label-size: 14px;
--theme_dark--font_body-size: 16px;
--theme_dark--font_code-size: 12.75px;
--theme_dark--font_sidebar-size: 14px; */
--theme_dark--scrollbar: #221f29;
/* --theme_dark--scrollbar-border: transparent; */
--theme_dark--scrollbar_hover: #312d3c;
/* --theme_dark--card: rgb(53, 51, 58); */
--theme_dark--gallery: rgba(162, 162, 162, 0.01);
--theme_dark--table-border: rgba(148, 148, 184, 0.5);
--theme_dark--interactive_hover: #282632;
/* --theme_dark--interactive_hover-border: transparent;
--theme_dark--button_close: #e81123;
--theme_dark--button_close-fill: white; */
--theme_dark--selected: rgba(85, 68, 156, 0.3);
--theme_dark--primary: rgb(106, 47, 200);
@ -55,11 +33,6 @@
--theme_dark--primary_click: rgb(117, 65, 200);
--theme_dark--primary_indicator: rgb(150, 84, 226);
/* --theme_dark--option-color: white;
--theme_dark--option-background: transparent;
--theme_dark--option_active-color: white;
--theme_dark--option_active-background: var(--theme_dark--primary);
--theme_dark--option_hover-color: white; */
--theme_dark--option_hover-background: rgb(20, 0, 51);
--theme_dark--danger_text: rgb(235, 87, 87);
@ -71,54 +44,20 @@
--theme_dark--text_gray: rgba(151, 154, 155, 0.95);
--theme_dark--text_brown: rgb(112, 87, 77);
/* --theme_dark--text_orange: rgb(255, 163, 68); */
--theme_dark--text_yellow: #ffe529;
--theme_dark--text_green: #64d97b;
/* --theme_dark--text_blue: rgb(82, 156, 202); */
--theme_dark--text_purple: #d43cc7;
/* --theme_dark--text_pink: rgb(226, 85, 161); */
--theme_dark--text_red: #d93939;
/* --theme_dark--bg_text: var(--theme_dark--text);
--theme_dark--bg_gray: rgba(151, 154, 155, 0.5);
--theme_dark--bg_brown: rgba(147, 114, 100, 0.5);
--theme_dark--bg_orange: rgba(255, 163, 68, 0.5);
--theme_dark--bg_yellow: rgba(255, 220, 73, 0.5);
--theme_dark--bg_green: rgba(77, 171, 154, 0.5);
--theme_dark--bg_blue: rgba(82, 156, 202, 0.5);
--theme_dark--bg_purple: rgba(154, 109, 215, 0.5);
--theme_dark--bg_pink: rgba(226, 85, 161, 0.5); */
--theme_dark--bg_red: rgba(216, 57, 46, 0.5);
/* --theme_dark--line_text: var(--theme_dark--text);
--theme_dark--line_gray: rgb(69, 75, 78); */
--theme_dark--line_brown: rgb(78, 57, 48);
--theme_dark--line_orange: rgb(136, 80, 48);
--theme_dark--line_yellow: #fbe2287c;
/* --theme_dark--line_green: rgb(53, 76, 75);
--theme_dark--line_blue: rgb(54, 73, 84);
--theme_dark--line_purple: rgb(68, 63, 87);
--theme_dark--line_pink: rgb(83, 59, 76); */
--theme_dark--line_red: rgb(151, 62, 62);
--theme_dark--code_inline-text: #d9cbec;
--theme_dark--code_inline-background: #24222c;
/* --theme_dark--code_text: var(--theme_dark--text); */
--theme_dark--code-background: #24222c;
/* --theme_dark--code_function: rgba(255, 255, 255, 0.9);
--theme_dark--code_keyword: hsl(350, 40%, 70%);
--theme_dark--code_tag: hsl(350, 40%, 70%);
--theme_dark--code_operator: hsl(40, 90%, 60%);
--theme_dark--code_important: #e90;
--theme_dark--code_property: hsl(350, 40%, 70%);
--theme_dark--code_builtin: hsl(75, 70%, 60%);
--theme_dark--code_attr-name: hsl(75, 70%, 60%);
--theme_dark--code_comment: hsl(30, 20%, 50%);
--theme_dark--code_punctuation: rgba(255, 255, 255, 0.9);
--theme_dark--code_doctype: hsl(30, 20%, 50%);
--theme_dark--code_number: hsl(350, 40%, 70%);
--theme_dark--code_string: hsl(75, 70%, 60%);
--theme_dark--code_attr-value: hsl(350, 40%, 70%); */
}
.notion-dark-theme

View File

@ -15,17 +15,10 @@
--theme_dark--sidebar: #171717;
--theme_dark--overlay: rgba(15, 15, 15, 0.6);
--theme_dark--dragarea: #111111;
/* --theme_dark--preview-width: 977px;
--theme_dark--preview-padding: 8rem;
--theme_dark--preview_banner-height: 20vh;
--theme_dark--page_banner-height: 30vh; */
--theme_dark--font_sans: 'Inter', -apple-system, BlinkMacSystemFont,
'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif,
'Segoe UI Emoji', 'Segoe UI Symbol';
/* --theme_dark--font_serif: Lyon-Text, Georgia, YuMincho, 'Yu Mincho',
'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Songti TC', 'Songti SC',
SimSun, 'Nanum Myeongjo', NanumMyeongjo, Batang, serif; */
--theme_dark--font_mono: 'Roboto Mono', iawriter-mono, Nitti, Menlo, Courier,
monospace;
--theme_dark--font_code: 'Roboto Mono', SFMono-Regular, Consolas,
@ -33,12 +26,13 @@
/* 1.3 supreme ratio. https://www.modularscale.com/ */
--theme_dark--font_title-size: 33px;
--theme_dark--font_heading1-size: 33px;
--theme_dark--font_heading2-size: 25.3px;
--theme_dark--font_heading3-size: 19.5px;
--theme_dark--font_label-size: 13px;
--theme_dark--font_heading1-size: 2.2em;
--theme_dark--font_heading2-size: 1.687em;
--theme_dark--font_heading3-size: 1.3em;
--theme_dark--font_label-size: 14px;
--theme_dark--font_body-size: 15px;
--theme_dark--font_code-size: 13.5px;
--theme_dark--font_body-size_small: 13.5px;
--theme_dark--font_code-size: 0.9em;
--theme_dark--font_sidebar-size: 14px;
--theme_dark--scrollbar: #232425;
@ -49,9 +43,6 @@
--theme_dark--gallery: rgba(105, 105, 105, 0.05);
--theme_dark--table-border: rgba(78, 78, 78, 0.7);
--theme_dark--interactive_hover: rgb(29, 29, 29);
/* --theme_dark--interactive_hover-border: transparent;
--theme_dark--button_close: #e81123;
--theme_dark--button_close-fill: white; */
--theme_dark--selected: #52525244;
--theme_dark--primary: #404040;
@ -59,11 +50,6 @@
--theme_dark--primary_click: #cacaca;
--theme_dark--primary_indicator: #6d6d6d;
/* --theme_dark--option-color: white;
--theme_dark--option-background: transparent;
--theme_dark--option_active-color: white;
--theme_dark--option_active-background: var(--theme_dark--primary);
--theme_dark--option_hover-color: white; */
--theme_dark--option_hover-background: #484848;
--theme_dark--danger_text: #ce535f;
@ -83,7 +69,6 @@
--theme_dark--text_pink: #d285aa;
--theme_dark--text_red: #ce535f;
/* --theme_dark--bg_text: var(--theme_dark--text); */
--theme_dark--bg_gray: #585858;
--theme_dark--bg_brown: #333333;
--theme_dark--bg_orange: #9a5a3f;
@ -94,7 +79,6 @@
--theme_dark--bg_pink: #8e4b63;
--theme_dark--bg_red: #8c3d3d;
/* --theme_dark--line_text: var(--theme_dark--text); */
--theme_dark--line_gray: #585858;
--theme_dark--line_brown: #333333;
--theme_dark--line_orange: #9a5a3f;

View File

@ -12,41 +12,19 @@
--theme_dark--sidebar: #0f0f0f;
--theme_dark--overlay: rgba(15, 15, 15, 0.6);
--theme_dark--dragarea: #0d0d0d;
/* --theme_dark--preview-width: 977px;
--theme_dark--preview-padding: 8rem;
--theme_dark--preview_banner-height: 20vh;
--theme_dark--page_banner-height: 30vh; */
--theme_dark--font_sans: 'Inter', -apple-system, BlinkMacSystemFont,
'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif,
'Segoe UI Emoji', 'Segoe UI Symbol';
/* --theme_dark--font_serif: Lyon-Text, Georgia, YuMincho, 'Yu Mincho',
'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Songti TC', 'Songti SC',
SimSun, 'Nanum Myeongjo', NanumMyeongjo, Batang, serif;
--theme_dark--font_mono: iawriter-mono, Nitti, Menlo, Courier, monospace;
--theme_dark--font_code: SFMono-Regular, Consolas, 'Liberation Mono', Menlo,
Courier, monospace; */
/* --theme_dark--font_title-size: 40px;
--theme_dark--font_heading1-size: 30px;
--theme_dark--font_heading2-size: 24px;
--theme_dark--font_heading3-size: 20px;
--theme_dark--font_label-size: 14px;
--theme_dark--font_body-size: 16px;
--theme_dark--font_code-size: 12.75px;
--theme_dark--font_sidebar-size: 14px; */
--theme_dark--scrollbar: #141414;
/* --theme_dark--scrollbar-border: transparent; */
--theme_dark--scrollbar_hover: #1b1b1b;
--theme_dark--card: #0f0f0f;
--theme_dark--gallery: rgba(8, 8, 8, 0.05);
--theme_dark--table-border: rgba(255, 255, 255, 0.1);
--theme_dark--interactive_hover: #1e1e1e5c;
/* --theme_dark--interactive_hover-border: transparent; */
--theme_dark--button_close: #eb5757;
/* --theme_dark--button_close-fill: white; */
--theme_dark--selected: rgba(184, 135, 247, 0.3);
--theme_dark--primary: #b887f7;
@ -54,11 +32,7 @@
--theme_dark--primary_click: #b887f7;
--theme_dark--primary_indicator: #08d7c2;
/* --theme_dark--option-color: white;
--theme_dark--option-background: transparent;
--theme_dark--option_active-color: white; */
--theme_dark--option_active-background: var(--theme_dark--primary);
/* --theme_dark--option_hover-color: white; */
--theme_dark--option_hover-background: var(--theme_dark--primary_hover);
--theme_dark--danger_text: #eb5757;

View File

@ -8,6 +8,7 @@
},
"scripts": {
"test": "echo \"no test specified\"",
"postinstall": "notion-enhancer apply -y",
"preuninstall": "notion-enhancer remove -y"
},
"repository": {