mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
detect tab icons when sidebar closed, weekly view support expanded cal rows
This commit is contained in:
parent
3753126c26
commit
2724f3d859
@ -27,7 +27,7 @@ export default async function ({ web, electron }, db) {
|
||||
}
|
||||
|
||||
const breadcrumbSelector =
|
||||
'.notion-topbar > div > :nth-child(2) > .notion-focusable:last-child',
|
||||
'.notion-topbar > div > [class="notranslate"] > .notion-focusable:last-child',
|
||||
imgIconSelector = `${breadcrumbSelector} .notion-record-icon img:not(.notion-emoji)`,
|
||||
emojiIconSelector = `${breadcrumbSelector} .notion-record-icon img.notion-emoji`,
|
||||
nativeIconSelector = `${breadcrumbSelector} .notion-record-icon [role="image"]`,
|
||||
|
@ -11,7 +11,7 @@ export default async function ({ web }, db) {
|
||||
calendarSelector = '.notion-calendar-view',
|
||||
viewSelector = '.notion-collection-view-select:not([data-weekly-view])',
|
||||
todaySelector = '.notion-calendar-view-day[style*="background"]',
|
||||
weekSelector = '[style="position: relative; display: flex; height: 124px;"]',
|
||||
weekSelector = '[style^="position: relative; display: flex; height: "]',
|
||||
toolbarBtnSelector =
|
||||
'.notion-calendar-view > :first-child > :first-child > :first-child > :nth-last-child(2)';
|
||||
|
||||
@ -30,11 +30,14 @@ export default async function ({ web }, db) {
|
||||
}
|
||||
} else {
|
||||
const $weekContainer = $calendar.querySelector(weekSelector).parentElement;
|
||||
$weekContainer.style.maxHeight = '124px';
|
||||
for (const $week of $calendar.querySelectorAll(weekSelector)) {
|
||||
if (!$week.querySelector(todaySelector)) {
|
||||
if ($week.querySelector(todaySelector)) {
|
||||
$weekContainer.style.maxHeight = $week.style.height;
|
||||
break;
|
||||
} else {
|
||||
$week.style.height = '0';
|
||||
} else break;
|
||||
$week.style.opacity = '0';
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user