diff --git a/CHANGELOG.md b/CHANGELOG.md index 0acf273..c98ffe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,14 @@ but can still easily be enabled by following instructions in the [docs](README.m - docs: font resizing. - docs: hide discussions (thanks to [u/Roosmaryn](https://www.reddit.com/user/Roosmaryn/)) - new: custom colour theming, demonstrated via the dark+ theme. +- new: linux support (thanks for [@Blacksuan19](https://github.com/Blacksuan19)). - improved: if hotkey is pressed while notion is unfocused, it will bring it to the front rather than hiding it. - bugfix: specify UTF-8 encoding to prevent multibyte/gbk codec errors (thanks to [@etnperlong](https://github.com/etnperlong)) +//todo + +- stop window buttons breaking at smaller widths + ### v0.5.0 (2020-05-23) - new: running from the wsl. diff --git a/Pipfile b/Pipfile index 76d1de2..83d4e3c 100644 --- a/Pipfile +++ b/Pipfile @@ -8,6 +8,7 @@ pylint = "*" autopep8 = "*" [packages] +pyasar = "*" [requires] python_version = "3.6" diff --git a/Pipfile.lock b/Pipfile.lock index 295c423..fdf355f 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "3eeda9cee44e435fe2d016242e4f33fb3f938001bae135ea1618534a36c05e40" + "sha256": "1acd8226b318eb2516f81421b7f90e7c81f2119805d658a5a958e0699a1358d6" }, "pipfile-spec": 6, "requires": { @@ -15,27 +15,37 @@ } ] }, - "default": {}, + "default": { + "pyasar": { + "hashes": [ + "sha256:f96b322ea5c450d129dbe6990e5ba827d1d070e818822c408abffa44058f7f08" + ], + "index": "pypi", + "version": "==1.0.8" + } + }, "develop": { "astroid": { "hashes": [ - "sha256:4c17cea3e592c21b6e222f673868961bad77e1f985cb1694ed077475a89229c1", - "sha256:d8506842a3faf734b81599c8b98dcc423de863adcc1999248480b18bd31a0f38" + "sha256:2f4078c2a41bf377eea06d71c9d2ba4eb8f6b1af2135bec27bbbb7d8f12bb703", + "sha256:bc58d83eb610252fd8de6363e39d4f1d0619c894b0ed24603b881c02e64c7386" ], - "version": "==2.4.1" + "markers": "python_version >= '3.5'", + "version": "==2.4.2" }, "autopep8": { "hashes": [ - "sha256:152fd8fe47d02082be86e05001ec23d6f420086db56b17fc883f3f965fb34954" + "sha256:60fd8c4341bab59963dafd5d2a566e94f547e660b9b396f772afe67d8481dbf0" ], "index": "pypi", - "version": "==1.5.2" + "version": "==1.5.3" }, "isort": { "hashes": [ "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1", "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==4.3.21" }, "lazy-object-proxy": { @@ -62,6 +72,7 @@ "sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4", "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.4.3" }, "mccabe": { @@ -76,21 +87,23 @@ "sha256:2295e7b2f6b5bd100585ebcb1f616591b652db8a741695b3d8f5d28bdc934367", "sha256:c58a7d2815e0e8d7972bf1803331fb0152f867bd89adf8a01dfd55085434192e" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.6.0" }, "pylint": { "hashes": [ - "sha256:b95e31850f3af163c2283ed40432f053acbc8fc6eba6a069cb518d9dbf71848c", - "sha256:dd506acce0427e9e08fb87274bcaa953d38b50a58207170dbf5b36cf3e16957b" + "sha256:7dd78437f2d8d019717dbf287772d0b2dbdfd13fc016aa7faa08d67bccc46adc", + "sha256:d0ece7d223fe422088b0e8f13fa0a1e8eb745ebffcb8ed53d3e95394b6101a1c" ], "index": "pypi", - "version": "==2.5.2" + "version": "==2.5.3" }, "six": { "hashes": [ "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.15.0" }, "toml": { @@ -124,7 +137,7 @@ "sha256:fc0fea399acb12edbf8a628ba8d2312f583bdbdb3335635db062fa98cf71fca4", "sha256:fe460b922ec15dd205595c9b5b99e2f056fd98ae8f9f56b888e7a17dc2b757e7" ], - "markers": "implementation_name == 'cpython' and python_version < '3.8'", + "markers": "python_version < '3.8' and implementation_name == 'cpython'", "version": "==1.4.1" }, "wrapt": { diff --git a/README.md b/README.md index 20a907c..9013949 100644 --- a/README.md +++ b/README.md @@ -2,32 +2,40 @@ an enhancer/customiser for the all-in-one productivity workspace [notion.so](https://www.notion.so/) -_note: this is currently an unreleased version of the enhancer, which adds some cool things like colour theming and improves on some existing features. it is stable, and so has been pushed out for use. once i've done some more fine-tuning and finished taking screenshots of everything i will release this officially as v0.6.0._ +_note: this is currently an unreleased version of the enhancer, which adds some cool things_ +_like colour theming and improves on some existing features. it is stable,_ +_and so has been pushed out for use. once I've done some more fine-tuning_ +_and finished taking screenshots of everything I will release this officially as v0.6.0._ ## installation -currently, both win10 and Linux are supported. it is possible to run this script via the wsl to modify the win10 notion app. +currently, both windows and linux are supported. it is possible to run this script via the WSL to modify the windows notion app. -For Linux install notion from [here](https://github.com/jaredallard/notion-app). Or if you're using arch install [notion-app](https://aur.archlinux.org/packages/notion-app/) package from AUR. +**want macOS to be supported too? let me know, and I can work with you to get it going.** + +for linux users, the notion-app ([arch linux](https://aur.archlinux.org/packages/notion-app/), +[others e.g. ubuntu](https://github.com/jaredallard/notion-app)) package will wrap/run the macOS version of the notion app with electron. (the [styles](#styling) should also work for the web version. these can be installed via an extension like [stylus](https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en) or a built-in feature like [userChrome.css](https://www.userchrome.org/).) -1. install [node.js](https://nodejs.org/en/) (if using the wsl, it is recommended to install via [nvm](https://github.com/nvm-sh/nvm#install--update-script)). -2. install [python](https://www.python.org/) (if using the wsl, follow [this guide](https://docs.python-guide.org/starting/install3/linux/)). +1. install node.js: [windows](https://nodejs.org/en/download/), [linux/WSL](https://github.com/mklement0/n-install). +2. install python: [windows](https://www.python.org/downloads/windows/), [linux/WSL](https://docs.python-guide.org/starting/install3/linux/). 3. reboot. -4. in cmd (on windows) or bash (with wsl), run `npm install -g asar` (check installation by running `asar`). -5. [download this enhancer](https://github.com/dragonwocky/notion-enhancer/archive/master.zip) & extract to a location it can safely remain (this must be in the windows filesystem, - even if you are running the script from the wsl). -6. ensure notion is closed. -7. optional: to remove previous applications of the notion enhancer, run `cleaner.py` +4. in the appropriate terminal/command line, run `npm install -g asar` (check installation by running `asar`). +5. [download this enhancer](https://github.com/dragonwocky/notion-enhancer/archive/master.zip) & extract + to a location it can safely remain (if running the script from the WSL, make sure this is from a location within the windows filesystem). +6. ensure no notion processes are running - you may want to check the task manager to make sure. +7. optional: to remove previous applications of the notion enhancer, run `cleaner.py`. 8. optional: modify the `resources/user.css` file to your liking (see [styling](#styling)). 9. run `customiser.py` to build changes. (for linux run with sudo) done: run notion and enjoy. -**oh no, now my app won't open!** +## faq + +**now the notion app won't open :(** 1. kill any notion tasks in the task manager (`ctrl+shift+esc`). 2. run `cleaner.py`. @@ -36,15 +44,25 @@ done: run notion and enjoy. **i tried opening the python file but it just closed instantly and nothing happened?** -python scripts must be run from the wsl terminal or windows command prompt via e.g. `python customiser.py`. +python scripts must be run from the terminal or command prompt via e.g. `python customiser.py`. -**now that i've run the script, can i delete this folder?** +**now that I've run the script, can I delete the enhancer folder?** no! user style files `resources/user.css` and `resources/theme.css` are fetched from here each time you open notion. additionally, if you ever need to change or reset your notion build, the `customiser.py` and `cleaner.py` files will be useful. unless you're sure you know what you're doing (if you have to ask, you probably don't) then do not delete anything. +**something isn't working, and the suggestions here haven't fixed it...** + +this is probably a bug. please submit a +[bug report](https://github.com/dragonwocky/notion-enhancer/issues/new?assignees=&labels=bug&template=bug-report.md&title=). + +**I have a new feature idea for the enhancer!** + +experienced problems with the notion app, or just want to add something a bit more to it? please submit a +[feature request](https://github.com/dragonwocky/notion-enhancer/issues/new?assignees=&labels=enhancement&template=feature-request.md&title=). + ## features ### titlebar @@ -66,10 +84,10 @@ ones that actually look as if they're part of notion. to add these to the web version, copy lines 44 - 75 from `user.css` into your css customiser. -![](screenshots/default-before.jpg) +![](screenshots/app-unenhanced.jpg) _image: before enhancement_ -![](screenshots/default-after.jpg) +![](screenshots/app-enhanced.jpg) _image: after default enhancement_ ### hotkeys @@ -85,8 +103,6 @@ to your preference. you will need to run or re-run `customiser.py` afterwards. single-click to toggle app visibility. right click to open menu. -settings will be saved in `%localappdata%/Programs/Notion/resources/app/user-preferences.json` - - **run on startup**: run notion on boot/startup. (default: true) - **hide on open**: hide the launch of notion to the tray. (default: false) - **open maximised**: maximise the app on open. (default: false) @@ -95,7 +111,7 @@ settings will be saved in `%localappdata%/Programs/Notion/resources/app/user-pre - **load theme.css**: loads the custom colour theme file. see [colour theming](STYLING.md#colour-theming) for more information. (default: false) -![](screenshots/tray.jpg) +![](screenshots/app-tray.jpg) _image: open application tray_ ## styling @@ -103,15 +119,12 @@ _image: open application tray_ custom appearances can be applied to the app via the `resources/user.css` and `resources/theme.css` files. for more information, and a list of various optional styling changes, see [the page on styling](STYLING.md). -## this is a fork +## other details credit where credit is due, this was originally made by Uzver (github: [@TarasokUA](https://github.com/TarasokUA), telegram: [UserFromUkraine](https://t.me/UserFromUkraine), discord: Uzver#8760). - he has approved my go-ahead with this fork, as he himself no longer wishes to continue development on the project. -## other details - the notion logo belongs entirely to the notion team, and was sourced from their [media kit](https://www.notion.so/Media-Kit-205535b1d9c4440497a3d7a2ac096286). diff --git a/STYLING.md b/STYLING.md index 5682908..53b70a7 100644 --- a/STYLING.md +++ b/STYLING.md @@ -14,7 +14,12 @@ these should also work for the web version, if copied into your css customiser. css below will work for every instance of the element, but if you wish to hide only a specific element (e.g. the '+ new' table row) it is recommended that you prepend each selector with -`[data-block-id='ID']` ([video tutorial on fetching IDs](https://www.youtube.com/watch?v=6V7eqShm_4w)). +`[data-block-id='ID']`. + +## general/app-wide + +![](screenshots/app-default.jpg) +_image: the default post-customisation appearance_ ### colour theming @@ -27,7 +32,7 @@ to enable, see the [tray](README.md#tray) options. to modify, enter the `theme.css` file and change the colour values within the `:root {}` - value names should describe what each colour will affect. -![](screenshots/theme.jpg) +![](screenshots/theme-dark+.jpg) _image: the dark+ theme_ ### hide discussions (comment threads at the top of each page) @@ -38,18 +43,18 @@ _image: the dark+ theme_ } ``` -![](screenshots/hidediscussion-before.jpg) -_image: before_ +![](screenshots/discussion-default.jpg) +_image: before styling_ -![](screenshots/hidediscussion-after.jpg) -_image: after_ +![](screenshots/discussion-hidden.jpg) +_image: after styling_ ### custom fonts **the `@import` statement must be added to the top of the file (with nothing above it** **except comments or other `@import` statements)** -to change the fonts, change the font-family property. there are +to change the fonts, put the relevant URL in the `@import` statement and then change the [font-family](https://developer.mozilla.org/en-US/docs/Web/CSS/font-family) property. plenty of other fonts that can be found on google fonts or that may be on your system already. ```css @@ -65,11 +70,8 @@ plenty of other fonts that can be found on google fonts or that may be on your s } ``` -![](screenshots/customfonts-before.jpg) -_image: before_ - -![](screenshots/customfonts-after.jpg) -_image: after_ +![](screenshots/fonts-custom.jpg) +_image: after styling_ ### font resizing @@ -105,8 +107,8 @@ to change the size, change the value of `--font-scale`. } ``` -![](screenshots/fontresizing.jpg) -_image: after_ +![](screenshots/fonts-resized.jpg) +_image: after styling_ ### wider page preview @@ -116,11 +118,11 @@ _image: after_ } ``` -![](screenshots/widerpreview-before.jpg) -_image: before_ +![](screenshots/preview-default.jpg) +_image: before styling_ -![](screenshots/widerpreview-after.jpg) -_image: after_ +![](screenshots/preview-wider.jpg) +_image: after styling_ ### thinner cover image @@ -134,37 +136,46 @@ _image: after_ } ``` -![](screenshots/thinnercover-before.jpg) -_image: before_ +![](screenshots/cover-default.jpg) +_image: before styling_ -![](screenshots/thinnercover-after.jpg) -_image: after_ +![](screenshots/cover-thinner.jpg) +_image: after styling_ + +## tables + +![](screenshots/table-before.jpg) +_image: before styling_ ### table columns below 100px -**not recommended!** this is unreliable and will cause bugs. -coincidentally, this is also what the youtube video linked above shows how to do. -as it is a per-table-column style, unlike all others here, it must be prepended with the block ID. +**not recommended!** this may cause buggy viewing. +as it is a per-table-column style, unlike all others here, it must be prepended with the block ID and repeated for each column. + +to see how to do this, watch [this video](https://www.youtube.com/watch?v=6V7eqShm_4w). ```css -[data-block-id^='ID'] +[data-block-id^='tableID'] > [style^='display: flex; position: absolute; background: rgb(47, 52, 55); z-index: 82; height: 33px; color: rgba(255, 255, 255, 0.6);'] > div:nth-child(1) - > div:nth-child(10) + > div:nth-child(COL_NUMBER) > div:nth-child(1), -[data-block-id^='ID'] +[data-block-id^='tableID'] > [style^='position: relative; min-width: calc(100% - 192px);'] > [data-block-id] - > div:nth-child(10), -[data-block-id^='ID'] > div:nth-child(5) > div:nth-child(10) { - width: 45px !important; + > div:nth-child(COL_NUMBER), +[data-block-id^='tableID'] > div:nth-child(5) > div:nth-child(COL_NUMBER) { + width: 32px !important; } -[data-block-id^='ID'] +[data-block-id^='tableID'] [style^='position: absolute; top: 0px; left: 0px; pointer-events: none;']:not(.notion-presence-container) { display: none; } ``` +![](screenshots/table-columnunder100px.jpg) +_image: after styling_ + ### hide '+ new' table row ```css @@ -173,11 +184,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended } ``` -![](screenshots/table-before.jpg) -_image: before_ - -![](screenshots/hideaddrow-after.jpg) -_image: after_ +![](screenshots/table-hideaddrow.jpg) +_image: after styling_ ### hide calculations table row @@ -187,38 +195,8 @@ _image: after_ } ``` -![](screenshots/table-before.jpg) -_image: before_ - -![](screenshots/hidecalculationsrow-after.jpg) -_image: after_ - -### hide '+ new' board row - -```css -.notion-board-group - [style='user-select: none; transition: background 120ms ease-in 0s; cursor: pointer; display: inline-flex; align-items: center; flex-shrink: 0; white-space: nowrap; height: 32px; border-radius: 3px; font-size: 14px; line-height: 1.2; min-width: 0px; padding-left: 6px; padding-right: 8px; color: rgba(255, 255, 255, 0.4); width: 100%;'] { - display: none !important; -} -``` - -### hide board view hidden columns - -```css -.notion-board-view > [data-block-id] > div:nth-last-child(2), -.notion-board-view > [data-block-id] > div:first-child > div:nth-last-child(2) { - display: none !important; -} -``` - -### hide board view 'add a group' - -```css -.notion-board-view > [data-block-id] > div:last-child, -.notion-board-view > [data-block-id] > div:first-child > div:last-child { - display: none !important; -} -``` +![](screenshots/table-hidecalculationsrow.jpg) +_image: after styling_ ### centre-align table column headers @@ -228,6 +206,9 @@ _image: after_ } ``` +![](screenshots/table-centredheaders.jpg) +_image: after styling_ + ### smaller table column header icons ```css @@ -240,6 +221,9 @@ _image: after_ } ``` +![](screenshots/table-smallercolumnicons.jpg) +_image: after styling_ + ### remove icons from table column headers ```css @@ -248,6 +232,9 @@ _image: after_ } ``` +![](screenshots/table-hidecolumnicons.jpg) +_image: after styling_ + ### removing/decreasing side padding for tables ```css @@ -266,6 +253,50 @@ _image: after_ } ``` +![](screenshots/table-shrinkpadding.jpg) +_image: after styling_ + +## boards + +![](screenshots/board-default.jpg) +_image: before styling_ + +### hide '+ new' board row + +```css +.notion-board-group + [style='user-select: none; transition: background 120ms ease-in 0s; cursor: pointer; display: inline-flex; align-items: center; flex-shrink: 0; white-space: nowrap; height: 32px; border-radius: 3px; font-size: 14px; line-height: 1.2; min-width: 0px; padding-left: 6px; padding-right: 8px; color: rgba(255, 255, 255, 0.4); width: 100%;'] { + display: none !important; +} +``` + +![](screenshots/board-hideaddnew.jpg) +_image: after styling_ + +### hide board view hidden columns + +```css +.notion-board-view > [data-block-id] > div:nth-last-child(2), +.notion-board-view > [data-block-id] > div:first-child > div:nth-last-child(2) { + display: none !important; +} +``` + +![](screenshots/board-hidehidden.jpg) +_image: after styling_ + +### hide board view 'add a group' + +```css +.notion-board-view > [data-block-id] > div:last-child, +.notion-board-view > [data-block-id] > div:first-child > div:last-child { + display: none !important; +} +``` + +![](screenshots/board-hideaddgroup.jpg) +_image: after styling_ + ### removing/decreasing side padding for boards ```css @@ -274,3 +305,6 @@ _image: after_ padding-right: 10px !important; } ``` + +![](screenshots/board-shrinkpadding.jpg) +_image: after styling_ diff --git a/docs/.vscode/settings.json b/docs/.vscode/settings.json deleted file mode 100644 index bc9b668..0000000 --- a/docs/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "python.pythonPath": "/home/dragonwocky/.local/share/virtualenvs/notion-enhancer-Hp9dv90P/bin/python" -} \ No newline at end of file diff --git a/docs/Pipfile b/docs/Pipfile index 76d1de2..83d4e3c 100644 --- a/docs/Pipfile +++ b/docs/Pipfile @@ -8,6 +8,7 @@ pylint = "*" autopep8 = "*" [packages] +pyasar = "*" [requires] python_version = "3.6" diff --git a/docs/Pipfile.lock b/docs/Pipfile.lock index 295c423..fdf355f 100644 --- a/docs/Pipfile.lock +++ b/docs/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "3eeda9cee44e435fe2d016242e4f33fb3f938001bae135ea1618534a36c05e40" + "sha256": "1acd8226b318eb2516f81421b7f90e7c81f2119805d658a5a958e0699a1358d6" }, "pipfile-spec": 6, "requires": { @@ -15,27 +15,37 @@ } ] }, - "default": {}, + "default": { + "pyasar": { + "hashes": [ + "sha256:f96b322ea5c450d129dbe6990e5ba827d1d070e818822c408abffa44058f7f08" + ], + "index": "pypi", + "version": "==1.0.8" + } + }, "develop": { "astroid": { "hashes": [ - "sha256:4c17cea3e592c21b6e222f673868961bad77e1f985cb1694ed077475a89229c1", - "sha256:d8506842a3faf734b81599c8b98dcc423de863adcc1999248480b18bd31a0f38" + "sha256:2f4078c2a41bf377eea06d71c9d2ba4eb8f6b1af2135bec27bbbb7d8f12bb703", + "sha256:bc58d83eb610252fd8de6363e39d4f1d0619c894b0ed24603b881c02e64c7386" ], - "version": "==2.4.1" + "markers": "python_version >= '3.5'", + "version": "==2.4.2" }, "autopep8": { "hashes": [ - "sha256:152fd8fe47d02082be86e05001ec23d6f420086db56b17fc883f3f965fb34954" + "sha256:60fd8c4341bab59963dafd5d2a566e94f547e660b9b396f772afe67d8481dbf0" ], "index": "pypi", - "version": "==1.5.2" + "version": "==1.5.3" }, "isort": { "hashes": [ "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1", "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==4.3.21" }, "lazy-object-proxy": { @@ -62,6 +72,7 @@ "sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4", "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.4.3" }, "mccabe": { @@ -76,21 +87,23 @@ "sha256:2295e7b2f6b5bd100585ebcb1f616591b652db8a741695b3d8f5d28bdc934367", "sha256:c58a7d2815e0e8d7972bf1803331fb0152f867bd89adf8a01dfd55085434192e" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.6.0" }, "pylint": { "hashes": [ - "sha256:b95e31850f3af163c2283ed40432f053acbc8fc6eba6a069cb518d9dbf71848c", - "sha256:dd506acce0427e9e08fb87274bcaa953d38b50a58207170dbf5b36cf3e16957b" + "sha256:7dd78437f2d8d019717dbf287772d0b2dbdfd13fc016aa7faa08d67bccc46adc", + "sha256:d0ece7d223fe422088b0e8f13fa0a1e8eb745ebffcb8ed53d3e95394b6101a1c" ], "index": "pypi", - "version": "==2.5.2" + "version": "==2.5.3" }, "six": { "hashes": [ "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced" ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.15.0" }, "toml": { @@ -124,7 +137,7 @@ "sha256:fc0fea399acb12edbf8a628ba8d2312f583bdbdb3335635db062fa98cf71fca4", "sha256:fe460b922ec15dd205595c9b5b99e2f056fd98ae8f9f56b888e7a17dc2b757e7" ], - "markers": "implementation_name == 'cpython' and python_version < '3.8'", + "markers": "python_version < '3.8' and implementation_name == 'cpython'", "version": "==1.4.1" }, "wrapt": { diff --git a/docs/changelog.html b/docs/changelog.html index e9767a9..57824bd 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -5,7 +5,7 @@ changelog

if something is crossed out, then it is no longer a feature included by default, -but can still easily be enabled by following instructions in the docs.

+but can still easily be enabled by following instructions in the docs.

@@ -15,10 +15,15 @@ but can still easily be enabled by following instructions in the u/Roosmaryn) +
  • docs: hide discussions (thanks to u/Roosmaryn)
  • new: custom colour theming, demonstrated via the dark+ theme.
  • +
  • new: linux support (thanks for @Blacksuan19).
  • improved: if hotkey is pressed while notion is unfocused, it will bring it to the front rather than hiding it.
  • -
  • bugfix: specify UTF-8 encoding to prevent multibyte/gbk codec errors (thanks to @etnperlong)
  • +
  • bugfix: specify UTF-8 encoding to prevent multibyte/gbk codec errors (thanks to @etnperlong)
  • + +

    //todo

    +
    @@ -35,7 +40,7 @@ a run of cleaner.py to build modifications. improved: scrollbar colours that fit better with notion's theming.
  • bugfix: un-break having multiple notion windows open.
  • -

    (forked by @dragonwocky.)

    +

    (forked by @dragonwocky.)

    @@ -46,7 +51,7 @@ improved: scrollbar colours that fit better with notion's theming.
  • bugfix: wider table & the "+" button not working in database pages.
  • -

    📥 notion-enhancer.v4.1.zip

    +

    📥 notion-enhancer.v4.1.zip

    @@ -74,7 +79,7 @@ improved: scrollbar colours that fit better with notion's theming.
  • style: smaller table icons.
  • -

    📥 notion-enhancer.v3.zip

    +

    📥 notion-enhancer.v3.zip

    diff --git a/docs/docs.css b/docs/docs.css index 7555f4a..c24ffcc 100644 --- a/docs/docs.css +++ b/docs/docs.css @@ -289,14 +289,14 @@ aside .mark a { color: var(--link); text-shadow: 0 0 0.75em var(--glow); } +.wrapper .documentative img { + max-width: 100%; +} .wrapper .documentative blockquote { margin-left: 0; padding-left: 1em; border-left: 0.25em solid var(--border); } -.wrapper .documentative img { - max-width: 100%; -} .wrapper .documentative h1 + table, .wrapper .documentative h2 + table, .wrapper .documentative h3 + table, @@ -498,6 +498,4 @@ aside .mark a { .hljs-strong { font-weight: bold; } -.documentative pre .lang-css::before { - content: 'CSS'; -} +.documentative pre .lang-css::before { content: 'CSS'; } \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 4b59123..41923aa 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,49 +1,65 @@ -notion enhancer

    notion enhancer

    +notion enhancer

    notion enhancer

    notion enhancer

    -

    an enhancer/customiser for the all-in-one productivity workspace notion.so

    -

    note: this is currently an unreleased version of the enhancer, which adds some cool things like colour theming and improves on some existing features. it is stable, and so has been pushed out for use. once i've done some more fine-tuning and finished taking screenshots of everything i will release this officially as v0.6.0.

    +

    an enhancer/customiser for the all-in-one productivity workspace notion.so

    +

    note: this is currently an unreleased version of the enhancer, which adds some cool things +like colour theming and improves on some existing features. it is stable, +and so has been pushed out for use. once I've done some more fine-tuning +and finished taking screenshots of everything I will release this officially as v0.6.0.

    installation

    -

    currently, only win10 is supported. it is possible to run this script via the wsl to modify the win10 notion app.

    -

    (the styles should also work for the web version. -these can be installed via an extension like stylus -or a built-in feature like userChrome.css.)

    +

    currently, both windows and linux are supported. it is possible to run this script via the WSL to modify the windows notion app.

    +

    want macOS to be supported too? let me know, and I can work with you to get it going.

    +

    for linux users, the notion-app (arch linux, +others e.g. ubuntu) package will wrap/run the macOS version of the notion app with electron.

    +

    (the styles should also work for the web version. +these can be installed via an extension like stylus +or a built-in feature like userChrome.css.)

      -
    1. install node.js (if using the wsl, it is recommended to install via nvm).
    2. -
    3. install python (if using the wsl, follow this guide).
    4. +
    5. install node.js: windows, linux/WSL.
    6. +
    7. install python: windows, linux/WSL.
    8. reboot.
    9. -
    10. in cmd (on windows) or bash (with wsl), run npm install -g asar (check installation by running asar).
    11. -
    12. download this enhancer & extract to a location it can safely remain (this must be in the windows filesystem, -even if you are running the script from the wsl).
    13. -
    14. ensure notion is closed.
    15. -
    16. optional: to remove previous versions of notion enhancer, run cleaner.py
    17. -
    18. optional: modify the resources/user.css file to your liking (see styling).
    19. -
    20. run customiser.py to build changes.
    21. +
    22. in the appropriate terminal/command line, run npm install -g asar (check installation by running asar).
    23. +
    24. download this enhancer & extract +to a location it can safely remain (if running the script from the WSL, make sure this is from a location within the windows filesystem).
    25. +
    26. ensure no notion processes are running - you may want to check the task manager to make sure.
    27. +
    28. optional: to remove previous applications of the notion enhancer, run cleaner.py.
    29. +
    30. optional: modify the resources/user.css file to your liking (see styling).
    31. +
    32. run customiser.py to build changes. (for linux run with sudo)

    done: run notion and enjoy.

    -

    oh no, now my app won't open!

    + +
    +
    +

    + faq +

    +

    now the notion app won't open :(

    1. kill any notion tasks in the task manager (ctrl+shift+esc).
    2. run cleaner.py.
    3. reboot.
    4. follow instructions above (ensuring notion isn't running! again, check task manager).
    -

    i'm updating from an old version of the enhancer?

    -

    you must first run cleaner.py before running customiser.py.

    i tried opening the python file but it just closed instantly and nothing happened?

    -

    python scripts must be run from the wsl terminal or windows command prompt via e.g. python customiser.py.

    -

    now that i've run the script, can i delete this folder?

    +

    python scripts must be run from the terminal or command prompt via e.g. python customiser.py.

    +

    now that I've run the script, can I delete the enhancer folder?

    no! user style files resources/user.css and resources/theme.css are fetched from here each time you open notion. additionally, if you ever need to change or reset your notion build, the customiser.py and cleaner.py files will be useful.

    unless you're sure you know what you're doing (if you have to ask, you probably don't) then do not delete anything.

    +

    something isn't working, and the suggestions here haven't fixed it...

    +

    this is probably a bug. please submit a +bug report.

    +

    I have a new feature idea for the enhancer!

    +

    experienced problems with the notion app, or just want to add something a bit more to it? please submit a +feature request.

    @@ -72,9 +88,9 @@ replacing element.innerHTML = '⨉'; with element.inn

    i mean, yeah. get rid of those ugly default scrollbars and use nice inconspicuous ones that actually look as if they're part of notion.

    to add these to the web version, copy lines 44 - 75 from user.css into your css customiser.

    -

    +

    image: before enhancement

    -

    +

    image: after default enhancement

    @@ -87,7 +103,7 @@ ones that actually look as if they're part of notion.

    you can now reload a window with F5.
  • toggle all notion windows to/from the tray: CmdOrCtrl+Shift+A by default.
  • -

    to set your own toggle hotkey, open customiser.py and change line 16 (hotkey = 'CmdOrCtrl+Shift+A') +

    to set your own toggle hotkey, open customiser.py and change line 19 (hotkey = 'CmdOrCtrl+Shift+A') to your preference. you will need to run or re-run customiser.py afterwards.

    @@ -96,7 +112,6 @@ to your preference. you will need to run or re-run customiser.py af tray

    single-click to toggle app visibility. right click to open menu.

    -

    settings will be saved in %localappdata%/Programs/Notion/resources/app/user-preferences.json

    • run on startup: run notion on boot/startup. (default: true)
    • hide on open: hide the launch of notion to the tray. (default: false)
    • @@ -104,9 +119,9 @@ to your preference. you will need to run or re-run customiser.py af
    • close to tray: close window to tray rather than closing outright on click of . does not apply if multiple notion windows are open. (default: false)
    • load theme.css: loads the custom colour theme file. -see colour theming for more information. (default: false)
    • +see colour theming for more information. (default: false)
    -

    +

    image: open application tray

    @@ -115,25 +130,19 @@ see colour theming for more information. styling

    custom appearances can be applied to the app via the resources/user.css and resources/theme.css files. for more information, -and a list of various optional styling changes, see the page on styling.

    - - -
    -

    - this is a fork -

    -

    credit where credit is due, this was originally made by Uzver (github: @TarasokUA, -telegram: UserFromUkraine, discord: Uzver#8760).

    -

    he has approved my go-ahead with this fork, as he himself no longer wishes to continue development on the project.

    +and a list of various optional styling changes, see the page on styling.

    other details

    -

    the notion logo belongs entirely to the notion team, and was sourced from their -media kit.

    -

    if you have any questions, check my website for contact details.

    +

    credit where credit is due, this was originally made by Uzver (github: @TarasokUA, +telegram: UserFromUkraine, discord: Uzver#8760). +he has approved my go-ahead with this fork, as he himself no longer wishes to continue development on the project.

    +

    the notion logo belongs entirely to the notion team, and was sourced from their +media kit.

    +

    if you have any questions, check my website for contact details.

    \ No newline at end of file diff --git a/docs/screenshots/app-default.jpg b/docs/screenshots/app-default.jpg new file mode 100644 index 0000000..2a15352 Binary files /dev/null and b/docs/screenshots/app-default.jpg differ diff --git a/docs/screenshots/default-after.jpg b/docs/screenshots/app-enhanced.jpg similarity index 100% rename from docs/screenshots/default-after.jpg rename to docs/screenshots/app-enhanced.jpg diff --git a/docs/screenshots/tray.jpg b/docs/screenshots/app-tray.jpg similarity index 100% rename from docs/screenshots/tray.jpg rename to docs/screenshots/app-tray.jpg diff --git a/docs/screenshots/default-before.jpg b/docs/screenshots/app-unenhanced.jpg similarity index 100% rename from docs/screenshots/default-before.jpg rename to docs/screenshots/app-unenhanced.jpg diff --git a/docs/screenshots/board-before.jpg b/docs/screenshots/board-before.jpg deleted file mode 100644 index 7568709..0000000 Binary files a/docs/screenshots/board-before.jpg and /dev/null differ diff --git a/docs/screenshots/board-default.jpg b/docs/screenshots/board-default.jpg new file mode 100644 index 0000000..fa2ee75 Binary files /dev/null and b/docs/screenshots/board-default.jpg differ diff --git a/docs/screenshots/board-hideaddgroup.jpg b/docs/screenshots/board-hideaddgroup.jpg new file mode 100644 index 0000000..545b8c1 Binary files /dev/null and b/docs/screenshots/board-hideaddgroup.jpg differ diff --git a/docs/screenshots/board-hideaddnew.jpg b/docs/screenshots/board-hideaddnew.jpg new file mode 100644 index 0000000..c291e7f Binary files /dev/null and b/docs/screenshots/board-hideaddnew.jpg differ diff --git a/docs/screenshots/board-hidehidden.jpg b/docs/screenshots/board-hidehidden.jpg new file mode 100644 index 0000000..8dc2bd4 Binary files /dev/null and b/docs/screenshots/board-hidehidden.jpg differ diff --git a/docs/screenshots/board-shrinkpadding.jpg b/docs/screenshots/board-shrinkpadding.jpg new file mode 100644 index 0000000..f8c541e Binary files /dev/null and b/docs/screenshots/board-shrinkpadding.jpg differ diff --git a/docs/screenshots/thinnercover-before.jpg b/docs/screenshots/cover-default.jpg similarity index 100% rename from docs/screenshots/thinnercover-before.jpg rename to docs/screenshots/cover-default.jpg diff --git a/docs/screenshots/thinnercover-after.jpg b/docs/screenshots/cover-thinner.jpg similarity index 100% rename from docs/screenshots/thinnercover-after.jpg rename to docs/screenshots/cover-thinner.jpg diff --git a/docs/screenshots/customfonts-after.jpg b/docs/screenshots/customfonts-after.jpg deleted file mode 100644 index 3c9c8f5..0000000 Binary files a/docs/screenshots/customfonts-after.jpg and /dev/null differ diff --git a/docs/screenshots/customfonts-before.jpg b/docs/screenshots/customfonts-before.jpg deleted file mode 100644 index 626a397..0000000 Binary files a/docs/screenshots/customfonts-before.jpg and /dev/null differ diff --git a/docs/screenshots/hidediscussion-before.jpg b/docs/screenshots/discussion-default.jpg similarity index 100% rename from docs/screenshots/hidediscussion-before.jpg rename to docs/screenshots/discussion-default.jpg diff --git a/docs/screenshots/hidediscussion-after.jpg b/docs/screenshots/discussion-hidden.jpg similarity index 100% rename from docs/screenshots/hidediscussion-after.jpg rename to docs/screenshots/discussion-hidden.jpg diff --git a/docs/screenshots/fonts-custom.jpg b/docs/screenshots/fonts-custom.jpg new file mode 100644 index 0000000..f66ce0a Binary files /dev/null and b/docs/screenshots/fonts-custom.jpg differ diff --git a/docs/screenshots/fontresizing.jpg b/docs/screenshots/fonts-resized.jpg similarity index 100% rename from docs/screenshots/fontresizing.jpg rename to docs/screenshots/fonts-resized.jpg diff --git a/docs/screenshots/widerpreview-before.jpg b/docs/screenshots/preview-default.jpg similarity index 100% rename from docs/screenshots/widerpreview-before.jpg rename to docs/screenshots/preview-default.jpg diff --git a/docs/screenshots/widerpreview-after.jpg b/docs/screenshots/preview-wider.jpg similarity index 100% rename from docs/screenshots/widerpreview-after.jpg rename to docs/screenshots/preview-wider.jpg diff --git a/docs/screenshots/table-centredheaders.jpg b/docs/screenshots/table-centredheaders.jpg new file mode 100644 index 0000000..88a9135 Binary files /dev/null and b/docs/screenshots/table-centredheaders.jpg differ diff --git a/docs/screenshots/table-columnunder100px.jpg b/docs/screenshots/table-columnunder100px.jpg new file mode 100644 index 0000000..2d26242 Binary files /dev/null and b/docs/screenshots/table-columnunder100px.jpg differ diff --git a/docs/screenshots/hideaddrow-after.jpg b/docs/screenshots/table-hideaddrow.jpg similarity index 100% rename from docs/screenshots/hideaddrow-after.jpg rename to docs/screenshots/table-hideaddrow.jpg diff --git a/docs/screenshots/hidecalculationsrow-after.jpg b/docs/screenshots/table-hidecalculationsrow.jpg similarity index 100% rename from docs/screenshots/hidecalculationsrow-after.jpg rename to docs/screenshots/table-hidecalculationsrow.jpg diff --git a/docs/screenshots/table-hidecolumnicons.jpg b/docs/screenshots/table-hidecolumnicons.jpg new file mode 100644 index 0000000..f1583f2 Binary files /dev/null and b/docs/screenshots/table-hidecolumnicons.jpg differ diff --git a/docs/screenshots/table-shrinkpadding.jpg b/docs/screenshots/table-shrinkpadding.jpg new file mode 100644 index 0000000..559defc Binary files /dev/null and b/docs/screenshots/table-shrinkpadding.jpg differ diff --git a/docs/screenshots/table-smallercolumnicons.jpg b/docs/screenshots/table-smallercolumnicons.jpg new file mode 100644 index 0000000..147f9b8 Binary files /dev/null and b/docs/screenshots/table-smallercolumnicons.jpg differ diff --git a/docs/screenshots/theme.jpg b/docs/screenshots/theme-dark+.jpg similarity index 100% rename from docs/screenshots/theme.jpg rename to docs/screenshots/theme-dark+.jpg diff --git a/docs/styling.html b/docs/styling.html index cf987df..179a4c7 100644 --- a/docs/styling.html +++ b/docs/styling.html @@ -1,4 +1,4 @@ -styling | notion enhancer

    notion enhancer

    +styling | notion enhancer

    notion enhancer

    @@ -7,14 +7,22 @@

    to modify the appearance of the notion app, edit the style rules in resources/user.css, use some of the suggested/documented optional styles below, or invent your own.

    these styles are written in a language called "CSS". if you don't know what this is and are interested, -check out some youtube videos or try a free short course like the one on codecademy.

    +check out some youtube videos or try a free short course like the one on codecademy.

    due to the enhancements directly fetching from the local CSS files, changes will be applied instantly on notion reload (no need to re-run customiser.py every time you want to change some styles).

    these should also work for the web version, if copied into your css customiser.

    css below will work for every instance of the element, but if you wish to hide only a specific element (e.g. the '+ new' table row) it is recommended that you prepend each selector with -[data-block-id='ID'] (video tutorial on fetching IDs).

    +[data-block-id='ID'].

    + +

    +
    +

    + general/app-wide +

    +

    +image: the default post-customisation appearance

    @@ -24,10 +32,10 @@ changes will be applied instantly on notion reload

    this replaces the default notion dark theme. the provided theme file is my custom dark+ theme: if you have another you wish to share, please contact me. if a few themes are submitted i will set up a distribution method (either including them as optionally-enableabled themes or sharing them on the website).

    -

    to enable, see the tray options.

    +

    to enable, see the tray options.

    to modify, enter the theme.css file and change the colour values within the :root {} - value names should describe what each colour will affect.

    -

    +

    image: the dark+ theme

    @@ -38,10 +46,10 @@ should describe what each colour will affect.

    .notion-page-view-discussion {
       display: none !important;
     }
    -

    -image: before

    -

    -image: after

    +

    +image: before styling

    +

    +image: after styling

    @@ -50,7 +58,7 @@ should describe what each colour will affect.

    the @import statement must be added to the top of the file (with nothing above it except comments or other @import statements)

    -

    to change the fonts, change the font-family property. there are +

    to change the fonts, put the relevant URL in the @import statement and then change the font-family property. plenty of other fonts that can be found on google fonts or that may be on your system already.

    @import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Oxygen&family=Roboto+Slab:wght@300&display=swap');
     .notion-app-inner {
    @@ -62,10 +70,8 @@ plenty of other fonts that can be found on google fonts or that may be on your s
     [style*=', serif;'] {
       font-family: 'Roboto Slab', serif !important;
     }
    -

    -image: before

    -

    -image: after

    +

    +image: after styling

    @@ -99,8 +105,8 @@ it is suggested to instead use ctrl+ or ctrl- to scale [style*='font-size: 1.25em'] { font-size: calc(var(--font-scale) * 1.25em) !important; } -

    -image: after

    +

    +image: after styling

    @@ -110,10 +116,10 @@ it is suggested to instead use ctrl+ or ctrl- to scale
    .notion-peek-renderer > div:nth-child(2) {
       max-width: 85vw !important;
     }
    -

    -image: before

    -

    -image: after

    +

    +image: before styling

    +

    +image: after styling

    @@ -127,35 +133,45 @@ it is suggested to instead use ctrl+ or ctrl- to scale img { height: 12vh !important; } -

    -image: before

    -

    -image: after

    +

    +image: before styling

    +

    +image: after styling

    + +
    +
    +

    + tables +

    +

    +image: before styling

    table columns below 100px

    -

    not recommended! this is unreliable and will cause bugs. -coincidentally, this is also what the youtube video linked above shows how to do. -as it is a per-table-column style, unlike all others here, it must be prepended with the block ID.

    -
    [data-block-id^='ID']
    +        

    not recommended! this may cause buggy viewing. +as it is a per-table-column style, unlike all others here, it must be prepended with the block ID and repeated for each column.

    +

    to see how to do this, watch this video.

    +
    [data-block-id^='tableID']
       > [style^='display: flex; position: absolute; background: rgb(47, 52, 55); z-index: 82; height: 33px; color: rgba(255, 255, 255, 0.6);']
       > div:nth-child(1)
    -  > div:nth-child(10)
    +  > div:nth-child(COL_NUMBER)
       > div:nth-child(1),
    -[data-block-id^='ID']
    +[data-block-id^='tableID']
       > [style^='position: relative; min-width: calc(100% - 192px);']
       > [data-block-id]
    -  > div:nth-child(10),
    -[data-block-id^='ID'] > div:nth-child(5) > div:nth-child(10) {
    -  width: 45px !important;
    +  > div:nth-child(COL_NUMBER),
    +[data-block-id^='tableID'] > div:nth-child(5) > div:nth-child(COL_NUMBER) {
    +  width: 32px !important;
     }
    -[data-block-id^='ID']
    +[data-block-id^='tableID']
       [style^='position: absolute; top: 0px; left: 0px; pointer-events: none;']:not(.notion-presence-container) {
       display: none;
     }
    +

    +image: after styling

    @@ -165,10 +181,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended
    .notion-table-view-add-row {
       display: none !important;
     }
    -

    -image: before

    -

    -image: after

    +

    +image: after styling

    @@ -178,40 +192,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended
    .notion-table-view-add-row + div {
       display: none !important;
     }
    -

    -image: before

    -

    -image: after

    - -
    -
    -

    - hide '+ new' board row -

    -
    .notion-board-group
    -  [style='user-select: none; transition: background 120ms ease-in 0s; cursor: pointer; display: inline-flex; align-items: center; flex-shrink: 0; white-space: nowrap; height: 32px; border-radius: 3px; font-size: 14px; line-height: 1.2; min-width: 0px; padding-left: 6px; padding-right: 8px; color: rgba(255, 255, 255, 0.4); width: 100%;'] {
    -  display: none !important;
    -}
    - -
    -
    -

    - hide board view hidden columns -

    -
    .notion-board-view > [data-block-id] > div:nth-last-child(2),
    -.notion-board-view > [data-block-id] > div:first-child > div:nth-last-child(2) {
    -  display: none !important;
    -}
    - -
    -
    -

    - hide board view 'add a group' -

    -
    .notion-board-view > [data-block-id] > div:last-child,
    -.notion-board-view > [data-block-id] > div:first-child > div:last-child {
    -  display: none !important;
    -}
    +

    +image: after styling

    @@ -221,6 +203,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended
    .notion-table-view-header-cell > div > div {
       margin: 0px auto;
     }
    +

    +image: after styling

    @@ -234,6 +218,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended width: 10px !important; margin-right: -4px; } +

    +image: after styling

    @@ -243,6 +229,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended
    .notion-table-view-header-cell [style^='margin-right: 6px;'] {
       display: none !important;
     }
    +

    +image: after styling

    @@ -262,6 +250,52 @@ as it is a per-table-column style, unlike all others here, it must be prepended margin-left: 10px; margin-right: 10px; } +

    +image: after styling

    + +
    +
    +

    + boards +

    +

    +image: before styling

    + +
    +
    +

    + hide '+ new' board row +

    +
    .notion-board-group
    +  [style='user-select: none; transition: background 120ms ease-in 0s; cursor: pointer; display: inline-flex; align-items: center; flex-shrink: 0; white-space: nowrap; height: 32px; border-radius: 3px; font-size: 14px; line-height: 1.2; min-width: 0px; padding-left: 6px; padding-right: 8px; color: rgba(255, 255, 255, 0.4); width: 100%;'] {
    +  display: none !important;
    +}
    +

    +image: after styling

    + +
    +
    +

    + hide board view hidden columns +

    +
    .notion-board-view > [data-block-id] > div:nth-last-child(2),
    +.notion-board-view > [data-block-id] > div:first-child > div:nth-last-child(2) {
    +  display: none !important;
    +}
    +

    +image: after styling

    + +
    +
    +

    + hide board view 'add a group' +

    +
    .notion-board-view > [data-block-id] > div:last-child,
    +.notion-board-view > [data-block-id] > div:first-child > div:last-child {
    +  display: none !important;
    +}
    +

    +image: after styling

    @@ -272,6 +306,8 @@ as it is a per-table-column style, unlike all others here, it must be prepended padding-left: 10px !important; padding-right: 10px !important; } +

    +image: after styling

    \ No newline at end of file diff --git a/docs/web-logo.svg b/docs/web-logo.svg deleted file mode 100644 index 201f7bb..0000000 --- a/docs/web-logo.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/screenshots/app-default.jpg b/screenshots/app-default.jpg new file mode 100644 index 0000000..2a15352 Binary files /dev/null and b/screenshots/app-default.jpg differ diff --git a/screenshots/default-after.jpg b/screenshots/app-enhanced.jpg similarity index 100% rename from screenshots/default-after.jpg rename to screenshots/app-enhanced.jpg diff --git a/screenshots/tray.jpg b/screenshots/app-tray.jpg similarity index 100% rename from screenshots/tray.jpg rename to screenshots/app-tray.jpg diff --git a/screenshots/default-before.jpg b/screenshots/app-unenhanced.jpg similarity index 100% rename from screenshots/default-before.jpg rename to screenshots/app-unenhanced.jpg diff --git a/screenshots/board-before.jpg b/screenshots/board-before.jpg deleted file mode 100644 index 7568709..0000000 Binary files a/screenshots/board-before.jpg and /dev/null differ diff --git a/screenshots/board-default.jpg b/screenshots/board-default.jpg new file mode 100644 index 0000000..fa2ee75 Binary files /dev/null and b/screenshots/board-default.jpg differ diff --git a/screenshots/board-hideaddgroup.jpg b/screenshots/board-hideaddgroup.jpg new file mode 100644 index 0000000..545b8c1 Binary files /dev/null and b/screenshots/board-hideaddgroup.jpg differ diff --git a/screenshots/board-hideaddnew.jpg b/screenshots/board-hideaddnew.jpg new file mode 100644 index 0000000..c291e7f Binary files /dev/null and b/screenshots/board-hideaddnew.jpg differ diff --git a/screenshots/board-hidehidden.jpg b/screenshots/board-hidehidden.jpg new file mode 100644 index 0000000..8dc2bd4 Binary files /dev/null and b/screenshots/board-hidehidden.jpg differ diff --git a/screenshots/board-shrinkpadding.jpg b/screenshots/board-shrinkpadding.jpg new file mode 100644 index 0000000..f8c541e Binary files /dev/null and b/screenshots/board-shrinkpadding.jpg differ diff --git a/screenshots/thinnercover-before.jpg b/screenshots/cover-default.jpg similarity index 100% rename from screenshots/thinnercover-before.jpg rename to screenshots/cover-default.jpg diff --git a/screenshots/thinnercover-after.jpg b/screenshots/cover-thinner.jpg similarity index 100% rename from screenshots/thinnercover-after.jpg rename to screenshots/cover-thinner.jpg diff --git a/screenshots/customfonts-after.jpg b/screenshots/customfonts-after.jpg deleted file mode 100644 index 3c9c8f5..0000000 Binary files a/screenshots/customfonts-after.jpg and /dev/null differ diff --git a/screenshots/customfonts-before.jpg b/screenshots/customfonts-before.jpg deleted file mode 100644 index 626a397..0000000 Binary files a/screenshots/customfonts-before.jpg and /dev/null differ diff --git a/screenshots/hidediscussion-before.jpg b/screenshots/discussion-default.jpg similarity index 100% rename from screenshots/hidediscussion-before.jpg rename to screenshots/discussion-default.jpg diff --git a/screenshots/hidediscussion-after.jpg b/screenshots/discussion-hidden.jpg similarity index 100% rename from screenshots/hidediscussion-after.jpg rename to screenshots/discussion-hidden.jpg diff --git a/screenshots/fonts-custom.jpg b/screenshots/fonts-custom.jpg new file mode 100644 index 0000000..f66ce0a Binary files /dev/null and b/screenshots/fonts-custom.jpg differ diff --git a/screenshots/fontresizing.jpg b/screenshots/fonts-resized.jpg similarity index 100% rename from screenshots/fontresizing.jpg rename to screenshots/fonts-resized.jpg diff --git a/screenshots/widerpreview-before.jpg b/screenshots/preview-default.jpg similarity index 100% rename from screenshots/widerpreview-before.jpg rename to screenshots/preview-default.jpg diff --git a/screenshots/widerpreview-after.jpg b/screenshots/preview-wider.jpg similarity index 100% rename from screenshots/widerpreview-after.jpg rename to screenshots/preview-wider.jpg diff --git a/screenshots/table-centredheaders.jpg b/screenshots/table-centredheaders.jpg new file mode 100644 index 0000000..88a9135 Binary files /dev/null and b/screenshots/table-centredheaders.jpg differ diff --git a/screenshots/table-columnunder100px.jpg b/screenshots/table-columnunder100px.jpg new file mode 100644 index 0000000..2d26242 Binary files /dev/null and b/screenshots/table-columnunder100px.jpg differ diff --git a/screenshots/hideaddrow-after.jpg b/screenshots/table-hideaddrow.jpg similarity index 100% rename from screenshots/hideaddrow-after.jpg rename to screenshots/table-hideaddrow.jpg diff --git a/screenshots/hidecalculationsrow-after.jpg b/screenshots/table-hidecalculationsrow.jpg similarity index 100% rename from screenshots/hidecalculationsrow-after.jpg rename to screenshots/table-hidecalculationsrow.jpg diff --git a/screenshots/table-hidecolumnicons.jpg b/screenshots/table-hidecolumnicons.jpg new file mode 100644 index 0000000..f1583f2 Binary files /dev/null and b/screenshots/table-hidecolumnicons.jpg differ diff --git a/screenshots/table-shrinkpadding.jpg b/screenshots/table-shrinkpadding.jpg new file mode 100644 index 0000000..559defc Binary files /dev/null and b/screenshots/table-shrinkpadding.jpg differ diff --git a/screenshots/table-smallercolumnicons.jpg b/screenshots/table-smallercolumnicons.jpg new file mode 100644 index 0000000..147f9b8 Binary files /dev/null and b/screenshots/table-smallercolumnicons.jpg differ diff --git a/screenshots/theme.jpg b/screenshots/theme-dark+.jpg similarity index 100% rename from screenshots/theme.jpg rename to screenshots/theme-dark+.jpg