new theme screenshots + bugfixes

This commit is contained in:
dragonwocky 2020-09-19 23:05:43 +10:00
parent cc4e2fb807
commit d3b444827a
5 changed files with 12 additions and 4 deletions

View File

@ -13,7 +13,7 @@ module.exports = {
tags: ['extension'],
name: 'calendar scroll',
desc:
'add a button to scroll down to the current week in fullpage/infinite-scroll calendars',
'add a button to scroll down to the current week in fullpage/infinite-scroll calendars.',
version: '0.1.0',
author: 'dragonwocky',
hacks: {

View File

@ -15,7 +15,7 @@ module.exports = (store) => {
buttons = {
element: helpers.createElement('<div class="window-buttons-area"></div>'),
insert: [
...((store('mods')['72886371-dada-49a7-9afc-9f275ecf29d3'] || {})
...((store('mods', {})['72886371-dada-49a7-9afc-9f275ecf29d3'] || {})
.enabled
? ['alwaysontop']
: []),

View File

@ -39,7 +39,8 @@
[style*='pointer-events:'][style*='max-width: 100%; width: 900px'] {
width: var(--theme--page_normal-width) !important;
}
.notion-page-content [style*='max-width: 696px'] {
.notion-page-content [data-block-id][style*='max-width'] {
max-width: 100% !important;
}
.notion-frame
@ -51,12 +52,18 @@
[style*='pointer-events:'][style*='max-width: 100%; width: 100%'] {
width: var(--theme--page_full-width) !important;
}
.notion-text-block [style*='padding-left: 1.5em'],
.notion-frame .notion-scroller [style*='padding-left: 136.5px;'] {
padding-left: 0 !important;
}
.notion-frame .notion-scroller [style*='padding-right: 136.5px;'] {
padding-right: 0 !important;
}
.notion-collection_view-block > :first-child,
.notion-collection_view-block .notion-scroller > :first-child {
padding-left: 0 !important;
padding-right: 0 !important;
}
.notion-peek-renderer
.notion-scroller.vertical

View File

@ -48,7 +48,7 @@ module.exports = {
function autoAlignPageContent() {
document
.querySelectorAll(
'.notion-page-content > div[data-block-id]:not([dir])'
'.notion-page-content > div[data-block-id]:not([dir]), [placeholder="Untitled"]:not([dir])'
)
.forEach((block) => block.setAttribute('dir', 'auto'));
document

View File

@ -15,6 +15,7 @@
}
#word-counter-details > div > p {
margin: 0.5em;
cursor: pointer;
font-size: var(--theme--font_label-size);
color: var(--theme--text);
border-radius: 3px;