mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
Fix visual issues and modal detection (#279)
This commit is contained in:
parent
14e6712037
commit
8bcd6eb79a
@ -177,7 +177,7 @@ module.exports = {
|
|||||||
if (iconData.enhancerIcons) {
|
if (iconData.enhancerIcons) {
|
||||||
// Load sprite sheet
|
// Load sprite sheet
|
||||||
icon.innerHTML =
|
icon.innerHTML =
|
||||||
`<div style="width: 32px; height: 32px; background: url(${iconsUrl}${iconData.source}/sprite.png) 0 -${i * 32}px no-repeat; background-size: cover;"></div>`;
|
`<div style="width: 32px; height: 32px; background: url(${iconsUrl}${iconData.source}/sprite.png) 0 -${i * 32}px no-repeat; background-size: 32px;"></div>`;
|
||||||
} else {
|
} else {
|
||||||
icon.innerHTML = `<img src="${iconUrl}" />`;
|
icon.innerHTML = `<img src="${iconUrl}" />`;
|
||||||
// Make sure icons load
|
// Make sure icons load
|
||||||
@ -315,14 +315,18 @@ module.exports = {
|
|||||||
|
|
||||||
const observer = new MutationObserver((list, observer) => {
|
const observer = new MutationObserver((list, observer) => {
|
||||||
for ( let { addedNodes } of list) {
|
for ( let { addedNodes } of list) {
|
||||||
if (addedNodes[0] &&
|
if (
|
||||||
addedNodes[0].style &&
|
addedNodes[0] &&
|
||||||
(addedNodes[0].style.cssText === 'pointer-events: auto; position: relative; z-index: 0;' ||
|
addedNodes[0].style &&
|
||||||
addedNodes[0].style.cssText === 'pointer-events: auto; position: relative; z-index: 1;' ||
|
document.querySelector('.notion-media-menu')
|
||||||
addedNodes[0].style.cssText === 'pointer-events: auto; position: relative; z-index: 2;') &&
|
) {
|
||||||
document.querySelector('.notion-media-menu')
|
for (let i = 0; i <= 3; i++) {
|
||||||
)
|
if (addedNodes[0].style.cssText === `pointer-events: auto; position: relative; z-index: ${i};`) {
|
||||||
addIconsTab();
|
addIconsTab();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
observer.observe(overlay, {
|
observer.observe(overlay, {
|
||||||
|
Loading…
Reference in New Issue
Block a user