mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
fix #76, height of weekly calendar view
This commit is contained in:
parent
fed816b8da
commit
648c1f8b99
@ -17,6 +17,7 @@ a feature and cleanup update.
|
|||||||
effect until the release after this one).
|
effect until the release after this one).
|
||||||
- bugfix: blue select tags are no longer purple.
|
- bugfix: blue select tags are no longer purple.
|
||||||
- bugfix: page titles now respond to small-text mode.
|
- bugfix: page titles now respond to small-text mode.
|
||||||
|
- bugfix: weekly calendar view height is now sized correctly according to its contents.
|
||||||
- themes: "littlepig" (light + dark) = monospaced themes using emojis and colourful text.
|
- themes: "littlepig" (light + dark) = monospaced themes using emojis and colourful text.
|
||||||
- extension: "font chooser" = customize fonts. for each option, type in the name of the font you would like to use,
|
- extension: "font chooser" = customize fonts. for each option, type in the name of the font you would like to use,
|
||||||
or leave it blank to not change anything.
|
or leave it blank to not change anything.
|
||||||
|
@ -12,7 +12,7 @@ module.exports = {
|
|||||||
tags: ['extension'],
|
tags: ['extension'],
|
||||||
name: 'weekly view',
|
name: 'weekly view',
|
||||||
desc: 'calendar views named "weekly" will show only the 7 days of this week.',
|
desc: 'calendar views named "weekly" will show only the 7 days of this week.',
|
||||||
version: '0.5.0',
|
version: '0.5.1',
|
||||||
author: 'adihd',
|
author: 'adihd',
|
||||||
hacks: {
|
hacks: {
|
||||||
'renderer/preload.js'(store, __exports) {
|
'renderer/preload.js'(store, __exports) {
|
||||||
@ -36,15 +36,17 @@ module.exports = {
|
|||||||
if (!collection_view || collection_view.innerText != 'weekly')
|
if (!collection_view || collection_view.innerText != 'weekly')
|
||||||
return;
|
return;
|
||||||
const days = collection_view.parentElement.parentElement.parentElement.parentElement.getElementsByClassName(
|
const days = collection_view.parentElement.parentElement.parentElement.parentElement.getElementsByClassName(
|
||||||
'notion-calendar-view-day'
|
'notion-calendar-view-day'
|
||||||
);
|
),
|
||||||
|
today = [...days].find((day) => day.style.background),
|
||||||
|
height = today
|
||||||
|
? getComputedStyle(
|
||||||
|
today.parentElement.parentElement
|
||||||
|
).getPropertyValue('height')
|
||||||
|
: 0;
|
||||||
for (let day of days)
|
for (let day of days)
|
||||||
day.parentElement.parentElement.style.height = 0;
|
day.parentElement.parentElement.style.height = 0;
|
||||||
if (days.length) {
|
today.parentElement.parentElement.style.height = height;
|
||||||
const today = [...days].find((day) => day.style.background);
|
|
||||||
if (today)
|
|
||||||
today.parentElement.parentElement.style.height = '124px';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user