| 1481 | ].join('\n') |
| 1482 | |
| 1483 | function injectListUI() { |
| 1484 | document.head.innerHTML = '' |
| 1485 | document.body.innerHTML = '' |
| 1486 | document.body.style.cssText = 'margin:0;padding:0;overflow:hidden;' |
| 1487 | var style = document.createElement('style') |
| 1488 | style.textContent = LIST_CSS |
| 1489 | document.head.appendChild(style) |
| 1490 | var container = document.createElement('div') |
| 1491 | container.className = 'ztools-list' |
| 1492 | document.body.appendChild(container) |
| 1493 | listState.container = container |
| 1494 | } |
| 1495 | |
| 1496 | function syncMouseHoverState() { |
| 1497 | if (!listState.container) return |