mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Tooltips
* revert e092a69175 as it causes the tooltip to grow when moving the mouse.
* use CSS to solve
This commit is contained in:
@@ -1912,9 +1912,10 @@ $WH.Tooltip = {
|
||||
set: function(text, text2) {
|
||||
var _ = $WH.Tooltip.tooltip;
|
||||
|
||||
_.style.width = '550px';
|
||||
_.style.left = '-2323px';
|
||||
_.style.top = '-2323px';
|
||||
_.style.maxWidth = '350px';
|
||||
// _.style.width = '550px';
|
||||
_.style.left = '-2323px';
|
||||
_.style.top = '-2323px';
|
||||
|
||||
if (text.nodeName) {
|
||||
$WH.ee($WH.Tooltip.tooltipTd);
|
||||
@@ -1932,9 +1933,10 @@ $WH.Tooltip = {
|
||||
$WH.Tooltip.showSecondary = true;
|
||||
var _ = $WH.Tooltip.tooltip2;
|
||||
|
||||
_.style.width = '550px';
|
||||
_.style.left = '-2323px';
|
||||
_.style.top = '-2323px';
|
||||
_.style.maxWidth = '350px';
|
||||
// _.style.width = '550px';
|
||||
_.style.left = '-2323px';
|
||||
_.style.top = '-2323px';
|
||||
|
||||
if (text2.nodeName) {
|
||||
$WH.ee($WH.Tooltip.tooltipTd2);
|
||||
@@ -1967,14 +1969,15 @@ $WH.Tooltip = {
|
||||
|
||||
var
|
||||
tooltip = $WH.Tooltip.tooltip,
|
||||
tow = $WH.Tooltip.tooltipTable.offsetWidth + 1,
|
||||
toh = $WH.Tooltip.tooltipTable.offsetHeight + 1,
|
||||
tow = $WH.Tooltip.tooltipTable.offsetWidth,
|
||||
toh = $WH.Tooltip.tooltipTable.offsetHeight,
|
||||
tt2 = $WH.Tooltip.tooltip2,
|
||||
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth + 1 : 0,
|
||||
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight + 1 : 0,
|
||||
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth : 0,
|
||||
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight : 0,
|
||||
_;
|
||||
|
||||
tooltip.style.width = tow + 'px';
|
||||
tooltip.style.width = 'max-content';
|
||||
// tooltip.style.width = tow + 'px';
|
||||
tt2.style.width = tt2w + 'px';
|
||||
|
||||
var
|
||||
@@ -2004,11 +2007,11 @@ $WH.Tooltip = {
|
||||
bakLeft = left,
|
||||
bakTop = top,
|
||||
tooltip = $WH.Tooltip.tooltip,
|
||||
tow = $WH.Tooltip.tooltipTable.offsetWidth + 1,
|
||||
toh = $WH.Tooltip.tooltipTable.offsetHeight + 1,
|
||||
tow = $WH.Tooltip.tooltipTable.offsetWidth,
|
||||
toh = $WH.Tooltip.tooltipTable.offsetHeight,
|
||||
tt2 = $WH.Tooltip.tooltip2,
|
||||
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth + 1 : 0,
|
||||
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight + 1 : 0,
|
||||
tt2w = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetWidth : 0,
|
||||
tt2h = $WH.Tooltip.showSecondary ? $WH.Tooltip.tooltipTable2.offsetHeight : 0,
|
||||
winSize = $WH.g_getWindowSize(),
|
||||
scroll = $WH.g_getScroll(),
|
||||
bcw = winSize.w,
|
||||
|
||||
Reference in New Issue
Block a user