()
| 379 | // theme the close “×” for visibility + hover rules that match your site: |
| 380 | const closeBtn = overlay.querySelector("#closeFileModal"); |
| 381 | function paintCloseBase() { |
| 382 | closeBtn.style.backgroundColor = 'transparent'; |
| 383 | closeBtn.style.color = '#e11d48'; // base red X |
| 384 | closeBtn.style.boxShadow = 'none'; |
| 385 | } |
| 386 | function onCloseHoverEnter() { |
| 387 | const dark = document.documentElement.classList.contains('dark-mode'); |
| 388 | closeBtn.style.backgroundColor = '#ef4444'; // red fill |
no outgoing calls
no test coverage detected