mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
make tooltip text alignment match relative pos
This commit is contained in:
parent
e4187700b2
commit
4fcb467351
@ -20,7 +20,6 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999999999999999999;
|
z-index: 999999999999999999;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
#enhancer--tooltip p {
|
#enhancer--tooltip p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -44,6 +44,7 @@ const countLines = ($el) =>
|
|||||||
x += window.innerWidth - x > x ? pad : -pad;
|
x += window.innerWidth - x > x ? pad : -pad;
|
||||||
_$tooltip.style.left = `${x}px`;
|
_$tooltip.style.left = `${x}px`;
|
||||||
}
|
}
|
||||||
|
_$tooltip.style.textAlign = 'center';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (['left', 'right'].includes(offsetDirection)) {
|
if (['left', 'right'].includes(offsetDirection)) {
|
||||||
@ -52,6 +53,7 @@ const countLines = ($el) =>
|
|||||||
if (offsetDirection === 'right') x += rect.width + pad;
|
if (offsetDirection === 'right') x += rect.width + pad;
|
||||||
_$tooltip.style.left = `${x}px`;
|
_$tooltip.style.left = `${x}px`;
|
||||||
_$tooltip.style.top = `${y}px`;
|
_$tooltip.style.top = `${y}px`;
|
||||||
|
_$tooltip.style.textAlign = 'auto';
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user