New tweak: Scroll Database Toolbars (#198)

* Update mod.js

Added an option for scroll database toolbars

* Update styles.css

Added styling for scroll database toolbars
This commit is contained in:
Ryo Hilmawan 2020-11-03 18:39:54 +07:00 committed by GitHub
parent b02ed3e36a
commit 590d4d9595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -66,6 +66,12 @@ module.exports = {
type: 'toggle', type: 'toggle',
value: false, value: false,
}, },
{
key: 'scroll_db_toolbars',
label: 'scroll database toolbars',
type: 'toggle',
value: false,
},
], ],
hacks: { hacks: {
'renderer/preload.js': (store, __exports) => { 'renderer/preload.js': (store, __exports) => {
@ -77,6 +83,7 @@ module.exports = {
'thicker_bold', 'thicker_bold',
'spaced_lines', 'spaced_lines',
'hide_help', 'hide_help',
'scroll_db_toolbars',
] ]
.filter((tweak) => store()[tweak]) .filter((tweak) => store()[tweak])
.map((tweak) => `[${tweak}]`) .map((tweak) => `[${tweak}]`)

View File

@ -46,3 +46,13 @@
--theme_light--text-block_line-height: 1.65; --theme_light--text-block_line-height: 1.65;
--theme_light--text-block_margin-top: 0.75em; --theme_light--text-block_margin-top: 0.75em;
} }
[data-tweaks*='[scroll_db_toolbars]'] .notion-frame > .notion-scroller > [style*="overflow: visible;"],
[data-tweaks*='[scroll_db_toolbars]'] .notion-page-content .notion-collection_view-block > :first-child {
overflow-x: auto !important;
}
[data-tweaks*='[scroll_db_toolbars]'] .notion-frame > .notion-scroller > [style*="overflow: visible;"]::-webkit-scrollbar,
[data-tweaks*='[scroll_db_toolbars]'] .notion-page-content .notion-collection_view-block > :first-child::-webkit-scrollbar {
display: none;
}