From a93ca8270cea5864a0b3fd5604ce5c449ccc19f7 Mon Sep 17 00:00:00 2001 From: Cory Zibell Date: Sun, 6 Sep 2020 18:11:23 -0400 Subject: [PATCH 1/2] Add module to hide help button --- README.md | 8 ++++++++ mods/hide-help/mod.js | 0 mods/hide-help/styles.css | 0 3 files changed, 8 insertions(+) create mode 100644 mods/hide-help/mod.js create mode 100644 mods/hide-help/styles.css diff --git a/README.md b/README.md index dc54d00..dd5b909 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,14 @@ these include: ![](https://user-images.githubusercontent.com/16874139/90522144-b6768080-e1ae-11ea-8150-527c1f70f0e7.png) +### hide help button + +**tags:** #extension + +**description:** hide the help button if you don't need it + +**author**: [coryzibell](https://github.com/coryzibell/) + ### neutral **tags:** #theme #dark diff --git a/mods/hide-help/mod.js b/mods/hide-help/mod.js new file mode 100644 index 0000000..e69de29 diff --git a/mods/hide-help/styles.css b/mods/hide-help/styles.css new file mode 100644 index 0000000..e69de29 From f304f78177c874241e4a98304e8ea53a5ba98578 Mon Sep 17 00:00:00 2001 From: Cory Zibell Date: Sun, 6 Sep 2020 18:17:41 -0400 Subject: [PATCH 2/2] Add hide-help module content --- mods/hide-help/mod.js | 16 ++++++++++++++++ mods/hide-help/styles.css | 3 +++ 2 files changed, 19 insertions(+) diff --git a/mods/hide-help/mod.js b/mods/hide-help/mod.js index e69de29..3d5a69e 100644 --- a/mods/hide-help/mod.js +++ b/mods/hide-help/mod.js @@ -0,0 +1,16 @@ +/* + * notion-enhancer + * (c) 2020 dragonwocky (https://dragonwocky.me/) + * under the MIT license + */ + +'use strict'; + +module.exports = { + id: 'd4ebe9f3-974a-4c01-a6a9-94bc4296851d', + tags: ['extension'], + name: 'hide help button', + desc: 'hide help button if you don\'t need it.', + version: '1.0.0', + author: 'coryzibell', +}; diff --git a/mods/hide-help/styles.css b/mods/hide-help/styles.css index e69de29..26defb3 100644 --- a/mods/hide-help/styles.css +++ b/mods/hide-help/styles.css @@ -0,0 +1,3 @@ +.notion-help-button { + display: none !important; +} \ No newline at end of file