diff --git a/repo/core/css/theme.css b/repo/core/css/theme.css index 3ea2b56..dc1bb30 100644 --- a/repo/core/css/theme.css +++ b/repo/core/css/theme.css @@ -403,7 +403,8 @@ 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; } [style*='fill: rgb(46, 170, 220)'] { diff --git a/repo/right-to-left/mod.js b/repo/right-to-left/mod.js index 270669a..3f1fb80 100644 --- a/repo/right-to-left/mod.js +++ b/repo/right-to-left/mod.js @@ -12,7 +12,7 @@ module.exports = { tags: ['extension'], name: 'right-to-left', desc: 'enables auto rtl/ltr text direction detection.', - version: '1.4.0', + version: '1.4.1', author: 'obahareth', hacks: { 'renderer/preload.js'(store, __exports) { @@ -48,7 +48,9 @@ module.exports = { function autoAlignPageContent() { document .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')); document