From 4cc002c7c2671334aad6f05d1e40b56acde79b29 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Fri, 2 Oct 2020 10:43:47 +1000 Subject: [PATCH] bugfix: toc blocks can have text colours --- CHANGELOG.md | 5 ++++- mods/core/css/theme.css | 1 - mods/core/menu.js | 1 + mods/material-ocean/mod.js | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 702cf1b..93b1947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ - [highlight/mark viewer](https://chrome.google.com/webstore/detail/notion%2B-mark-manager/hipgmnlpnimedfepbfbfiaobohhffcfc) - [advanced math editor](https://github.com/Manueloccorso/NotionMathEditor_BrowserExtension) -### v0.?.? (wip) +### v0.10.0 (wip) + +a flexibility update. - new: mods can be reordered in the menu to control what order styling/scripts are added/executed in. higher up on the list = higher priority of application = loaded last in order to override others. @@ -19,6 +21,7 @@ - bugfix: properly detect/respond to `EACCES` errors. - bugfix: night shift checks every interaction, will respond to system changes without any manual changes. +- bugfix: toc blocks can have text colours. - extension: "material ocean" = an oceanic colour palette. ### v0.9.1 (2020-09-26) diff --git a/mods/core/css/theme.css b/mods/core/css/theme.css index 4cfc448..0608b2f 100644 --- a/mods/core/css/theme.css +++ b/mods/core/css/theme.css @@ -424,7 +424,6 @@ /** content colours **/ .notion-body, -.notion-page-content [style*='color: inherit;'], .notion-frame .notion-page-block, .notion-body.dark [style*=' color: rgba(255, 255, 255, 0.9)'], .notion-body.dark [style^='color: rgba(255, 255, 255, 0.9)'], diff --git a/mods/core/menu.js b/mods/core/menu.js index 533f009..d5e72b4 100644 --- a/mods/core/menu.js +++ b/mods/core/menu.js @@ -575,6 +575,7 @@ window['__start'] = async () => { } } draggable.render(); + modified(); }); document.addEventListener('mouseover', draggable.mouseover); draggable.render(); diff --git a/mods/material-ocean/mod.js b/mods/material-ocean/mod.js index 19b6752..dd3eab5 100644 --- a/mods/material-ocean/mod.js +++ b/mods/material-ocean/mod.js @@ -11,6 +11,6 @@ module.exports = { tags: ['theme', 'dark'], name: 'material ocean', desc: 'an oceanic colour palette.', - version: '0.1', + version: '0.1.0', author: 'blacksuan19', };