bugfix: toc blocks can have text colours

This commit is contained in:
dragonwocky 2020-10-02 10:43:47 +10:00
parent 80fca9d187
commit 4cc002c7c2
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
4 changed files with 6 additions and 3 deletions

View File

@ -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)

View File

@ -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)'],

View File

@ -575,6 +575,7 @@ window['__start'] = async () => {
}
}
draggable.render();
modified();
});
document.addEventListener('mouseover', draggable.mouseover);
draggable.render();

View File

@ -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',
};