mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
bugfix: toc blocks can have text colours
This commit is contained in:
parent
80fca9d187
commit
4cc002c7c2
@ -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)
|
||||
|
@ -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)'],
|
||||
|
@ -575,6 +575,7 @@ window['__start'] = async () => {
|
||||
}
|
||||
}
|
||||
draggable.render();
|
||||
modified();
|
||||
});
|
||||
document.addEventListener('mouseover', draggable.mouseover);
|
||||
draggable.render();
|
||||
|
@ -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',
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user