mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-10 23:39:03 +00:00
fix theming primary-colour text + right-to-left text in columns
This commit is contained in:
parent
b1714dce54
commit
84ef0d9440
@ -39,6 +39,8 @@ a flexibility update.
|
|||||||
`box-shadow`, `box-shadow_strong`, `select_input`, and `ui-border`
|
`box-shadow`, `box-shadow_strong`, `select_input`, and `ui-border`
|
||||||
- bugfix: font sizing applied to overlays/previews.
|
- bugfix: font sizing applied to overlays/previews.
|
||||||
- bugfix: removed typo in variable name for brown text.
|
- bugfix: removed typo in variable name for brown text.
|
||||||
|
- bugfix: primary-colour text (mainly in "add a \_" popups) is now properly themed.
|
||||||
|
- bugfix: right-to-left extension applies to text in columns.
|
||||||
- tweak: sticky table/list rows.
|
- tweak: sticky table/list rows.
|
||||||
- theme: "material ocean" = an oceanic colour palette.
|
- theme: "material ocean" = an oceanic colour palette.
|
||||||
- theme: "dracula" = a theme based on the popular dracula color palette
|
- theme: "dracula" = a theme based on the popular dracula color palette
|
||||||
|
@ -375,8 +375,9 @@ the font you would like to use, or leave it blank to not change anything.
|
|||||||
a couple months after I ([@dragonwocky](https://github.com/dragonwocky/)) picked the project up, at first extending
|
a couple months after I ([@dragonwocky](https://github.com/dragonwocky/)) picked the project up, at first extending
|
||||||
upon the original base and later moving to the javascript module system.
|
upon the original base and later moving to the javascript module system.
|
||||||
|
|
||||||
since then, various community members have helped out heaps - some listed as
|
the enhancer wouldn't be anything near to what it is now though without
|
||||||
|
interested community members testing, coding and ideating features - some are listed as
|
||||||
[contributors](https://github.com/dragonwocky/notion-enhancer/graphs/contributors) here on github,
|
[contributors](https://github.com/dragonwocky/notion-enhancer/graphs/contributors) here on github,
|
||||||
but many helping with code, feedback and testing on discord and in emails.
|
but many more have been helping out on discord and in emails.
|
||||||
|
|
||||||
individual modules have their original authors attributed.
|
individual modules have their original authors attributed.
|
||||||
|
@ -403,7 +403,8 @@
|
|||||||
background: var(--theme--selected) !important;
|
background: var(--theme--selected) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
[style*=' color: rgb(46, 170, 220)'] {
|
[style*=' color: rgb(46, 170, 220)'],
|
||||||
|
[style^='color: rgb(46, 170, 220)'] {
|
||||||
color: var(--theme--primary) !important;
|
color: var(--theme--primary) !important;
|
||||||
}
|
}
|
||||||
[style*='fill: rgb(46, 170, 220)'] {
|
[style*='fill: rgb(46, 170, 220)'] {
|
||||||
|
@ -12,7 +12,7 @@ module.exports = {
|
|||||||
tags: ['extension'],
|
tags: ['extension'],
|
||||||
name: 'right-to-left',
|
name: 'right-to-left',
|
||||||
desc: 'enables auto rtl/ltr text direction detection.',
|
desc: 'enables auto rtl/ltr text direction detection.',
|
||||||
version: '1.4.0',
|
version: '1.4.1',
|
||||||
author: 'obahareth',
|
author: 'obahareth',
|
||||||
hacks: {
|
hacks: {
|
||||||
'renderer/preload.js'(store, __exports) {
|
'renderer/preload.js'(store, __exports) {
|
||||||
@ -48,7 +48,9 @@ module.exports = {
|
|||||||
function autoAlignPageContent() {
|
function autoAlignPageContent() {
|
||||||
document
|
document
|
||||||
.querySelectorAll(
|
.querySelectorAll(
|
||||||
'.notion-page-content > div[data-block-id]:not([dir]), [placeholder="Untitled"]:not([dir])'
|
`.notion-page-content > div[data-block-id]:not([dir]):not(.notion-column_list-block),
|
||||||
|
[placeholder="Untitled"]:not([dir]),
|
||||||
|
.notion-column-block > div[data-block-id]:not([dir])`
|
||||||
)
|
)
|
||||||
.forEach((block) => block.setAttribute('dir', 'auto'));
|
.forEach((block) => block.setAttribute('dir', 'auto'));
|
||||||
document
|
document
|
||||||
|
Loading…
Reference in New Issue
Block a user