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